ASP.NET: (500)Internet Server Error

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

The remote server returned an error: (500) Internal Server Error.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information about
the error and where it originated in the code.

Exception Details: System.Net.WebException: The remote server returned an
error: (500) Internal Server Error.

Source Error:


Line 336:
Line 337:
Line 338: HttpWebResponse objResponse =
(HttpWebResponse)objRequest.GetResponse();
 
Raj,

It appears that you are getting an error while trying to connect to
another web server. I would try running that code outside of ASP.NET (the
part that uses the HttpWebRequest/Response) to determine why there was an
error on the server.

Hope this helps.
 
Back
Top