vote up 1 vote down star

I have two ASP.NET projects in my solution, and run on different localhost ports when I start debugging. I have a generic handler in site A, which is called by site B:

String url = "http://localhost:1234/UrlOnSiteA.ashx";
WebClient client = New WebClient();
client.Credentials = CredentialCache.DefaultNetworkCredentials;
client.OpenRead(url);

The OpenRead call throws an exception with a 500 error, and I don't know why. The error message is:

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

Other info:

  • A breakpoint on the very first line of the handler code isn't hit.
  • The handler runs properly (and hits the breakpoint) when its URL is used in a browser.
  • Visual Studio 2008 Professional, running .NET 2.0 sites.

I suspect it's a configuration issue. Any ideas?

flag

1  
Any luck in figuring this one out? Were any of the diagnostic steps in my answer useful? – Justin Grant Sep 22 at 16:53
Thanks for answering Justin. Good suggestions, but having got a tumbleweed badge for the question I moved on, and don't actually need to fix it any more. I'll accept your answer for completeness. – harriyott Sep 23 at 22:19

1 Answer

vote up 1 vote down check

I'd diagnose this first by figuring out what's causing the exception. Look at the Response property of the WebException, and read the HTML returned. Any clues? (You may need to disable custom errors in your web.config to see the actual error response.)

Another approach to get the same response info would be to use Fiddler, and set the proxy of your WebClient call to the Fiddler proxy address. Then you can use fiddler to see the response HTML.

A slightly different approach would be to change the Exceptions settings in Visual Studio to break into the debugger whenever a WebException is thrown. You can do this from the Debug...Exceptions... dialog box.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.