我是SOAP和POSTMAN的新手,我想知道我在以下方面做错了什么。我有一个使用jax-ws的Java Web服务示例:
@WebService(endpointInterface = "Soap1.SOAPInterface")
public class SOAPService implements SOAPInterface
{
public String message(String name)
{
return "Hello " + name;
}
}
我使用端点发布了此Web服务:
public class Publisher
{
public static void main(String[]args)
{
Endpoint.publish("http://localhost:9006/Service", new SOAPService());
}
}
现在,当我在客户端中运行它时,它运行正常
public static void main(String[] args) throws Exception
{
URL url = new URL("http://localhost:9006/Service?wsdl");
QName qname = new QName("http://Soap1/","SOAPServiceService");
Service s = Service.create(url,qname);
SOAPInterface i = s.getPort(SOAPInterface.class);
System.out.println(i.message("Bob"));
}
但是,当尝试使用POSTMAN分析SOAP请求/响应时。通过输入以下xml请求:
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body>
<MyMessage xmlns="http://Soap1/">
<name>Bob</name>
</MyMessage>
</Body>
</Envelope>
我收到Hello空的响应
<?xml version="1.0" ?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:MyMessageResponse xmlns:ns2="http://Soap1/">
<returnedMessage>Hello null</returnedMessage>
</ns2:MyMessageResponse>
</S:Body>
</S:Envelope>
我想知道为什么这是因为使用客户端时,参数传递得很好,但是使用POSTMAN时似乎没有传递参数。
答案 0 :(得分:0)
如果在浏览器URI http://localhost:9006/Service?wsdl中打开,将会看到JAX-WS为您的服务生成的WSDL。它应包含以下代码段:
<types>
<xsd:schema>
<xsd:import namespace="http://example.soap.kdv.org/" schemaLocation="http://localhost:9006/Service?xsd=1"/>
</xsd:schema>
</types>
它包含对XML模式的引用,该XML模式定义了Web服务中使用的XML消息的结构。如果同时打开URI http://localhost:9006/Service?xsd=1(URI可能有所不同,请检查它),您将看到请求和响应消息的定义:
<xs:schema xmlns:tns="http://example.soap.kdv.org/" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0" targetNamespace="http://example.soap.kdv.org/">
<xs:element name="message" type="tns:message"/>
<xs:element name="messageResponse" type="tns:messageResponse"/>
<xs:complexType name="message">
<xs:sequence>
<xs:element name="arg0" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="messageResponse">
<xs:sequence>
<xs:element name="return" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
它定义了请求消息的以下结构:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:exam="http://example.soap.kdv.org/">
<soapenv:Header/>
<soapenv:Body>
<exam:message>
<!--Optional:-->
<arg0>test</arg0>
</exam:message>
</soapenv:Body>
</soapenv:Envelope>
在邮递员中尝试此消息,它应该返回您想要的结果。
我还想推荐用于测试Web服务的SOAP UI工具。在此工具中创建新的SOAP项目时,它会导入WSDL并为您生成请求消息。