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 "Michele Mazzucco (JIRA)" <ji...@apache.org> on 2006/11/09 15:04:37 UTC

[jira] Created: (AXIS2-1658) Unable to send a result message to a host different from the caller (it was possible)

Unable to send a result message to a host different from the caller (it was possible)
-------------------------------------------------------------------------------------

                 Key: AXIS2-1658
                 URL: http://issues.apache.org/jira/browse/AXIS2-1658
             Project: Apache Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: kernel
         Environment: axis2 1.1 rc2 niglty 08/11/2006
            Reporter: Michele Mazzucco
            Priority: Blocker


I'm not able to forward a result to an EPR different from where the original message comes from. 

I've node A (client) which sends a message to node B (in-only with addressing informations), which in turn sends a different message to a
node C.
When the result is ready, node C sends it to node B, which (I'm simplifying) should send the result (using a *new* ServiceClient object) to node A.
Until now I've been using a RawXMLINOutMessageReceiver message receiver, while the method signature was

void result(OMElement)

and it worked fine using options.setRelationships + the A's EPR. However now I get an AxisFault exception saying an operation with the signature OMElement result(OMElement) does not exist.
I've tried to change the message receiver to in-only, but if I do this the forward operation is ignored (see also the RawXMLInOnlyMessageReceiver java doc): it looks like the ServiceClient sends the result to A, but it's never received.

This issue has been discussed several times (i.e. [1, 2]) on this
mailing list and the result was that it's actually possible.




[1] http://www.mail-archive.com/axis-user@ws.apache.org/msg13338.html
[2] http://www.mail-archive.com/axis-user@ws.apache.org/msg12733.html

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Updated: (AXIS2-1658) Unable to send a result message to a host different from the caller (it was possible)

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-1658?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Davanum Srinivas updated AXIS2-1658:
------------------------------------

    Assignee: Deepal Jayasinghe

> Unable to send a result message to a host different from the caller (it was possible)
> -------------------------------------------------------------------------------------
>
>                 Key: AXIS2-1658
>                 URL: https://issues.apache.org/jira/browse/AXIS2-1658
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>         Environment: axis2 1.1 rc2 niglty 08/11/2006
>            Reporter: Michele Mazzucco
>         Assigned To: Deepal Jayasinghe
>            Priority: Critical
>         Attachments: axis2_logs.log
>
>
> I'm not able to forward a result to an EPR different from where the original message comes from. 
> I've node A (client) which sends a message to node B (in-only with addressing informations), which in turn sends a different message to a
> node C.
> When the result is ready, node C sends it to node B, which (I'm simplifying) should send the result (using a *new* ServiceClient object) to node A.
> Until now I've been using a RawXMLINOutMessageReceiver message receiver, while the method signature was
> void result(OMElement)
> and it worked fine using options.setRelationships + the A's EPR. However now I get an AxisFault exception saying an operation with the signature OMElement result(OMElement) does not exist.
> I've tried to change the message receiver to in-only, but if I do this the forward operation is ignored (see also the RawXMLInOnlyMessageReceiver java doc): it looks like the ServiceClient sends the result to A, but it's never received.
> This issue has been discussed several times (i.e. [1, 2]) on this
> mailing list and the result was that it's actually possible.
> [1] http://www.mail-archive.com/axis-user@ws.apache.org/msg13338.html
> [2] http://www.mail-archive.com/axis-user@ws.apache.org/msg12733.html

-- 
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-1658) Unable to send a result message to a host different from the caller (it was possible)

Posted by "Michele Mazzucco (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-1658?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12505081 ] 

Michele Mazzucco commented on AXIS2-1658:
-----------------------------------------

No, it's not possible to use what you suggest:
1 - I don't want to have plenty of callbacks waiting (and this is a very serious issue the workload is intense)
2 - B exposes 2 endpoints, one to receive A's requests and one to receive C's replies (which are then redirected to A)

> Unable to send a result message to a host different from the caller (it was possible)
> -------------------------------------------------------------------------------------
>
>                 Key: AXIS2-1658
>                 URL: https://issues.apache.org/jira/browse/AXIS2-1658
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>         Environment: axis2 1.1 rc2 niglty 08/11/2006
>            Reporter: Michele Mazzucco
>            Assignee: Deepal Jayasinghe
>            Priority: Minor
>         Attachments: axis2_logs.log
>
>
> I'm not able to forward a result to an EPR different from where the original message comes from. 
> I've node A (client) which sends a message to node B (in-only with addressing informations), which in turn sends a different message to a
> node C.
> When the result is ready, node C sends it to node B, which (I'm simplifying) should send the result (using a *new* ServiceClient object) to node A.
> Until now I've been using a RawXMLINOutMessageReceiver message receiver, while the method signature was
> void result(OMElement)
> and it worked fine using options.setRelationships + the A's EPR. However now I get an AxisFault exception saying an operation with the signature OMElement result(OMElement) does not exist.
> I've tried to change the message receiver to in-only, but if I do this the forward operation is ignored (see also the RawXMLInOnlyMessageReceiver java doc): it looks like the ServiceClient sends the result to A, but it's never received.
> This issue has been discussed several times (i.e. [1, 2]) on this
> mailing list and the result was that it's actually possible.
> [1] http://www.mail-archive.com/axis-user@ws.apache.org/msg13338.html
> [2] http://www.mail-archive.com/axis-user@ws.apache.org/msg12733.html

-- 
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-1658) Unable to send a result message to a host different from the caller (it was possible)

Posted by "Srinath Perera (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-1658?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12504662 ] 

Srinath Perera commented on AXIS2-1658:
---------------------------------------

What I meant is

A invoke a InOut operation with Async+replyTo on B. Then B invoke Async + ReplyTo  inout operation on C. When C return a result, that result can be processed and return by B, which would be return to A as part of A->B inout operation. Then B->A will not be done using new fireandForget invocation, but as respose on A->B InOut operation

> Unable to send a result message to a host different from the caller (it was possible)
> -------------------------------------------------------------------------------------
>
>                 Key: AXIS2-1658
>                 URL: https://issues.apache.org/jira/browse/AXIS2-1658
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>         Environment: axis2 1.1 rc2 niglty 08/11/2006
>            Reporter: Michele Mazzucco
>            Assignee: Deepal Jayasinghe
>            Priority: Minor
>         Attachments: axis2_logs.log
>
>
> I'm not able to forward a result to an EPR different from where the original message comes from. 
> I've node A (client) which sends a message to node B (in-only with addressing informations), which in turn sends a different message to a
> node C.
> When the result is ready, node C sends it to node B, which (I'm simplifying) should send the result (using a *new* ServiceClient object) to node A.
> Until now I've been using a RawXMLINOutMessageReceiver message receiver, while the method signature was
> void result(OMElement)
> and it worked fine using options.setRelationships + the A's EPR. However now I get an AxisFault exception saying an operation with the signature OMElement result(OMElement) does not exist.
> I've tried to change the message receiver to in-only, but if I do this the forward operation is ignored (see also the RawXMLInOnlyMessageReceiver java doc): it looks like the ServiceClient sends the result to A, but it's never received.
> This issue has been discussed several times (i.e. [1, 2]) on this
> mailing list and the result was that it's actually possible.
> [1] http://www.mail-archive.com/axis-user@ws.apache.org/msg13338.html
> [2] http://www.mail-archive.com/axis-user@ws.apache.org/msg12733.html

-- 
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-1658) Unable to send a result message to a host different from the caller (it was possible)

Posted by "Michele Mazzucco (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-1658?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Michele Mazzucco resolved AXIS2-1658.
-------------------------------------

    Resolution: Fixed

> Unable to send a result message to a host different from the caller (it was possible)
> -------------------------------------------------------------------------------------
>
>                 Key: AXIS2-1658
>                 URL: https://issues.apache.org/jira/browse/AXIS2-1658
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>         Environment: axis2 1.1 rc2 niglty 08/11/2006
>            Reporter: Michele Mazzucco
>            Assignee: Deepal Jayasinghe
>            Priority: Minor
>         Attachments: axis2_logs.log
>
>
> I'm not able to forward a result to an EPR different from where the original message comes from. 
> I've node A (client) which sends a message to node B (in-only with addressing informations), which in turn sends a different message to a
> node C.
> When the result is ready, node C sends it to node B, which (I'm simplifying) should send the result (using a *new* ServiceClient object) to node A.
> Until now I've been using a RawXMLINOutMessageReceiver message receiver, while the method signature was
> void result(OMElement)
> and it worked fine using options.setRelationships + the A's EPR. However now I get an AxisFault exception saying an operation with the signature OMElement result(OMElement) does not exist.
> I've tried to change the message receiver to in-only, but if I do this the forward operation is ignored (see also the RawXMLInOnlyMessageReceiver java doc): it looks like the ServiceClient sends the result to A, but it's never received.
> This issue has been discussed several times (i.e. [1, 2]) on this
> mailing list and the result was that it's actually possible.
> [1] http://www.mail-archive.com/axis-user@ws.apache.org/msg13338.html
> [2] http://www.mail-archive.com/axis-user@ws.apache.org/msg12733.html

-- 
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-1658) Unable to send a result message to a host different from the caller (it was possible)

Posted by "Michele Mazzucco (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-1658?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12504586 ] 

Michele Mazzucco commented on AXIS2-1658:
-----------------------------------------

Srinath, I'm already using async + replyTo! That's why it's a bug

> Unable to send a result message to a host different from the caller (it was possible)
> -------------------------------------------------------------------------------------
>
>                 Key: AXIS2-1658
>                 URL: https://issues.apache.org/jira/browse/AXIS2-1658
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>         Environment: axis2 1.1 rc2 niglty 08/11/2006
>            Reporter: Michele Mazzucco
>            Assignee: Deepal Jayasinghe
>            Priority: Minor
>         Attachments: axis2_logs.log
>
>
> I'm not able to forward a result to an EPR different from where the original message comes from. 
> I've node A (client) which sends a message to node B (in-only with addressing informations), which in turn sends a different message to a
> node C.
> When the result is ready, node C sends it to node B, which (I'm simplifying) should send the result (using a *new* ServiceClient object) to node A.
> Until now I've been using a RawXMLINOutMessageReceiver message receiver, while the method signature was
> void result(OMElement)
> and it worked fine using options.setRelationships + the A's EPR. However now I get an AxisFault exception saying an operation with the signature OMElement result(OMElement) does not exist.
> I've tried to change the message receiver to in-only, but if I do this the forward operation is ignored (see also the RawXMLInOnlyMessageReceiver java doc): it looks like the ServiceClient sends the result to A, but it's never received.
> This issue has been discussed several times (i.e. [1, 2]) on this
> mailing list and the result was that it's actually possible.
> [1] http://www.mail-archive.com/axis-user@ws.apache.org/msg13338.html
> [2] http://www.mail-archive.com/axis-user@ws.apache.org/msg12733.html

-- 
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] Updated: (AXIS2-1658) Unable to send a result message to a host different from the caller (it was possible)

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-1658?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Deepal Jayasinghe updated AXIS2-1658:
-------------------------------------

    Priority: Blocker  (was: Critical)

> Unable to send a result message to a host different from the caller (it was possible)
> -------------------------------------------------------------------------------------
>
>                 Key: AXIS2-1658
>                 URL: https://issues.apache.org/jira/browse/AXIS2-1658
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>         Environment: axis2 1.1 rc2 niglty 08/11/2006
>            Reporter: Michele Mazzucco
>            Assignee: Deepal Jayasinghe
>            Priority: Blocker
>         Attachments: axis2_logs.log
>
>
> I'm not able to forward a result to an EPR different from where the original message comes from. 
> I've node A (client) which sends a message to node B (in-only with addressing informations), which in turn sends a different message to a
> node C.
> When the result is ready, node C sends it to node B, which (I'm simplifying) should send the result (using a *new* ServiceClient object) to node A.
> Until now I've been using a RawXMLINOutMessageReceiver message receiver, while the method signature was
> void result(OMElement)
> and it worked fine using options.setRelationships + the A's EPR. However now I get an AxisFault exception saying an operation with the signature OMElement result(OMElement) does not exist.
> I've tried to change the message receiver to in-only, but if I do this the forward operation is ignored (see also the RawXMLInOnlyMessageReceiver java doc): it looks like the ServiceClient sends the result to A, but it's never received.
> This issue has been discussed several times (i.e. [1, 2]) on this
> mailing list and the result was that it's actually possible.
> [1] http://www.mail-archive.com/axis-user@ws.apache.org/msg13338.html
> [2] http://www.mail-archive.com/axis-user@ws.apache.org/msg12733.html

-- 
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] Updated: (AXIS2-1658) Unable to send a result message to a host different from the caller (it was possible)

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS2-1658?page=all ]

Davanum Srinivas updated AXIS2-1658:
------------------------------------

    Priority: Critical  (was: Blocker)

Critical, but not a blocker..

-- dims

> Unable to send a result message to a host different from the caller (it was possible)
> -------------------------------------------------------------------------------------
>
>                 Key: AXIS2-1658
>                 URL: http://issues.apache.org/jira/browse/AXIS2-1658
>             Project: Apache Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>         Environment: axis2 1.1 rc2 niglty 08/11/2006
>            Reporter: Michele Mazzucco
>            Priority: Critical
>         Attachments: axis2_logs.log
>
>
> I'm not able to forward a result to an EPR different from where the original message comes from. 
> I've node A (client) which sends a message to node B (in-only with addressing informations), which in turn sends a different message to a
> node C.
> When the result is ready, node C sends it to node B, which (I'm simplifying) should send the result (using a *new* ServiceClient object) to node A.
> Until now I've been using a RawXMLINOutMessageReceiver message receiver, while the method signature was
> void result(OMElement)
> and it worked fine using options.setRelationships + the A's EPR. However now I get an AxisFault exception saying an operation with the signature OMElement result(OMElement) does not exist.
> I've tried to change the message receiver to in-only, but if I do this the forward operation is ignored (see also the RawXMLInOnlyMessageReceiver java doc): it looks like the ServiceClient sends the result to A, but it's never received.
> This issue has been discussed several times (i.e. [1, 2]) on this
> mailing list and the result was that it's actually possible.
> [1] http://www.mail-archive.com/axis-user@ws.apache.org/msg13338.html
> [2] http://www.mail-archive.com/axis-user@ws.apache.org/msg12733.html

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Updated: (AXIS2-1658) Unable to send a result message to a host different from the caller (it was possible)

Posted by "Srinath Perera (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-1658?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Srinath Perera updated AXIS2-1658:
----------------------------------

    Priority: Minor  (was: Blocker)

This is very specific senario, I personally belive you should be use Inout Async with ReplyTo between A <-> B and B<->C which simplify things lot. On other words when someone invoke a Web service, that Web service may invoke other web services, but it does not affect the first invocation in any way. You can use Async with replyTo avoid timeouts. Anyway I am bringing down the priority

> Unable to send a result message to a host different from the caller (it was possible)
> -------------------------------------------------------------------------------------
>
>                 Key: AXIS2-1658
>                 URL: https://issues.apache.org/jira/browse/AXIS2-1658
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>         Environment: axis2 1.1 rc2 niglty 08/11/2006
>            Reporter: Michele Mazzucco
>            Assignee: Deepal Jayasinghe
>            Priority: Minor
>         Attachments: axis2_logs.log
>
>
> I'm not able to forward a result to an EPR different from where the original message comes from. 
> I've node A (client) which sends a message to node B (in-only with addressing informations), which in turn sends a different message to a
> node C.
> When the result is ready, node C sends it to node B, which (I'm simplifying) should send the result (using a *new* ServiceClient object) to node A.
> Until now I've been using a RawXMLINOutMessageReceiver message receiver, while the method signature was
> void result(OMElement)
> and it worked fine using options.setRelationships + the A's EPR. However now I get an AxisFault exception saying an operation with the signature OMElement result(OMElement) does not exist.
> I've tried to change the message receiver to in-only, but if I do this the forward operation is ignored (see also the RawXMLInOnlyMessageReceiver java doc): it looks like the ServiceClient sends the result to A, but it's never received.
> This issue has been discussed several times (i.e. [1, 2]) on this
> mailing list and the result was that it's actually possible.
> [1] http://www.mail-archive.com/axis-user@ws.apache.org/msg13338.html
> [2] http://www.mail-archive.com/axis-user@ws.apache.org/msg12733.html

-- 
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