Tagged Questions

1
vote
2answers
270 views

Asp.net HttpWebResponse - how can I not depend on WebException for flow control?

I need to check whether the request will return a 500 Server Internal Error or not (so getting the error is expected). I'm doing this: HttpWebRequest request = WebRequest.Create(url) as ...
0
votes
1answer
38 views

System.Net.WebException on Console Application

I wrote a simple console application to check and see if my site it up by check a link that always work. The problem was it went down the other day and it didnt notify me, it had the error: ...
0
votes
1answer
146 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
439 views

Why does HttpWebRequest fail the first time and then works OK?

I am truing to integrate fusemail in asp.net 2.0. I am using HttpWebRequest for requesting the API pages. It has recently come to my notice that HttpWebRequest fails the first time and then continues ...
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: ...