将SOAP请求发送到WebService错误500

时间:2012-04-20 05:05:40

标签: c# asp.net web-services soap

将SOAP请求发送到Web服务时出现此异常“远程服务器返回错误:(500)内部服务器错误。”。 WebService有2个参数(int a,int b)。如果我删除这两个参数,那么我不会得到任何例外。

这是我第一次使用SOAP + WS。我做错了什么? 谢谢您抽出宝贵时间。

编辑: 我的大学刚刚在我的代码中发现了错误。我发送了一个无效的标题。

以下是缺少的标题部分:

request.Headers.Add("SOAPAction", "http://tempuri.org/Add");

另外,我使用的网址不正确。 错误:

http://localhost:62830/Service1.asmx/Add

正确:

http://localhost:62830/Service1.asmx

这是我的代码 将SOAP发送到WebService的客户端

private void button2_Click(object sender, EventArgs e)
    {

        var url = UrlTextBox.Text;
        var xml_file_path = FileTextBox.Text;

        XmlDocument xml_doc = new XmlDocument();
        xml_doc.Load(xml_file_path);

        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);

        request.Method = "POST";
        request.ContentType = "text/xml";
        request.Accept = "text/xml";
        request.Timeout = 30 * 1000;

        Stream request_stream = request.GetRequestStream();
        xml_doc.Save(request_stream);
        request_stream.Close();

        HttpWebResponse response = (HttpWebResponse)request.GetResponse();
        Stream r_stream = response.GetResponseStream();

        StreamReader response_stream = new StreamReader(r_stream, System.Text.Encoding.Default);
        string sOutput = response_stream.ReadToEnd();

        ResultTextBox.Text = sOutput;

    }

这里是XML文件

        <?xml version="1.0" encoding="utf-8"?>
    <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
      <soap12:Body>
        <add xmlns="http://tempuri.org/" >
        <a>5</a>
        <b>10</b>
        </add>
      </soap12:Body>
    </soap12:Envelope>

这里是WebService中的代码

    [WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
public class Service1 : System.Web.Services.WebService
{

    [WebMethod]
    public int Add(int a, int b)
    {
        return a + b;
    }
}

1 个答案:

答案 0 :(得分:0)

手动构建SOAP信封似乎不是一个好主意。您应该依赖WSDL“添加Web引用”,然后转到WCF。

无论如何,这是我在web.config中用于WS的配置的一部分

<webServices>
  <protocols>
    <add name="HttpGet"/>
    <add name="HttpPost"/>
  </protocols>
  <conformanceWarnings>
    <remove name="BasicProfile1_1"/>
  </conformanceWarnings>
</webServices>
</system.web>

此外,您可以通过直接连接到.asmx(在localhost模式下)来检查WS是否在GET模式下工作

不知道这是否重要,但我的信封略有不同。 我会添加标题“Content-Length”。

    <?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <a xmlns="http://tempuri.org/">5</a>
    <b xmlns="http://tempuri.org/">10</b>
  </soap12:Body>
</soap12:Envelope>