EchoBlockingClient on axis 1.x to 2.x migration page is missing line to set 
options into client
-----------------------------------------------------------------------------------------------

                 Key: AXIS2-3101
                 URL: https://issues.apache.org/jira/browse/AXIS2-3101
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: documentation
            Reporter: David M. Karr
            Priority: Trivial


On the page titled "Migrating from Apache Axis 1.x to Axis2" 
(http://ws.apache.org/axis2/1_2/migration.html), the following block:

        Options options = new Options();
        ServiceClient client = new ServiceClient();
        options.setTo(targetEPR);
        //Blocking invocation
        OMElement result = client.sendReceive(payload);

needs to change to:

        Options options = new Options();
        ServiceClient client = new ServiceClient();
        options.setTo(targetEPR);
        client.setOptions(options);
        //Blocking invocation
        OMElement result = client.sendReceive(payload);


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to