开发者

Efficient multiple services exposed over .NET remoting using more channels or end points?

I am using remoting over TCP for a prototype distributed server application where I want to have varying multiple services exposed from each remoting server process.

In some cases I want the services running from the same process but I don't want whatever is using the service to care about that.

I am wondering is it more efficient to have multiple services in the same process going over the same remoting channel distinguished by endpoint URI/URL or should I be creating new channels on different ports for each service in the same process?

Using up ports isn't so much of a problem as the number of services will be low and the network and machine configuration is completely controlled.

Also its not clear to me if remoting sends the URI string for every single message or just at connection time, and whether if the remoting fram开发者_如何转开发ework is intelligent enough to reduce work if calls are made on the same machine and even the same process?

Thanks in advance.


You can also host in separate processes over the same port, using the Net.Tcp Port Sharing Service.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜