Re: [Axis2] JMS in axis2

2009-02-26 Thread Sagara Gunathunga
Hi Prasuna, May be you can write a Axis2 Module for this , where in your in-phase handler you can construct a JMS message from MessageContext and post it to a JMS queue. in this case you could use Module's init method to initialize connection to a JMS broker , I'm not sure how to optimize JMS bro

Re: [Axis2] JMS in axis2

2009-02-26 Thread Prasuna Lanka
Thanks for the replies. I think i didnt put my query clear. I have exposed a webservice using axis2. The client will send the request. Up to this part, i dont require JMS. once i received the request, i want to post it to JMS before it reaches to ReceiverInout or Skeleton level. Is there any way t

Re: [Axis2] JMS in axis2

2009-02-20 Thread Prabath Siriwardena
Hi; This[1] may be helpful. Thanks & regards. -Prabath [1]:http://blog.facilelogin.com/2008/12/enabling-jms-transport-for-axis2.html Prasuna Lanka wrote: We want to post the webservice request to JMS Queue. I found samples only exposing the service over JMS. How would we get access to connect

Re: [Axis2] JMS in axis2

2009-02-20 Thread Sagara Gunathunga
Hi Prasuna, Once you have exposed your web service over JMS , you can use WSDL2JAVA to generate client side Stub and it is possible to use this Stub to post a request to a JMS Queue . Further you can find URL for the JMS endpoint on generated WSDL document. // JMS Endpoit

[Axis2] JMS in axis2

2009-02-20 Thread Prasuna Lanka
We want to post the webservice request to JMS Queue. I found samples only exposing the service over JMS. How would we get access to connection instance in skeleton or receiverInout if we configure JMS parameters in axis2.xml? Thanks in advance.