You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Davanum Srinivas (JIRA)" <ji...@apache.org> on 2008/03/03 16:04:51 UTC

[jira] Resolved: (AXIS2-3101) EchoBlockingClient on axis 1.x to 2.x migration page is missing line to set options into client

     [ https://issues.apache.org/jira/browse/AXIS2-3101?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Davanum Srinivas resolved AXIS2-3101.
-------------------------------------

    Resolution: Fixed

> 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: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org