Tagged Questions

0
votes
1answer
151 views

WebException: The underlying connection was closed

I am currently calling a webservice from an ASP.net page. I am trying to call a REST based web service to request a certain action and a 404 is returned (which represents a specific error for my ...
0
votes
1answer
278 views

The operation has timed out while reading xml file

I am getting the following error while I am reading an remote xml file to convert currency on HttpWebRequest.GetResponse() section. the method that I used ...
0
votes
1answer
166 views

Periodic timeouts when using HttpWebRequest

I have some code that send a simple xml web request. It is called from a windows service. Sometimes the service starts throwing exceptions (System.Net.WebException: The operation has timed out) and a ...
0
votes
1answer
325 views

Windows Service restarts on Exception

I'm building a windows service that grabs information from a website periodically How can I start looking again when a exception is caught? for example when internet goes down and up later. Code: ...