Re: IIS ASP.net Web Services Disconnected
- From: "John Saunders" <john.saunders at trizetto.com>
- Date: Sun, 17 Sep 2006 10:26:46 -0400
"Egghead" <robertlo_NOSPAM_@xxxxxxx> wrote in message
news:O6zCtFi2GHA.2176@xxxxxxxxxxxxxxxxxxxxxxx
Hi,
Nothing to do with the filename, the IIS drops the connection after around
5 mins. The web serivces sends the file to no where after the connection
has been drop (usually after 5mins). The finny is that it does not flow
any expcation at both side. It acts as everything is OK.
I change all the time-out prop. at the server-side already, and they are
all at least 60 mins.
FYI, IIS has nothing to do with this. It's all a matter of ASP.NET.
In your client, before you make the request, try setting the Timeout
property. Assuming that your client proxy class is called FileService:
FileService service = new FileService();
service.Timeout = 1 * 60 * 60 * 1000; // One hour, in milliseconds
string fileFromServer = service.GetFile();
I hope that helps, as I haven't been following this thread recently.
John
.
- Follow-Ups:
- Re: IIS ASP.net Web Services Disconnected
- From: Egghead
- Re: IIS ASP.net Web Services Disconnected
- References:
- IIS ASP.net Web Services Disconnected
- From: EggHead
- Re: IIS ASP.net Web Services Disconnected
- From: Gaurav Vaish \(www.EduJiniOnline.com\)
- Re: IIS ASP.net Web Services Disconnected
- From: Egghead
- IIS ASP.net Web Services Disconnected
- Prev by Date: Re: IIS ASP.net Web Services Disconnected
- Next by Date: Re: IIS ASP.net Web Services Disconnected
- Previous by thread: Re: IIS ASP.net Web Services Disconnected
- Next by thread: Re: IIS ASP.net Web Services Disconnected
- Index(es):
Relevant Pages
|