I'm just browsing through the axis2 docs, and I noticed the following in
the "Migrating from Apache Axis 1.x to Axis2"
(http://ws.apache.org/axis2/1_2/migration.html) page:
-------
OMElement payload = fac.createOMElement("echoString", ns);
payload.setText("Hello!");
Options options = new Options();
ServiceClient client = new ServiceClient();
options.setTo(targetEPR);
//Blocking invocation
OMElement result = client.sendReceive(payload);
-------
Isn't this missing a line, like:
client.setOptions(options);
?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]