ASP.NET: (500)Internet Server Error

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();
 
N

Nicholas Paldino [.NET/C# MVP]

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top