Re: Ask for some help ,thanks

2011-08-09 Thread Ruwan Linton
Hi Vincent, I guess what you want is to do a 2 way communication with JMS where the response from the axis service will be stored in the reply jms queue? right? If so please have a look at the sample #264 [1]; Thanks, Ruwan [1] - http://synapse.apache.org/Synapse_Samples.html#Sample264 On Tue,

Re: Ask for some help ,thanks

2011-08-09 Thread vijayaratha vijayasingam
Hi, You have set the 'OUT_ONLY'property, which indicates that you are not expecting response from synapse.. Simply you can remove that property or else you can add "FORCE_SC_ACCEPTED" property to get HTTP 202 Accepted response. -Ratha.   From: naoh V To: sy

Ask for some help ,thanks

2011-08-09 Thread naoh V
Hi I built my webservice on axis2 server. - TestInterface.class public class TestInterface { public String getInfo(String str) { return "webservice:" + str; } } -- -