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 2007/06/28 06:29:25 UTC

[jira] Created: (AXIS2-2871) WSDL11ToAllAxisServicesBuilder - roundtrip problem(s)

WSDL11ToAllAxisServicesBuilder - roundtrip problem(s)
-----------------------------------------------------

                 Key: AXIS2-2871
                 URL: https://issues.apache.org/jira/browse/AXIS2-2871
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: kernel
            Reporter: Davanum Srinivas


If we read say the version wsdl (captured by running ?wsdl) against a tomcat instance and print it again. there are differences between the the two.

Example: the dynamic wsdl has the following entry

    <wsdl:portType name="VersionPortType">
        <wsdl:operation name="getVersion">
            <wsdl:input xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" message="axis2:getVersionRequest"
                        wsaw:Action="urn:getVersion"/>
            <wsdl:output message="axis2:getVersionResponse"/>
            <wsdl:fault message="axis2:getVersionFault" name="getVersionFault"/>
        </wsdl:operation>
    </wsdl:portType>

Whereas the one that we print by loading the dynamic wsdl using WSDL11ToAllAxisServicesBuilder and printing it again has this:

    <wsdl:portType name="VersionPortType">
        <wsdl:operation name="getVersion">
            <wsdl:input message="axis2:getVersionRequest" wsaw:Action="urn:getVersion"/>
            <wsdl:output message="axis2:getVersionResponse"
                         wsaw:Action="http://axisversion.sample/VersionPortType/getVersionResponse"/>
            <wsdl:fault message="axis2:getVersionFault" name="getVersionFault"
                        wsaw:Action="http://axisversion.sample/VersionPortType/getVersion/Fault/getVersionFault"/>
        </wsdl:operation>
    </wsdl:portType>

Am checking in a test case but commenting out the assertion (WSDL11ToAxisServiceBuilderTest)

thanks,
dims

-- 
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-2871) WSDL11ToAllAxisServicesBuilder - roundtrip problem(s)

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

Deepal Jayasinghe resolved AXIS2-2871.
--------------------------------------

    Resolution: Fixed

fixed in the current SVN

> WSDL11ToAllAxisServicesBuilder - roundtrip problem(s)
> -----------------------------------------------------
>
>                 Key: AXIS2-2871
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2871
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>            Reporter: Davanum Srinivas
>            Assignee: Deepal Jayasinghe
>            Priority: Blocker
>             Fix For: 1.3
>
>
> If we read say the version wsdl (captured by running ?wsdl) against a tomcat instance and print it again. there are differences between the the two.
> Example: the dynamic wsdl has the following entry
>     <wsdl:portType name="VersionPortType">
>         <wsdl:operation name="getVersion">
>             <wsdl:input xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" message="axis2:getVersionRequest"
>                         wsaw:Action="urn:getVersion"/>
>             <wsdl:output message="axis2:getVersionResponse"/>
>             <wsdl:fault message="axis2:getVersionFault" name="getVersionFault"/>
>         </wsdl:operation>
>     </wsdl:portType>
> Whereas the one that we print by loading the dynamic wsdl using WSDL11ToAllAxisServicesBuilder and printing it again has this:
>     <wsdl:portType name="VersionPortType">
>         <wsdl:operation name="getVersion">
>             <wsdl:input message="axis2:getVersionRequest" wsaw:Action="urn:getVersion"/>
>             <wsdl:output message="axis2:getVersionResponse"
>                          wsaw:Action="http://axisversion.sample/VersionPortType/getVersionResponse"/>
>             <wsdl:fault message="axis2:getVersionFault" name="getVersionFault"
>                         wsaw:Action="http://axisversion.sample/VersionPortType/getVersion/Fault/getVersionFault"/>
>         </wsdl:operation>
>     </wsdl:portType>
> Am checking in a test case but commenting out the assertion (WSDL11ToAxisServiceBuilderTest)
> thanks,
> dims

-- 
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-2871) WSDL11ToAllAxisServicesBuilder - roundtrip problem(s)

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

Davanum Srinivas commented on AXIS2-2871:
-----------------------------------------

any idea Why are we not generating the wsaw:Action for output and fault in the dynamic wsdl?

> WSDL11ToAllAxisServicesBuilder - roundtrip problem(s)
> -----------------------------------------------------
>
>                 Key: AXIS2-2871
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2871
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>            Reporter: Davanum Srinivas
>            Assignee: Deepal Jayasinghe
>            Priority: Blocker
>             Fix For: 1.3
>
>
> If we read say the version wsdl (captured by running ?wsdl) against a tomcat instance and print it again. there are differences between the the two.
> Example: the dynamic wsdl has the following entry
>     <wsdl:portType name="VersionPortType">
>         <wsdl:operation name="getVersion">
>             <wsdl:input xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" message="axis2:getVersionRequest"
>                         wsaw:Action="urn:getVersion"/>
>             <wsdl:output message="axis2:getVersionResponse"/>
>             <wsdl:fault message="axis2:getVersionFault" name="getVersionFault"/>
>         </wsdl:operation>
>     </wsdl:portType>
> Whereas the one that we print by loading the dynamic wsdl using WSDL11ToAllAxisServicesBuilder and printing it again has this:
>     <wsdl:portType name="VersionPortType">
>         <wsdl:operation name="getVersion">
>             <wsdl:input message="axis2:getVersionRequest" wsaw:Action="urn:getVersion"/>
>             <wsdl:output message="axis2:getVersionResponse"
>                          wsaw:Action="http://axisversion.sample/VersionPortType/getVersionResponse"/>
>             <wsdl:fault message="axis2:getVersionFault" name="getVersionFault"
>                         wsaw:Action="http://axisversion.sample/VersionPortType/getVersion/Fault/getVersionFault"/>
>         </wsdl:operation>
>     </wsdl:portType>
> Am checking in a test case but commenting out the assertion (WSDL11ToAxisServiceBuilderTest)
> thanks,
> dims

-- 
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-2871) WSDL11ToAllAxisServicesBuilder - roundtrip problem(s)

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

Davanum Srinivas updated AXIS2-2871:
------------------------------------

    Fix Version/s: 1.3
         Priority: Blocker  (was: Major)

> WSDL11ToAllAxisServicesBuilder - roundtrip problem(s)
> -----------------------------------------------------
>
>                 Key: AXIS2-2871
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2871
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>            Reporter: Davanum Srinivas
>            Assignee: Deepal Jayasinghe
>            Priority: Blocker
>             Fix For: 1.3
>
>
> If we read say the version wsdl (captured by running ?wsdl) against a tomcat instance and print it again. there are differences between the the two.
> Example: the dynamic wsdl has the following entry
>     <wsdl:portType name="VersionPortType">
>         <wsdl:operation name="getVersion">
>             <wsdl:input xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" message="axis2:getVersionRequest"
>                         wsaw:Action="urn:getVersion"/>
>             <wsdl:output message="axis2:getVersionResponse"/>
>             <wsdl:fault message="axis2:getVersionFault" name="getVersionFault"/>
>         </wsdl:operation>
>     </wsdl:portType>
> Whereas the one that we print by loading the dynamic wsdl using WSDL11ToAllAxisServicesBuilder and printing it again has this:
>     <wsdl:portType name="VersionPortType">
>         <wsdl:operation name="getVersion">
>             <wsdl:input message="axis2:getVersionRequest" wsaw:Action="urn:getVersion"/>
>             <wsdl:output message="axis2:getVersionResponse"
>                          wsaw:Action="http://axisversion.sample/VersionPortType/getVersionResponse"/>
>             <wsdl:fault message="axis2:getVersionFault" name="getVersionFault"
>                         wsaw:Action="http://axisversion.sample/VersionPortType/getVersion/Fault/getVersionFault"/>
>         </wsdl:operation>
>     </wsdl:portType>
> Am checking in a test case but commenting out the assertion (WSDL11ToAxisServiceBuilderTest)
> thanks,
> dims

-- 
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-2871) WSDL11ToAllAxisServicesBuilder - roundtrip problem(s)

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

Davanum Srinivas commented on AXIS2-2871:
-----------------------------------------

Another difference is that the dynamic wsdl had the following names for wsdl:service/wsdl:port/@name - VersionSOAP11port_http, VersionSOAP12port_http and VersionHttpport

where as the output from WSDL11ToAllAxisServicesBuilder has just two with the following names - VersionSOAP11port, VersionSOAP12port .As the VersionHttpport is missing.

thanks,
dims

> WSDL11ToAllAxisServicesBuilder - roundtrip problem(s)
> -----------------------------------------------------
>
>                 Key: AXIS2-2871
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2871
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>            Reporter: Davanum Srinivas
>            Assignee: Deepal Jayasinghe
>            Priority: Blocker
>             Fix For: 1.3
>
>
> If we read say the version wsdl (captured by running ?wsdl) against a tomcat instance and print it again. there are differences between the the two.
> Example: the dynamic wsdl has the following entry
>     <wsdl:portType name="VersionPortType">
>         <wsdl:operation name="getVersion">
>             <wsdl:input xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" message="axis2:getVersionRequest"
>                         wsaw:Action="urn:getVersion"/>
>             <wsdl:output message="axis2:getVersionResponse"/>
>             <wsdl:fault message="axis2:getVersionFault" name="getVersionFault"/>
>         </wsdl:operation>
>     </wsdl:portType>
> Whereas the one that we print by loading the dynamic wsdl using WSDL11ToAllAxisServicesBuilder and printing it again has this:
>     <wsdl:portType name="VersionPortType">
>         <wsdl:operation name="getVersion">
>             <wsdl:input message="axis2:getVersionRequest" wsaw:Action="urn:getVersion"/>
>             <wsdl:output message="axis2:getVersionResponse"
>                          wsaw:Action="http://axisversion.sample/VersionPortType/getVersionResponse"/>
>             <wsdl:fault message="axis2:getVersionFault" name="getVersionFault"
>                         wsaw:Action="http://axisversion.sample/VersionPortType/getVersion/Fault/getVersionFault"/>
>         </wsdl:operation>
>     </wsdl:portType>
> Am checking in a test case but commenting out the assertion (WSDL11ToAxisServiceBuilderTest)
> thanks,
> dims

-- 
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] Assigned: (AXIS2-2871) WSDL11ToAllAxisServicesBuilder - roundtrip problem(s)

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

Davanum Srinivas reassigned AXIS2-2871:
---------------------------------------

    Assignee: Deepal Jayasinghe

> WSDL11ToAllAxisServicesBuilder - roundtrip problem(s)
> -----------------------------------------------------
>
>                 Key: AXIS2-2871
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2871
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: kernel
>            Reporter: Davanum Srinivas
>            Assignee: Deepal Jayasinghe
>
> If we read say the version wsdl (captured by running ?wsdl) against a tomcat instance and print it again. there are differences between the the two.
> Example: the dynamic wsdl has the following entry
>     <wsdl:portType name="VersionPortType">
>         <wsdl:operation name="getVersion">
>             <wsdl:input xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" message="axis2:getVersionRequest"
>                         wsaw:Action="urn:getVersion"/>
>             <wsdl:output message="axis2:getVersionResponse"/>
>             <wsdl:fault message="axis2:getVersionFault" name="getVersionFault"/>
>         </wsdl:operation>
>     </wsdl:portType>
> Whereas the one that we print by loading the dynamic wsdl using WSDL11ToAllAxisServicesBuilder and printing it again has this:
>     <wsdl:portType name="VersionPortType">
>         <wsdl:operation name="getVersion">
>             <wsdl:input message="axis2:getVersionRequest" wsaw:Action="urn:getVersion"/>
>             <wsdl:output message="axis2:getVersionResponse"
>                          wsaw:Action="http://axisversion.sample/VersionPortType/getVersionResponse"/>
>             <wsdl:fault message="axis2:getVersionFault" name="getVersionFault"
>                         wsaw:Action="http://axisversion.sample/VersionPortType/getVersion/Fault/getVersionFault"/>
>         </wsdl:operation>
>     </wsdl:portType>
> Am checking in a test case but commenting out the assertion (WSDL11ToAxisServiceBuilderTest)
> thanks,
> dims

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