我的公司订购了旅行预订系统提供的服务,当旅行行程发生任何变化时,他们会给我们回电话。我的任务是站起来一个SOAP端点来接受这个回调。我用标准的jax-ws做这个。
以下是他们肥皂信息的基本要点:
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:eb="http://www.ebxml.org/namespaces/messageHeader" xmlns:swse="http://wse.sabre.com/eventing"
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:wse="http://schemas.xmlsoap.org/ws/2004/08/eventing">
<soap-env:Header>
<eb:MessageHeader eb:version="1.0"
soap-env:mustUnderstand="1">
<wse:MySubscription>7TZA</wse:MySubscription>
<swse:EventTopic>WSE.QUEUE.CCC.PNRCHNG</swse:EventTopic>
</eb:MessageHeader>
<wsa:Action>http://wse.sabre.com/EventSource/notification</wsa:Action>
<wsa:MessageID>721d8dc0-1307-4b27-a48b-a9ba7f7818c7</wsa:MessageID>
<wse:Identifer>7f9aad13-a8cd-4057-8c91-89ccfad64598</wse:Identifer>
<wsa:To>http://localhost:18888/</wsa:To>
</soap-env:Header>
<soap-env:Body>
<swse:CCC.PNRCHNG>
<swse:OWNPCC>N0V3</swse:OWNPCC>
<swse:HOMEPCC>W0H3</swse:HOMEPCC>
<swse:Locator>IGLYIZ</swse:Locator>
<swse:EventTimeStamp format="yyyy-MM-dd hh:mm:ss.fffffffff">2007-10-30 11:41:32.000986</swse:EventTimeStamp>
<swse:ChangeIndicators>
<swse:Indicator name="Ticketing">
<swse:hasChanged>Y</swse:hasChanged>
</swse:Indicator>
...
</swse:CCC.PNRCHNG>
</soap-env:Body>
我有一个功能正常的SOAPHandler,其getHeaders()实现满足mustUnderstand = 1的要求。
我有一个@WebMethod,它成功接受了有效载荷的一些顶层部分。这实际上已经足够了,但我想了解如何编写一个将整个有效负载作为复杂对象接受的@Web方法。
我有一个jibx生成的CCC.PNRCHNG类。但是我怎么写@WebMethod来接受呢?下面是接受顶级位作为单独的@WebParams的方法(Locator是我现在真正需要的)
@WebMethod(operationName="CCC.PNRCHNG", action="http://wse.sabre.com/EventSource/notification")
public Object onPnrEvent(
@WebParam(name="OWNPCC", targetNamespace=NS) String ownPcc,
@WebParam(name="HOMEPCC", targetNamespace=NS) String homePcc,
@WebParam(name="Locator", targetNamespace=NS) String locator
) {
try {
s_logger.info(locator);
}
catch(Exception e) {
s_logger.error(e);
}
return null;
}
获得完整的模型会很高兴所以任何建议都会非常受欢迎。
答案 0 :(得分:0)
最好的方法是使用wsimport生成基于WSDL的PortType。如果你没有WSDL,我就不会费心去编写一个包装好的JAX-WS服务。
在课堂上添加此注释
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
然后编写接受根元素的方法。像这样:
@WebMethod(operationName="CCC.PNRCHNG", action="http://wse.sabre.com/EventSource/notification")
public Object onPnrEvent( @WebParam(name="CCC.PNRCHNG", targetNamespace=NS) PNRCHNG request) {
}