SOAPUI-文档不是信封

本文关键字:文档 SOAPUI- | 更新日期: 2023-09-27 17:57:29

我用C#编写了一个简单的Web服务。它只需要2个数字,然后给你它们的和。当在我的浏览器中测试它时,它运行得很好,但是当我将此服务导入SOAPUI并尝试测试时,它会给我以下错误:

第1行:错误:文档不是Envelope@httphttp://www.w3.org/2003/05/soap-develope:文档元素不匹配html@http://www.w3.org/1999/xhtml

这是左侧窗口中出现的内容(请求):

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Add xmlns="http://tempuri.org/">
      <x>1</x>
      <y>1</y>
    </Add>
  </soap:Body>
</soap:Envelope>

这是出现在右侧窗口(响应)中的内容:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
      <title>IIS7</title>
      <style type="text/css">
         <!--body {
    color:#000000;
    background-color:#B3B3B3;
    margin:0;
}
#container {
    margin-left:auto;
    margin-right:auto;
    text-align:center;
    }
a img {
    border:none;
}-->
      </style>
   </head>
   <body>
      <div id="container">
         <a href="http://go.microsoft.com/fwlink/?linkid=66138&amp;clcid=0x409">
            <img src="welcome.png" alt="IIS7" width="571" height="411"/>
         </a>
      </div>
   </body>
</html>

SOAPUI-文档不是信封

您得到的是IIS7"欢迎"页面,实际上您并没有使用您的服务。所以你的终点是错误的。直接针对服务重新使用SoapUI中的WSDL。这将为您提供一个具有正确端点(包括主机、端口和路径)的请求。