Re: [axis2] Stuck with JMS

2006-04-27 Thread Deepal Jayasinghe
How did u create client service , the service you passed to create serviceClient has to have operation with inverse of original MEP. For example if the server side has in-out operation then corresponding client side service will have an operation with out-in operation. So change your client side s

Re: [axis2] Stuck with JMS

2006-04-27 Thread Davanum Srinivas
Please try using 2 separate axis2.xml's just like in the test case, once u get that working then try other things :) thanks, dims On 4/27/06, Thomas Van de Velde <[EMAIL PROTECTED]> wrote: > I have changed the client so to be more clisely to the unit test you pointed > me to. > > Now I have: > >

Re: [axis2] Stuck with JMS

2006-04-27 Thread Thomas Van de Velde
I have changed the client so to be more clisely to the unit test you pointed me to.Now I have:AxisService clientService = Utils.createSimpleServiceforClient(SERVICE_NAME,        GreetingService.class.getName (),        OPERATION_NAME);ServiceClient loggingClient = new Servic

Re: [axis2] Stuck with JMS

2006-04-27 Thread Thomas Van de Velde
I did the following:AxisService clientService = getConfigContext().getAxisConfiguration().getService("GreetingService");ServiceClient loggingClient = new ServiceClient(getConfigContext(), clientService); Thanks for your help!On 4/27/06, Davanum Srinivas <[EMAIL PROTECTED]> wrote: Can you please che

Re: [axis2] Stuck with JMS

2006-04-27 Thread Davanum Srinivas
Can you please check what we do in Utils.createSimpleServiceforClient? the return from there is used as a parameter to the ServiceClient thanks, dims On 4/27/06, Thomas Van de Velde <[EMAIL PROTECTED]> wrote: > I actually did for hours ;-) > > The particularity of my case is that I am using a sin

Re: [axis2] Stuck with JMS

2006-04-27 Thread Thomas Van de Velde
I actually did for hours ;-)The particularity of my case is that I am using a single axis2.xml for both client and server.  On 4/27/06, Davanum Srinivas <[EMAIL PROTECTED]> wrote:Please see the test cases : http://svn.apache.org/repos/asf/webservices/axis2/trunk/java/modules/integration/test/org/a

Re: [axis2] Stuck with JMS

2006-04-27 Thread Davanum Srinivas
Please see the test cases : http://svn.apache.org/repos/asf/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/jms/ Thanks, dims On 4/27/06, Thomas Van de Velde <[EMAIL PROTECTED]> wrote: > Hi, > > I am trying to integrate JMS with Axis2 and can get around the following > erro

[axis2] Stuck with JMS

2006-04-27 Thread Thomas Van de Velde
Hi,I am trying to integrate JMS with Axis2 and can get around the following error:"The MEP you are using  http://www.w3.org/2004/08/wsdl/in-out has not implemented createClient()." My client looks as follows:            Options options = new Options();            options.setTo(EPR);            opti