Java:在SOAP 1.2中更改前缀名称空间

时间:2017-12-18 16:45:39

标签: java spring web-services

我创建一个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>

0 个答案:

没有答案