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 "Scott Kurz (JIRA)" <ji...@apache.org> on 2008/05/09 23:53:56 UTC

[jira] Created: (AXIS2-3795) Unqualified SOAP Action no longer works

Unqualified SOAP Action no longer works
---------------------------------------

                 Key: AXIS2-3795
                 URL: https://issues.apache.org/jira/browse/AXIS2-3795
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
    Affects Versions: 1.4
            Reporter: Scott Kurz
            Priority: Minor


I noticed that an unqualified soapAction, e.g.:

    ....
    <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
        <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <wsdl:operation name="sendGuessAndName">
            <wsdlsoap:operation soapAction="sendGuessAndName"/>
             ....

used to work but now does not.     

The failure happens as my ServiceClient sends this in the SOAP envelope:
  <wsa:Action>urn:getGreetings</wsa:Action>

which the engine can't match against anything on the service side, throwing an exc:





-- 
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-3795) Unqualified SOAP Action no longer works

Posted by "Scott Kurz (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3795?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12595824#action_12595824 ] 

Scott Kurz commented on AXIS2-3795:
-----------------------------------

Sorry, I guess I confused the description a bit by using the word 'unqualified' as if  "urn:getGreetings" was a QName rather than a URI.  
I'd been thinking 'urn' was some sort of default NS prefix.   

So I guess the issue is simply either:

1)  why is my client sending urn:sendGuessAndName  which the WSDL soapAction is just "sendGuessAndName"
   
   OR

2) why can't the dispatcher match urn:sendGuessAndName   in the SOAP header against my particular operation?


> Unqualified SOAP Action no longer works
> ---------------------------------------
>
>                 Key: AXIS2-3795
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3795
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>    Affects Versions: 1.4
>            Reporter: Scott Kurz
>            Priority: Minor
>         Attachments: guessAndGreet.wsdl
>
>
> I noticed that an unqualified soapAction, e.g.:
>     ....
>     <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
>         <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
>         <wsdl:operation name="sendGuessAndName">
>             <wsdlsoap:operation soapAction="sendGuessAndName"/>
>              ....
> used to work but now does not.     (Not sure exactly of the earlier working versions and now I'm on some 1.4 build).
> The failure happens as my ServiceClient sends this in the SOAP envelope:
>   <wsa:Action>urn:getGreetings</wsa:Action>
> which the engine can't match against anything on the service side, throwing an exc:
> org.apache.axis2.addressing.AddressingFaultsHelper triggerActionNotSupportedFault triggerActionNotSupportedFault: messageContext: [MessageContext: logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: urn:getGreetings
> I'm guessing this is a bug rather than a conscious decision to not support this style soapAction in Axis2, but I haven't been following  discussions so I'm not sure.
> Thanks, Scott

-- 
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-3795) Unqualified SOAP Action no longer works

Posted by "Scott Kurz (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3795?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12597334#action_12597334 ] 

Scott Kurz commented on AXIS2-3795:
-----------------------------------

It seems the client side problem was user error.  As it turned out a bug in my code was causing me to new up my ServiceClient with the wrong QName passed into my service builder 

          // serviceQName was incorrect
           WSDL11ToAxisServiceBuilder serviceBuilder =
                new WSDL11ToAxisServiceBuilder(wsdlDefinition, serviceQName, portName);
           // .. go on to build AxisService, etc. from builder then new up client
            serviceClient = new ServiceClient(configContext, axisService);

So this explains why my client was sending 'urn:sendGuessAndName' instead of simply 'sendGuessAndName' which is what's in the WSDL.     (Well, not fully, but it at least says it's not a bug that the client didn't send exactly what's in the WSDL).

I'm not sure if then we consider the 2nd "problem" as a problem still or not.

That is, should the engine, on the service side, be able to match the SOAP envelope's action: ''urn:sendGuessAndName'  with the ''sendGuessAndName'  in the WSDL?

It does at least seem like something changed recently, as even with this bug in my client code, I didn't observe this behavior... so I'll leave this JIRA open giving anyone a chance to comment. 

Thanks

> Unqualified SOAP Action no longer works
> ---------------------------------------
>
>                 Key: AXIS2-3795
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3795
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: Addressing
>    Affects Versions: 1.4
>            Reporter: Scott Kurz
>            Priority: Minor
>         Attachments: guessAndGreet.wsdl
>
>
> I noticed that an unqualified soapAction, e.g.:
>     ....
>     <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
>         <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
>         <wsdl:operation name="sendGuessAndName">
>             <wsdlsoap:operation soapAction="sendGuessAndName"/>
>              ....
> used to work but now does not.     (Not sure exactly of the earlier working versions and now I'm on some 1.4 build).
> The failure happens as my ServiceClient sends this in the SOAP envelope:
>   <wsa:Action>urn:sendGuessAndName</wsa:Action>
> which the engine can't match against anything on the service side, throwing an exc:
> org.apache.axis2.addressing.AddressingFaultsHelper triggerActionNotSupportedFault triggerActionNotSupportedFault: messageContext: [MessageContext: logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: urn:sendGuessAndName
> I'm guessing this is a bug rather than a conscious decision to not support this style soapAction in Axis2, but I haven't been following  discussions so I'm not sure.
> Thanks, Scott

-- 
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-3795) Unqualified SOAP Action no longer works

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

Brian DePradine updated AXIS2-3795:
-----------------------------------

    Component/s: Addressing

> Unqualified SOAP Action no longer works
> ---------------------------------------
>
>                 Key: AXIS2-3795
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3795
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: Addressing
>    Affects Versions: 1.4
>            Reporter: Scott Kurz
>            Priority: Minor
>         Attachments: guessAndGreet.wsdl
>
>
> I noticed that an unqualified soapAction, e.g.:
>     ....
>     <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
>         <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
>         <wsdl:operation name="sendGuessAndName">
>             <wsdlsoap:operation soapAction="sendGuessAndName"/>
>              ....
> used to work but now does not.     (Not sure exactly of the earlier working versions and now I'm on some 1.4 build).
> The failure happens as my ServiceClient sends this in the SOAP envelope:
>   <wsa:Action>urn:sendGuessAndName</wsa:Action>
> which the engine can't match against anything on the service side, throwing an exc:
> org.apache.axis2.addressing.AddressingFaultsHelper triggerActionNotSupportedFault triggerActionNotSupportedFault: messageContext: [MessageContext: logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: urn:sendGuessAndName
> I'm guessing this is a bug rather than a conscious decision to not support this style soapAction in Axis2, but I haven't been following  discussions so I'm not sure.
> Thanks, Scott

-- 
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-3795) Unqualified SOAP Action no longer works

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

Scott Kurz updated AXIS2-3795:
------------------------------

    Description: 
I noticed that an unqualified soapAction, e.g.:

    ....
    <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
        <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <wsdl:operation name="sendGuessAndName">
            <wsdlsoap:operation soapAction="sendGuessAndName"/>
             ....

used to work but now does not.     (Not sure exactly of the earlier working versions and now I'm on some 1.4 build).

The failure happens as my ServiceClient sends this in the SOAP envelope:
  <wsa:Action>urn:getGreetings</wsa:Action>

which the engine can't match against anything on the service side, throwing an exc:

org.apache.axis2.addressing.AddressingFaultsHelper triggerActionNotSupportedFault triggerActionNotSupportedFault: messageContext: [MessageContext: logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: urn:getGreetings


I'm guessing this is a bug rather than a conscious decision to not support this style soapAction in Axis2, but I haven't been following  discussions so I'm not sure.

Thanks, Scott






  was:
I noticed that an unqualified soapAction, e.g.:

    ....
    <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
        <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <wsdl:operation name="sendGuessAndName">
            <wsdlsoap:operation soapAction="sendGuessAndName"/>
             ....

used to work but now does not.     

The failure happens as my ServiceClient sends this in the SOAP envelope:
  <wsa:Action>urn:getGreetings</wsa:Action>

which the engine can't match against anything on the service side, throwing an exc:






> Unqualified SOAP Action no longer works
> ---------------------------------------
>
>                 Key: AXIS2-3795
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3795
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>    Affects Versions: 1.4
>            Reporter: Scott Kurz
>            Priority: Minor
>
> I noticed that an unqualified soapAction, e.g.:
>     ....
>     <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
>         <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
>         <wsdl:operation name="sendGuessAndName">
>             <wsdlsoap:operation soapAction="sendGuessAndName"/>
>              ....
> used to work but now does not.     (Not sure exactly of the earlier working versions and now I'm on some 1.4 build).
> The failure happens as my ServiceClient sends this in the SOAP envelope:
>   <wsa:Action>urn:getGreetings</wsa:Action>
> which the engine can't match against anything on the service side, throwing an exc:
> org.apache.axis2.addressing.AddressingFaultsHelper triggerActionNotSupportedFault triggerActionNotSupportedFault: messageContext: [MessageContext: logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: urn:getGreetings
> I'm guessing this is a bug rather than a conscious decision to not support this style soapAction in Axis2, but I haven't been following  discussions so I'm not sure.
> Thanks, Scott

-- 
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-3795) Unqualified SOAP Action no longer works

Posted by "David Illsley (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3795?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12595921#action_12595921 ] 

David Illsley commented on AXIS2-3795:
--------------------------------------

It looks like there are 2 distinct problems here.

1. The client isn't sending the value found in the WSDL
2. The service side no longer recognises the urn:operationName format (a regression).

> Unqualified SOAP Action no longer works
> ---------------------------------------
>
>                 Key: AXIS2-3795
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3795
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>    Affects Versions: 1.4
>            Reporter: Scott Kurz
>            Priority: Minor
>         Attachments: guessAndGreet.wsdl
>
>
> I noticed that an unqualified soapAction, e.g.:
>     ....
>     <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
>         <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
>         <wsdl:operation name="sendGuessAndName">
>             <wsdlsoap:operation soapAction="sendGuessAndName"/>
>              ....
> used to work but now does not.     (Not sure exactly of the earlier working versions and now I'm on some 1.4 build).
> The failure happens as my ServiceClient sends this in the SOAP envelope:
>   <wsa:Action>urn:sendGuessAndName</wsa:Action>
> which the engine can't match against anything on the service side, throwing an exc:
> org.apache.axis2.addressing.AddressingFaultsHelper triggerActionNotSupportedFault triggerActionNotSupportedFault: messageContext: [MessageContext: logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: urn:sendGuessAndName
> I'm guessing this is a bug rather than a conscious decision to not support this style soapAction in Axis2, but I haven't been following  discussions so I'm not sure.
> Thanks, Scott

-- 
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] Closed: (AXIS2-3795) Unqualified SOAP Action no longer works

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

Scott Kurz closed AXIS2-3795.
-----------------------------

    Resolution: Invalid

Since we know part of this was user error, I'll assume the whole thing was and close this out.

> Unqualified SOAP Action no longer works
> ---------------------------------------
>
>                 Key: AXIS2-3795
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3795
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: Addressing
>    Affects Versions: 1.4
>            Reporter: Scott Kurz
>            Priority: Minor
>         Attachments: guessAndGreet.wsdl
>
>
> I noticed that an unqualified soapAction, e.g.:
>     ....
>     <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
>         <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
>         <wsdl:operation name="sendGuessAndName">
>             <wsdlsoap:operation soapAction="sendGuessAndName"/>
>              ....
> used to work but now does not.     (Not sure exactly of the earlier working versions and now I'm on some 1.4 build).
> The failure happens as my ServiceClient sends this in the SOAP envelope:
>   <wsa:Action>urn:sendGuessAndName</wsa:Action>
> which the engine can't match against anything on the service side, throwing an exc:
> org.apache.axis2.addressing.AddressingFaultsHelper triggerActionNotSupportedFault triggerActionNotSupportedFault: messageContext: [MessageContext: logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: urn:sendGuessAndName
> I'm guessing this is a bug rather than a conscious decision to not support this style soapAction in Axis2, but I haven't been following  discussions so I'm not sure.
> Thanks, Scott

-- 
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-3795) Unqualified SOAP Action no longer works

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

Scott Kurz updated AXIS2-3795:
------------------------------

    Attachment: guessAndGreet.wsdl

Here's a sample WSDL if it helps

> Unqualified SOAP Action no longer works
> ---------------------------------------
>
>                 Key: AXIS2-3795
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3795
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>    Affects Versions: 1.4
>            Reporter: Scott Kurz
>            Priority: Minor
>         Attachments: guessAndGreet.wsdl
>
>
> I noticed that an unqualified soapAction, e.g.:
>     ....
>     <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
>         <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
>         <wsdl:operation name="sendGuessAndName">
>             <wsdlsoap:operation soapAction="sendGuessAndName"/>
>              ....
> used to work but now does not.     (Not sure exactly of the earlier working versions and now I'm on some 1.4 build).
> The failure happens as my ServiceClient sends this in the SOAP envelope:
>   <wsa:Action>urn:getGreetings</wsa:Action>
> which the engine can't match against anything on the service side, throwing an exc:
> org.apache.axis2.addressing.AddressingFaultsHelper triggerActionNotSupportedFault triggerActionNotSupportedFault: messageContext: [MessageContext: logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: urn:getGreetings
> I'm guessing this is a bug rather than a conscious decision to not support this style soapAction in Axis2, but I haven't been following  discussions so I'm not sure.
> Thanks, Scott

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


Re: [jira] Updated: (AXIS2-3795) Unqualified SOAP Action no longer works

Posted by Martin <mg...@hotmail.com>.
Hi Scott-

Did you supply the WSDL?

----- Original Message ----- 
From: "Scott Kurz (JIRA)" <ji...@apache.org>
To: <ax...@ws.apache.org>
Sent: Saturday, May 10, 2008 9:53 AM
Subject: [jira] Updated: (AXIS2-3795) Unqualified SOAP Action no longer 
works


>
>     [ 
> https://issues.apache.org/jira/browse/AXIS2-3795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
>
> Scott Kurz updated AXIS2-3795:
> ------------------------------
>
>    Description:
> I noticed that an unqualified soapAction, e.g.:
>
>    ....
>    <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
>        <wsdlsoap:binding style="document" 
> transport="http://schemas.xmlsoap.org/soap/http"/>
>        <wsdl:operation name="sendGuessAndName">
>            <wsdlsoap:operation soapAction="sendGuessAndName"/>
>             ....
>
> used to work but now does not.     (Not sure exactly of the earlier 
> working versions and now I'm on some 1.4 build).
>
> The failure happens as my ServiceClient sends this in the SOAP envelope:
>  <wsa:Action>urn:sendGuessAndName</wsa:Action>
>
> which the engine can't match against anything on the service side, 
> throwing an exc:
>
> org.apache.axis2.addressing.AddressingFaultsHelper 
> triggerActionNotSupportedFault triggerActionNotSupportedFault: 
> messageContext: [MessageContext: 
> logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: 
> urn:sendGuessAndName
>
>
> I'm guessing this is a bug rather than a conscious decision to not support 
> this style soapAction in Axis2, but I haven't been following  discussions 
> so I'm not sure.
>
> Thanks, Scott
>
>
>
>
>
>
>  was:
> I noticed that an unqualified soapAction, e.g.:
>
>    ....
>    <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
>        <wsdlsoap:binding style="document" 
> transport="http://schemas.xmlsoap.org/soap/http"/>
>        <wsdl:operation name="sendGuessAndName">
>            <wsdlsoap:operation soapAction="sendGuessAndName"/>
>             ....
>
> used to work but now does not.     (Not sure exactly of the earlier 
> working versions and now I'm on some 1.4 build).
>
> The failure happens as my ServiceClient sends this in the SOAP envelope:
>  <wsa:Action>urn:getGreetings</wsa:Action>
>
> which the engine can't match against anything on the service side, 
> throwing an exc:
>
> org.apache.axis2.addressing.AddressingFaultsHelper 
> triggerActionNotSupportedFault triggerActionNotSupportedFault: 
> messageContext: [MessageContext: 
> logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: 
> urn:getGreetings
>
>
> I'm guessing this is a bug rather than a conscious decision to not support 
> this style soapAction in Axis2, but I haven't been following  discussions 
> so I'm not sure.
>
> Thanks, Scott
>
>
>
>
>
>
>
>> Unqualified SOAP Action no longer works
>> ---------------------------------------
>>
>>                 Key: AXIS2-3795
>>                 URL: https://issues.apache.org/jira/browse/AXIS2-3795
>>             Project: Axis 2.0 (Axis2)
>>          Issue Type: Bug
>>    Affects Versions: 1.4
>>            Reporter: Scott Kurz
>>            Priority: Minor
>>         Attachments: guessAndGreet.wsdl
>>
>>
>> I noticed that an unqualified soapAction, e.g.:
>>     ....
>>     <wsdl:binding name="GuessAndGreetSoapBinding" 
>> type="tns:GuessAndGreet">
>>         <wsdlsoap:binding style="document" 
>> transport="http://schemas.xmlsoap.org/soap/http"/>
>>         <wsdl:operation name="sendGuessAndName">
>>             <wsdlsoap:operation soapAction="sendGuessAndName"/>
>>              ....
>> used to work but now does not.     (Not sure exactly of the earlier 
>> working versions and now I'm on some 1.4 build).
>> The failure happens as my ServiceClient sends this in the SOAP envelope:
>>   <wsa:Action>urn:sendGuessAndName</wsa:Action>
>> which the engine can't match against anything on the service side, 
>> throwing an exc:
>> org.apache.axis2.addressing.AddressingFaultsHelper 
>> triggerActionNotSupportedFault triggerActionNotSupportedFault: 
>> messageContext: [MessageContext: 
>> logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: 
>> urn:sendGuessAndName
>> I'm guessing this is a bug rather than a conscious decision to not 
>> support this style soapAction in Axis2, but I haven't been following 
>> discussions so I'm not sure.
>> Thanks, Scott
>
> -- 
> 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
>
> 


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


[jira] Updated: (AXIS2-3795) Unqualified SOAP Action no longer works

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

Scott Kurz updated AXIS2-3795:
------------------------------

    Description: 
I noticed that an unqualified soapAction, e.g.:

    ....
    <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
        <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <wsdl:operation name="sendGuessAndName">
            <wsdlsoap:operation soapAction="sendGuessAndName"/>
             ....

used to work but now does not.     (Not sure exactly of the earlier working versions and now I'm on some 1.4 build).

The failure happens as my ServiceClient sends this in the SOAP envelope:
  <wsa:Action>urn:sendGuessAndName</wsa:Action>

which the engine can't match against anything on the service side, throwing an exc:

org.apache.axis2.addressing.AddressingFaultsHelper triggerActionNotSupportedFault triggerActionNotSupportedFault: messageContext: [MessageContext: logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: urn:sendGuessAndName


I'm guessing this is a bug rather than a conscious decision to not support this style soapAction in Axis2, but I haven't been following  discussions so I'm not sure.

Thanks, Scott






  was:
I noticed that an unqualified soapAction, e.g.:

    ....
    <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
        <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <wsdl:operation name="sendGuessAndName">
            <wsdlsoap:operation soapAction="sendGuessAndName"/>
             ....

used to work but now does not.     (Not sure exactly of the earlier working versions and now I'm on some 1.4 build).

The failure happens as my ServiceClient sends this in the SOAP envelope:
  <wsa:Action>urn:getGreetings</wsa:Action>

which the engine can't match against anything on the service side, throwing an exc:

org.apache.axis2.addressing.AddressingFaultsHelper triggerActionNotSupportedFault triggerActionNotSupportedFault: messageContext: [MessageContext: logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: urn:getGreetings


I'm guessing this is a bug rather than a conscious decision to not support this style soapAction in Axis2, but I haven't been following  discussions so I'm not sure.

Thanks, Scott







> Unqualified SOAP Action no longer works
> ---------------------------------------
>
>                 Key: AXIS2-3795
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3795
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>    Affects Versions: 1.4
>            Reporter: Scott Kurz
>            Priority: Minor
>         Attachments: guessAndGreet.wsdl
>
>
> I noticed that an unqualified soapAction, e.g.:
>     ....
>     <wsdl:binding name="GuessAndGreetSoapBinding" type="tns:GuessAndGreet">
>         <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
>         <wsdl:operation name="sendGuessAndName">
>             <wsdlsoap:operation soapAction="sendGuessAndName"/>
>              ....
> used to work but now does not.     (Not sure exactly of the earlier working versions and now I'm on some 1.4 build).
> The failure happens as my ServiceClient sends this in the SOAP envelope:
>   <wsa:Action>urn:sendGuessAndName</wsa:Action>
> which the engine can't match against anything on the service side, throwing an exc:
> org.apache.axis2.addressing.AddressingFaultsHelper triggerActionNotSupportedFault triggerActionNotSupportedFault: messageContext: [MessageContext: logID=urn:uuid:2EF546E3E9D1FEA1C31210364327358] problemAction: urn:sendGuessAndName
> I'm guessing this is a bug rather than a conscious decision to not support this style soapAction in Axis2, but I haven't been following  discussions so I'm not sure.
> Thanks, Scott

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