调用我们的Web服务希望我们返回以下XML:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:loc="http://www.csapi.org/schema/parlayx/sms/notification/v2_2/local">
<soapenv:Header />
<soapenv:Body>
<loc:notifySmsDeliveryReceiptResponse />
</soapenv:Body>
</soapenv:Envelope>
我们使用JAX-WS来提供我们的Web服务。以下是我们定义Web服务接口的方法:
@BindingType(value = javax.xml.ws.soap.SOAPBinding.SOAP11HTTP_MTOM_BINDING)
@WebService (targetNamespace = "http://www.csapi.org/schema/parlayx/sms/notification/v2_2/local")
@HandlerChain(file = "deliverysoaphandler.xml")
@SOAPBinding(style = Style.DOCUMENT)
public interface DeliveryService {
@WebMethod ()
public void notifySmsReception(
@WebParam(name = "correlator", targetNamespace = "http://www.csapi.org/schema/parlayx/sms/notification/v2_2/local") @XmlElement(required = true) String correlator,
@WebParam(name = "message", targetNamespace = "http://www.csapi.org/schema/parlayx/sms/notification/v2_2/local") @XmlElement(required = true) Message message
) throws DeliveryException;
}
这会产生以下退货文件:
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<S:Body>
<ns2:notifySmsReceptionResponse xmlns:ns2="http://www.csapi.org/schema/parlayx/sms/notification/v2_2/local"/>
</S:Body>
</S:Envelope>
我们认为该文档与调用系统所期望的相同但被拒绝是因为1)命名空间是大写的,2)重复相同的命名空间引用3)文档中间有一个命名空间声明
无论如何,我可以说服JAX-WS提供商生成其他系统想要的东西吗?
答案 0 :(得分:1)
基于此描述,我不确定名称空间是否存在问题。
服务消费者期待:
realloc
但正在接收
<soapenv:Body>
<loc:notifySmsDeliveryReceiptResponse />
</soapenv:Body>
表示对不同操作名称的响应。
尝试将服务端点接口 <S:Body>
<ns2:notifySmsReceptionResponse xmlns:ns2="..."/>
</S:Body>
方法名称更改为:
WebMethod
这样做还需要您更改实现类的方法名称(或者它将不再编译)。
或者,您也可以将@WebMethod ()
public void notifySmsDeliveryReceipt(
更改为所需/指示的操作名称:
@WebMethod
该服务现在应该产生:
@WebMethod (operationName="notifySmsDeliveryReceipt")
public void notifySmsReception(