我创建一个SOAP服务器,运行我的服务器并使用SOAPUI我的xml客户端是:
Hello
world
但我想要这个:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsd="http://ama.gov.pt/services/xsd">
<soap:Header/>
<soap:Body>
<xsd:messageRequest></messageRequest>
</soap:Body>
</soap:Envelope>
我使用带有注释的Spring Framework来执行此操作。
我的代码基本上是:
<soapenv:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsd="http://ama.gov.pt/services/xsd">
<soapenv:Header/>
<soapenv:Body>
<xsd:messageRequest></messageRequest>
</soapenv:Body>
</soapenv:Envelope>