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 application). I try to catch the error but as a 404 is returned my application instead continues to hang and I end up catching the following error.
[System.Net.WebException] = {"The underlying connection was closed: An unexpected error occurred on a receive."}
Why would I catch a different error over 2 seconds after the web service responds with a 404?
try
{
newPassword = Customer.ResetPassword(_transaction.Centre.Id, newPassword);
}
catch(WebException ex)
{
HttpWebResponse response = (HttpWebResponse)ex.Response;
if ((response != null) && (response.StatusCode == HttpStatusCode.NotFound))
{
//then the email address doesnt exist
ErrorPage(104);
}
else
{
ErrorPage();
}
}
catch (Exception ex)
{
ErrorPage();
}
and that calls this:
Request currentRequest = new Request(uri,
Communication.Request.HttpRequestType.POST,[hidden][hidden]);
Response response = currentRequest.Send(Serializer.Serialize<ResetPassword (resetPassword));
return Serializer.Deserialize<ResetPassword>(response.BodyData);
Please ignore the [hidden] tags. Ive had to hide that from public view. However, I hope that helps.
Thank you all for your help!
Customer.ResetPasswordcalls the 2nd block of code. Which calls a URI to perform a password reset. Is all of this client code or the web-service that's offending? What initializes this code? Where's the entry point? – Aren Aug 4 '11 at 16:41