You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Lin Sun (JIRA)" <ji...@apache.org> on 2007/04/09 03:25:32 UTC

[jira] Created: (GERONIMO-3074) Axis2: portname isn't set correctly

Axis2: portname isn't set correctly
-----------------------------------

                 Key: GERONIMO-3074
                 URL: https://issues.apache.org/jira/browse/GERONIMO-3074
             Project: Geronimo
          Issue Type: Bug
      Security Level: public (Regular issues)
          Components: webservices
    Affects Versions: 2.0-M5
         Environment: WInXP + Sun 1.5 SDK
            Reporter: Lin Sun
         Assigned To: Davanum Srinivas
             Fix For: 2.0-M5
         Attachments: 3074.patch

In Axis2WebServiceContainer.java line 475, it is setting the portname using portInfo.getPortName().  This isn't correct, as this will return the value of the <port-component-name> tag instead of the value of the <wsdl-port> tag.   The fix is to use portInfo.getWsdlPort().getLocalPart() instead in the patch.


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


[jira] Assigned: (GERONIMO-3074) Axis2: portname isn't set correctly

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

Donald Woods reassigned GERONIMO-3074:
--------------------------------------

    Assignee: Donald Woods  (was: Davanum Srinivas)

> Axis2: portname isn't set correctly
> -----------------------------------
>
>                 Key: GERONIMO-3074
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3074
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: webservices
>    Affects Versions: 2.0-M5
>         Environment: WInXP + Sun 1.5 SDK
>            Reporter: Lin Sun
>         Assigned To: Donald Woods
>             Fix For: 2.0-M5
>
>         Attachments: 3074.patch
>
>
> In Axis2WebServiceContainer.java line 475, it is setting the portname using portInfo.getPortName().  This isn't correct, as this will return the value of the <port-component-name> tag instead of the value of the <wsdl-port> tag.   The fix is to use portInfo.getWsdlPort().getLocalPart() instead in the patch.

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


[jira] Closed: (GERONIMO-3074) Axis2: portname isn't set correctly

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

Lin Sun closed GERONIMO-3074.
-----------------------------


This has been checked in and dims later added some code to check for null.

> Axis2: portname isn't set correctly
> -----------------------------------
>
>                 Key: GERONIMO-3074
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3074
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: webservices
>    Affects Versions: 2.0-M5
>         Environment: WInXP + Sun 1.5 SDK
>            Reporter: Lin Sun
>         Assigned To: Donald Woods
>             Fix For: 2.0-M5
>
>         Attachments: 3074.patch
>
>
> In Axis2WebServiceContainer.java line 475, it is setting the portname using portInfo.getPortName().  This isn't correct, as this will return the value of the <port-component-name> tag instead of the value of the <wsdl-port> tag.   The fix is to use portInfo.getWsdlPort().getLocalPart() instead in the patch.

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


[jira] Resolved: (GERONIMO-3074) Axis2: portname isn't set correctly

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

Davanum Srinivas resolved GERONIMO-3074.
----------------------------------------

    Resolution: Fixed

Checked in (svn revision 526756)

thanks,
dims

> Axis2: portname isn't set correctly
> -----------------------------------
>
>                 Key: GERONIMO-3074
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3074
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: webservices
>    Affects Versions: 2.0-M5
>         Environment: WInXP + Sun 1.5 SDK
>            Reporter: Lin Sun
>         Assigned To: Donald Woods
>             Fix For: 2.0-M5
>
>         Attachments: 3074.patch
>
>
> In Axis2WebServiceContainer.java line 475, it is setting the portname using portInfo.getPortName().  This isn't correct, as this will return the value of the <port-component-name> tag instead of the value of the <wsdl-port> tag.   The fix is to use portInfo.getWsdlPort().getLocalPart() instead in the patch.

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


[jira] Updated: (GERONIMO-3074) Axis2: portname isn't set correctly

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

Lin Sun updated GERONIMO-3074:
------------------------------

    Attachment: 3074.patch

> Axis2: portname isn't set correctly
> -----------------------------------
>
>                 Key: GERONIMO-3074
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-3074
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: webservices
>    Affects Versions: 2.0-M5
>         Environment: WInXP + Sun 1.5 SDK
>            Reporter: Lin Sun
>         Assigned To: Davanum Srinivas
>             Fix For: 2.0-M5
>
>         Attachments: 3074.patch
>
>
> In Axis2WebServiceContainer.java line 475, it is setting the portname using portInfo.getPortName().  This isn't correct, as this will return the value of the <port-component-name> tag instead of the value of the <wsdl-port> tag.   The fix is to use portInfo.getWsdlPort().getLocalPart() instead in the patch.

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