Setting Keep Alvive to false using .net remoting
I'm using .net remoting, do http channel requests to a IIS web site.
On client config file have this http channel configuration:
<
channels><
channelref="http"useDefaultCredentials="true"port="0"><
clientProviders><
formatterref="binary" /><
providertype="CompressionSink.CompressionClientSinkProvider, CompressionSink" /></
clientProviders></
channel>And call Activator.GetObject() class, to get a proxy object:
"securityService = (ILookupService)Activator.GetObject(typeof(ILookupService),
remoteServiceUrl +"/LookupService.rem"); "
On server side, I have this configuration on my web.config:
<
system.runtime.remoting><
application><
service><
wellknownmode="SingleCall"objectUri="LookupService.rem"type="Nsietv.BusinessFacade.LookupService, Nsietv.BusinessFacade"/></
service><
channels><
channelref="http"><
serverProviders><
providertype="CompressionSink.CompressionServerSinkProvider, CompressionSink"/><
formatterref="binary"typeFilterLevel="Full"/></
serverProviders></
channel></
channels>All works ok, and now I want to set keep alive of my http web requests to false. How can I do it?
Thanks, Rui

