D
Dicky Cheng
Hi,
I am using .net remoting technology. I set up a .net remoting client and
server in IIS. When the client calls the server, the server will run a long
duration method (30-60seconds). I have a test on it that if the network
broken at the time the client have already send the remoting request and
waiting for the server, the client side will wait infinitely by default,
even if i already set the executionTimeout to 90seconds in machine.config
and iis connection timeout. The performance counter shows that the request
current in client side will hold, and the thread will hold. Using netstat to
check the client connection that the connection is established to the server
side.
If client and server in a very unstable network environment and request goes
high, this problem will make the IIS (asp.net) reach the connection limit. I
use a workaround method to set the timeout by:
System.Runtime.Remoting.Channels.ChannelServices.GetChannelSinkProperties(se
rviceObjectInstance)["timeout"] = 30000; //30s timeout
My questions:
1. In my real case, the probability of the network connection broken is very
rare. So, I want to know any possible error will make the same situation in
client side?
2. Any method to set the timeout for all remoting object instance rather
than calling the above method everytime?
Many thanks,
Dicky Cheng
I am using .net remoting technology. I set up a .net remoting client and
server in IIS. When the client calls the server, the server will run a long
duration method (30-60seconds). I have a test on it that if the network
broken at the time the client have already send the remoting request and
waiting for the server, the client side will wait infinitely by default,
even if i already set the executionTimeout to 90seconds in machine.config
and iis connection timeout. The performance counter shows that the request
current in client side will hold, and the thread will hold. Using netstat to
check the client connection that the connection is established to the server
side.
If client and server in a very unstable network environment and request goes
high, this problem will make the IIS (asp.net) reach the connection limit. I
use a workaround method to set the timeout by:
System.Runtime.Remoting.Channels.ChannelServices.GetChannelSinkProperties(se
rviceObjectInstance)["timeout"] = 30000; //30s timeout
My questions:
1. In my real case, the probability of the network connection broken is very
rare. So, I want to know any possible error will make the same situation in
client side?
2. Any method to set the timeout for all remoting object instance rather
than calling the above method everytime?
Many thanks,
Dicky Cheng