Hi, I am getting the exception below and I wonder if anyone can help me figure out why?
snippet: Caused by: javax.jms.JMSException: MQJMS1013: operation invalid whilst session is using asynchronous delivery
From a few posts (elsewhere) that I have read I think I may need to:
1. specify an (endpoint?) REPLY TO option, how do I do that? 2. change the provider mode to be non multiplxed. not a question I should really ask here, so I will have alook around. Thanks Wayne org.codehaus.xfire.XFireRuntimeException: Could not invoke service.. Nested exception is org.codehaus.xfire.fault.XFireFault: Error sending message org.codehaus.xfire.fault.XFireFault: Error sending message at org.codehaus.xfire.transport.jms.JMSChannel.send(JMSChannel.java:240) at org.codehaus.xfire.handler.OutMessageSender.invoke( OutMessageSender.java:26) at org.codehaus.xfire.handler.HandlerPipeline.invoke( HandlerPipeline.java:131) at org.codehaus.xfire.client.Invocation.invoke(Invocation.java:75) at org.codehaus.xfire.client.Client.invoke(Client.java:335) at org.codehaus.xfire.client.XFireProxy.handleRequest(XFireProxy.java :77) at org.codehaus.xfire.client.XFireProxy.invoke(XFireProxy.java:57) at $Proxy0.echo(Unknown Source) at my.net.tests.JMSWSEchoTest.testClient(JMSWSEchoTest.java:40) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke( NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke( DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at junit.framework.TestCase.runTest(TestCase.java:154) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests( RemoteTestRunner.java:478) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run( RemoteTestRunner.java:344) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main( RemoteTestRunner.java:196) Caused by: javax.jms.JMSException: MQJMS1013: operation invalid whilst session is using asynchronous delivery at com.ibm.mq.jms.services.ConfigEnvironment.newException( ConfigEnvironment.java:567) at com.ibm.mq.jms.MQMessageProducer.send(MQMessageProducer.java:1193) at com.ibm.mq.jms.MQMessageProducer.send(MQMessageProducer.java:3123) at org.codehaus.xfire.transport.jms.JMSChannel.send(JMSChannel.java:233) ... 23 more
