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,
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
Hi
I built my webservice on axis2 server.
-
TestInterface.class
public class TestInterface {
public String getInfo(String str) {
return "webservice:" + str;
}
}
--
-