我有一个使用 JAXWS 自动生成的网络服务。该网络服务是实际实现的模拟器,用于测试。实际实现的响应如下所示:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:nsc:RFIDCommandEnum="http://tempuri.org/nsc:RFIDCommandEnum.xsd"
xmlns:nsc="http://xxx.com/schema/yyy/ltu-tcs"
xmlns:nse:DeviceStateEnum="http://tempuri.org/nse:DeviceStateEnum.xsd"
xmlns:nse="http://xxx.com/schema/yyy"
xmlns:nsl="http://xxx.com/wsdl/yyy/ltu/tcs"
xmlns:nst="http://xxx.com/wsdl/yyy/tcs/ltu">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<nsl:setDataResponse>
<result>...</result>
</nsl:setDataResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
模拟器的相同响应如下所示:
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:getDataResponse xmlns:ns2="http://xxx.com/wsdl/yyy/ltu/tcs">
<result>...</result>
</ns2:getDataResponse>
</S:Body>
</S:Envelope>
现在我已经知道嵌套命名空间之类的xmlns:nsc:RFIDCommandEnum
会导致问题,所以我需要让模拟器像实际实现一样提供这些命名空间。经过一番谷歌搜索,我发现我应该做这样的事情:
@javax.xml.bind.annotation.XmlSchema(
namespace = "http://xxx.com/schema/yyy/ltu-tcs",
xmlns = {
@javax.xml.bind.annotation.XmlNs(prefix = "nsc:RFIDCommandEnum", namespaceURI = "http://tempuri.org/nsc:RFIDCommandEnum.xsd"),
@javax.xml.bind.annotation.XmlNs(prefix = "nsc", namespaceURI = "http://xxx.com/schema/epm/ltu-tcs"),
@javax.xml.bind.annotation.XmlNs(prefix = "nse:DeviceStateEnum", namespaceURI = "http://tempuri.org/nse:DeviceStateEnum.xsd"),
@javax.xml.bind.annotation.XmlNs(prefix = "nse", namespaceURI = "http://xxx.com/schema/yyy"),
@javax.xml.bind.annotation.XmlNs(prefix = "nsl", namespaceURI = "http://xxx.com/wsdl/yyy/ltu/tcs"),
@javax.xml.bind.annotation.XmlNs(prefix = "nst", namespaceURI = "http://xxx.com/wsdl/yyy/tcs/ltu")
},
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package com.xxx.yyy.tcs.simulator;
但它不起作用。包com.xxx.yyy.tcs.simulator
是webservice的模拟实现类所在的地方。我想我可能需要将这些注释应用于表示 XML 内容的自动生成的类,但不能更改这些,因为它们也用于生产代码,我不想用我的命名空间污染它。
所以我试图从StandardResponse
代表<result>
元素的类派生:
package com.xxx.yyy.tcs.simulator;
// ...
@WebService(name = "LTU_for_TCS", targetNamespace = "http://xxx.com/wsdl/yyy/ltu/tcs")
public class LTU_for_TCS_Impl implements LTUForTCS {
// ...
public static final class NamespacePollutedStandardResponse extends StandardResponse {
private NamespacePollutedStandardResponse(final Application application,
final ResultCodeEnum code,
final String message) {
super(application, code, message);
}
}
@WebMethod
@WebResult(name = "result", partName = "result")
@Override
public GetLTUDataResponse getData(
@WebParam(name = "application", partName = "application")
Application application) {
logger.info("getData");
return new NamespacePollutedStandardResponse(getApplicationHeader(),
ResultCodeEnum.SUCCESS,
"This is the LTU simulator!");
}
}
但是,这仍然不会改变我从模拟器中得到的响应。现在我想知道:我可以更改名称空间列表StandardResponse
吗?为什么它不能像这样工作 -NamespacePollutedStandardResponse
是simulator
包的一部分,所以它应该获取属性中定义的命名空间XmlSchema
,不是吗?有没有办法将命名空间添加到根元素(我只找到了如何将其添加到有效负载元素之一的信息)?