1

将我的 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;
    }
}
4

1 回答 1

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>
于 2012-04-20T07:44:45.590 回答