- From: <Sanjeev_Dokiburra@ibi.com>
- Date: Wed, 19 Nov 2008 15:32:45 +0000
- To: <phil_adams@us.ibm.com>
- Cc: <public-soap-jms@w3.org>, <public-soap-jms-request@w3.org>
- Message-ID: <8EC4F0A8AC7A6D40BF9C55E32249A916067BA8D0@IBIUSMBSA.ibi.com>
Hi Phil, Thank you very much for the response. It was my mistake that I did not put up my question in right way. In fact my component should do both functions i.e SOAP sending node & SOAP receiving node. At this moment I am stuck with SOAP sending node implementation of constructing SOAP request message based on any given WSDL. It would be really helpful if you can post a sample pseudo code(with respect to any existing soap/jms WSDL, to connect & test as well) for SOAP sending node implementation. Appreciate your time. Rgds, Sanjeev From: Phil Adams [mailto:phil_adams@us.ibm.com] Sent: Wednesday, November 19, 2008 10:16 AM To: Dokiburra, Sanjeev Cc: public-soap-jms@w3.org; public-soap-jms-request@w3.org Subject: Re: SOAP over JMS Hi Sanjeev, It sounds like you are implementing (more or less) the "SOAP receiving node" as described in the SOAP/JMS binding spec. Note that the WSDL binding section of the spec really doesn't apply to the SOAP receiving node, since the WSDL is used by the client runtime (SOAP sending node) to construct the request message. So you basically just need to receive the JMS message off the queue or topic, then use the JMS message properties (e.g. SOAPJMS_contentType) along with the body of the message (the format of the body will be described by the SOAPJMS_contentType property value) to de-serialize the request. Then you would process the request and construct a response message and send it back in a JMS message according to the rules laid out by the SOAP/JMS binding spec. The hardest part (IMO) is the message de-serialization step, although the code used to do that would basically be the same that's used to de-serialize a message received via HTTP so if your component already supports HTTP, then you are mostly done :) Regards, From: <Sanjeev_Dokiburra@ibi.com> To: <public-soap-jms@w3.org> Date: 11/19/2008 02:43 AM Subject: SOAP over JMS ________________________________ Team, I am developing a standalone component, which would pick soap/jms message from a destination, processes it (webservice call) and then returns the response to reply destination. Could you please give me pointers about java implementation by looking at WSDL. Wondering whether it would be normal http webservice rpc/document invocation using soapaction mentioned in line-25, after picking up request message. Any help is appreciated. <wsdl11:binding name="StockQuoteSoapJMSBinding" type="tns:StockQuotePortType" xmlns:soapjms=" http://www.w3.org/2008/07/soap/bindings/JMS/ <http://www.w3.org/2008/07/soap/bindings/JMS/> "> 15 <wsdl11soap11:binding style="document" transport="http://www.w3.org/2008/07/soap/bindings/JMS/ <http://www.w3.org/2008/07/soap/bindings/JMS/> "/> 16 17 <!-- We want this binding to use a particular CF class --> 18 <soapjms:jndiConnectionFactoryName> 19 sample.jms.ConnectionFactory 20 </soapjms:jndiConnectionFactoryName> 21 <!-- Specify PERSISTENT delivery mode --> 22 <soapjms:deliveryMode>PERSISTENT</soapjms:deliveryMode> 23 24 <wsdl11:operation name="GetLastTradePrice"> 25 <wsdl11soap11:operation soapAction=" http://example.com/GetLastTradePrice <http://example.com/GetLastTradePrice> "/> 26 <wsdl11:input> 27 <wsdl11soap11:body use="literal"/> 28 </wsdl11:input> 29 <wsdl11:output> 30 <wsdl11soap11:body use="literal"/> 31 </wsdl11:output> 32 </wsdl11:operation> 33 </wsdl11:binding> Thanks & Rgds, Sanjeev
Attachments
- image/gif attachment: image001.gif
Received on Wednesday, 19 November 2008 19:03:44 UTC