The message is saying there was no response from the service so either the request was never sent, it was not sent to the correct place, the service didn't send a response or the response was sent to the wrong place. From the ActiveMQ admin panels can you see what message get sent to which queues? I've made a similar testcase to this which is working so it must not be exactly the same as what this is doing, could you send me all the code you have for this so i can see both the client and service ends? Is this running standalone or in a webapp?
...ant On Jan 9, 2008 7:27 AM, Nishant Joshi <[EMAIL PROTECTED]> wrote: > Now connection to tcp://localhost:61616 was establish so that problem was > solved :-) > Using latest jars of jms binding i got following error > ------------------------------------- > Caused by: org.apache.tuscany.sca.binding.jms.impl.JMSBindingException: No > reply message received on queue://ResponseQueue for message id > ID:nishantj02-2367-1199461575086-0:0:2:1:1 > at > org.apache.tuscany.sca.binding.jms.provider.JMSBindingInvoker.receiveReply > ( > JMSBindingInvoker.java:245) > at > org.apache.tuscany.sca.binding.jms.provider.JMSBindingInvoker.invokeTarget > ( > JMSBindingInvoker.java:196) > at org.apache.tuscany.sca.binding.jms.provider.JMSBindingInvoker.invoke( > JMSBindingInvoker.java:178) > at > > org.apache.tuscany.sca.core.databinding.wire.DataTransformationInterceptor.invoke > (DataTransformationInterceptor.java:74) > at org.apache.tuscany.sca.core.invocation.JDKInvocationHandler.invoke( > JDKInvocationHandler.java:233) > at org.apache.tuscany.sca.core.invocation.JDKInvocationHandler.invoke( > JDKInvocationHandler.java:130) > at $Proxy8.process(Unknown Source) ....... > -------------------------------------- > Here is my service for more help .... > > <service name="JMSService"> > <binding.jms initialContextFactory=" > org.apache.activemq.jndi.ActiveMQInitialContextFactory" > jndiURL="tcp://localhost:61616"> > <destination name="RequestQueue" create="always"/> > <response> > <destination name="ResponseQueue" create="always"/> > </response> > </binding.jms> > </service> > > > > -- > Many Thanks > Nishant Joshi >
