我有一个简单的Web服务,我用C#编写。它只需要2个数字并给你它们的总和。当在我的浏览器中测试它时,它工作得很好,但是当我将这个服务导入SOAPUI并尝试测试它时它给了我以下错误:
第-1行:错误:该文档不是信封@ http://www.w3.org/2003/05/soap-envelope:文档元素不匹配得到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&clcid=0x409">
<img src="welcome.png" alt="IIS7" width="571" height="411"/>
</a>
</div>
</body>
</html>
答案 0 :(得分:1)
您正在获取IIS7“欢迎”页面,但您实际上并未点击您的服务。所以你的端点是错误的。在SoapUI中重新使用WSDL,直接针对服务。这应该为您提供具有正确端点的请求(包括主机,端口和路径)。