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 "David M. Karr (JIRA)" <ji...@apache.org> on 2007/08/08 06:47:59 UTC

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

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


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

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
     [ 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


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

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3101?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12574544#action_12574544 ] 

Davanum Srinivas commented on AXIS2-3101:
-----------------------------------------

This is fixed already in svn

-- dims

> 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