Every time the object is instanced. I have a lot of web methods, more than
100. After about 30 minutes of leaving application intact no one works. The
interesting think is that, this exception appears not at the all computers.
At some computer appear at others not. I checked the IIS, all the options
are the same.
> Ruslan,
>
[quoted text clipped - 17 lines]
> >
> > Ruslan
Nick Malik - 27 Sep 2004 15:35 GMT
Is it possible that the particular client has different proxy settings than
other clients? If so, the proxy server may be dropping the connection after
the time expires. I haven't run into this exactly, but my guess is that you
can reset the proxy connection by creating a new WebProxy object and use the
following code:
WebProxy proxyObject = new WebProxy("http://proxyserver:80/",true);
GlobalProxySelection.Select = proxyObject;
This should set the new proxy object to be used for all HTTPRequest calls.
I do not know for certain if this will work, so post back if it does... it
would be interesting to know.
Hope this helps,
--- Nick
> Every time the object is instanced. I have a lot of web methods, more than
> 100. After about 30 minutes of leaving application intact no one works. The
[quoted text clipped - 25 lines]
> > >
> > > Ruslan