locked
Need help to solve this error "The remote server returned an error: (500) Internal Server Error " RRS feed

  • Question

  • Actually i am writing code in a button click event to invoke a webservice dynamically ,by using Httpwebrequest and webresponse.
    At this place its giving an error.

    WebResponse response = req.GetResponse();
    and the error is "The remote server returned an error: (500) Internal Server Error "
    Can you help me in solving this problem?

    Thursday, June 26, 2008 10:23 PM

Answers

  • I would say the most likely cause is that you're not sending the correct SOAP message

    have you tried calling your webservice with a visual studio generated proxy - this would be a quick way of confirming that the issue is with your call.
    Friday, June 27, 2008 10:27 AM