Remoting from ASP.Net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm making a remoting call on (pretty much) every postback.
The remote object is single call, tcp/binary, hosted by a Windows service on
another machine.
Do I need to (or even can I) take steps to make this efficient. Are the
sockets managed intelligently by the runtime?

Thanks,
Brad
 
Generally yes. I believe that the TCP channel will open as many connections
as there are threads available.
 
Back
Top