You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ode.apache.org by "Colin (JIRA)" <ji...@apache.org> on 2009/02/17 10:37:59 UTC

[jira] Created: (ODE-517) DeploymentService Response and WSDL are invalid

DeploymentService Response and WSDL are invalid
-----------------------------------------------

                 Key: ODE-517
                 URL: https://issues.apache.org/jira/browse/ODE-517
             Project: ODE
          Issue Type: Bug
          Components: Deployment
    Affects Versions: 1.3
            Reporter: Colin
             Fix For: 1.3


http://svn.apache.org/repos/asf/ode/branches/APACHE_ODE_1.X at revision 744870.

Related bugs:
https://issues.apache.org/jira/browse/ODE-348
https://issues.apache.org/jira/browse/ODE-399

Use SOAPUI to invoke webmethod listDeployedPackages on the ode/processes/DeploymentService.
An invalid response is received.  Also the WSDL is incorrect because the schema type 'packageNames' declares one element 'name'; missing attribute maxOccurrs="unbounded"

Soap Request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pmap="http://www.apache.org/ode/pmapi">
   <soapenv:Header/>
   <soapenv:Body>
      <pmap:listDeployedPackages/>
   </soapenv:Body>
</soapenv:Envelope>

Invalid Soap Response received:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Body>
      <deployedPackages>
         <name>BPEL1</name>
      </deployedPackages>
   </soapenv:Body>
</soapenv:Envelope>

Missing element 'listDeployedPackagesResponse' before 'deployedPackages'
Missing namespace declaration on element 'name'.

Should be:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Body>
      <pmapi:listDeployedPackagesResponse xmlns:pmapi="http://www.apache.org/ode/pmapi">
         <deployedPackages>
            <axis2ns2:name xmlns:axis2ns2="http://www.apache.org/ode/deployapi">BPEL1</axis2ns2:name>
         </deployedPackages>
      </pmapi:listDeployedPackagesResponse>
   </soapenv:Body>
</soapenv:Envelope>

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


[jira] Commented: (ODE-517) DeploymentService Response and WSDL are invalid

Posted by "Alex Boisvert (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ODE-517?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12674384#action_12674384 ] 

Alex Boisvert commented on ODE-517:
-----------------------------------

Patched applied to Ode 1.x branch:
boisvert@boog:~/svn/ode/1.1$ svn commit -m "ODE-517: DeploymentService Response and WSDL are invalid" 
Sending        axis2/src/main/java/org/apache/ode/axis2/service/DeploymentWebService.java
Sending        axis2/src/main/wsdl/deploy.wsdl
Transmitting file data ..
Committed revision 745283.


> DeploymentService Response and WSDL are invalid
> -----------------------------------------------
>
>                 Key: ODE-517
>                 URL: https://issues.apache.org/jira/browse/ODE-517
>             Project: ODE
>          Issue Type: Bug
>          Components: Deployment
>    Affects Versions: 1.3
>            Reporter: Colin
>             Fix For: 1.3
>
>         Attachments: wsdl-listDeployedPackages.patch
>
>
> http://svn.apache.org/repos/asf/ode/branches/APACHE_ODE_1.X at revision 744870.
> Related bugs:
> https://issues.apache.org/jira/browse/ODE-348
> https://issues.apache.org/jira/browse/ODE-399
> Use SOAPUI to invoke webmethod listDeployedPackages on the ode/processes/DeploymentService.
> An invalid response is received.  Also the WSDL is incorrect because the schema type 'packageNames' declares one element 'name'; missing attribute maxOccurrs="unbounded"
> Soap Request:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pmap="http://www.apache.org/ode/pmapi">
>    <soapenv:Header/>
>    <soapenv:Body>
>       <pmap:listDeployedPackages/>
>    </soapenv:Body>
> </soapenv:Envelope>
> Invalid Soap Response received:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <deployedPackages>
>          <name>BPEL1</name>
>       </deployedPackages>
>    </soapenv:Body>
> </soapenv:Envelope>
> Missing element 'listDeployedPackagesResponse' before 'deployedPackages'
> Missing namespace declaration on element 'name'.
> Should be:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <pmapi:listDeployedPackagesResponse xmlns:pmapi="http://www.apache.org/ode/pmapi">
>          <deployedPackages>
>             <axis2ns2:name xmlns:axis2ns2="http://www.apache.org/ode/deployapi">BPEL1</axis2ns2:name>
>          </deployedPackages>
>       </pmapi:listDeployedPackagesResponse>
>    </soapenv:Body>
> </soapenv:Envelope>

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


[jira] Resolved: (ODE-517) DeploymentService Response and WSDL are invalid

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

Alex Boisvert resolved ODE-517.
-------------------------------

    Resolution: Fixed

Also applied to trunk,

boisvert@boog:~/svn/ode/trunk$ svn commit -m "ODE-517: DeploymentService Response and WSDL are invalid" 
Sending        axis2/src/main/java/org/apache/ode/axis2/service/DeploymentWebService.java
Sending        axis2/src/main/wsdl/deploy.wsdl
Transmitting file data ..
Committed revision 745284.

Thanks Colin!!

> DeploymentService Response and WSDL are invalid
> -----------------------------------------------
>
>                 Key: ODE-517
>                 URL: https://issues.apache.org/jira/browse/ODE-517
>             Project: ODE
>          Issue Type: Bug
>          Components: Deployment
>    Affects Versions: 1.3
>            Reporter: Colin
>             Fix For: 1.3
>
>         Attachments: wsdl-listDeployedPackages.patch
>
>
> http://svn.apache.org/repos/asf/ode/branches/APACHE_ODE_1.X at revision 744870.
> Related bugs:
> https://issues.apache.org/jira/browse/ODE-348
> https://issues.apache.org/jira/browse/ODE-399
> Use SOAPUI to invoke webmethod listDeployedPackages on the ode/processes/DeploymentService.
> An invalid response is received.  Also the WSDL is incorrect because the schema type 'packageNames' declares one element 'name'; missing attribute maxOccurrs="unbounded"
> Soap Request:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pmap="http://www.apache.org/ode/pmapi">
>    <soapenv:Header/>
>    <soapenv:Body>
>       <pmap:listDeployedPackages/>
>    </soapenv:Body>
> </soapenv:Envelope>
> Invalid Soap Response received:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <deployedPackages>
>          <name>BPEL1</name>
>       </deployedPackages>
>    </soapenv:Body>
> </soapenv:Envelope>
> Missing element 'listDeployedPackagesResponse' before 'deployedPackages'
> Missing namespace declaration on element 'name'.
> Should be:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <pmapi:listDeployedPackagesResponse xmlns:pmapi="http://www.apache.org/ode/pmapi">
>          <deployedPackages>
>             <axis2ns2:name xmlns:axis2ns2="http://www.apache.org/ode/deployapi">BPEL1</axis2ns2:name>
>          </deployedPackages>
>       </pmapi:listDeployedPackagesResponse>
>    </soapenv:Body>
> </soapenv:Envelope>

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


[jira] Reopened: (ODE-517) DeploymentService Response and WSDL are invalid

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

Alexis Midon reopened ODE-517:
------------------------------

      Assignee: Alexis Midon

listDeployedPackages is not the only invalid operation with invalid response. Deploy Response for instance is also invalid. Namespaces are missing.

I reopen this bug to make sure we double check all operations.

> DeploymentService Response and WSDL are invalid
> -----------------------------------------------
>
>                 Key: ODE-517
>                 URL: https://issues.apache.org/jira/browse/ODE-517
>             Project: ODE
>          Issue Type: Bug
>          Components: Deployment
>    Affects Versions: 1.3
>            Reporter: Colin
>            Assignee: Alexis Midon
>             Fix For: 1.3
>
>         Attachments: wsdl-listDeployedPackages.patch
>
>
> http://svn.apache.org/repos/asf/ode/branches/APACHE_ODE_1.X at revision 744870.
> Related bugs:
> https://issues.apache.org/jira/browse/ODE-348
> https://issues.apache.org/jira/browse/ODE-399
> Use SOAPUI to invoke webmethod listDeployedPackages on the ode/processes/DeploymentService.
> An invalid response is received.  Also the WSDL is incorrect because the schema type 'packageNames' declares one element 'name'; missing attribute maxOccurrs="unbounded"
> Soap Request:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pmap="http://www.apache.org/ode/pmapi">
>    <soapenv:Header/>
>    <soapenv:Body>
>       <pmap:listDeployedPackages/>
>    </soapenv:Body>
> </soapenv:Envelope>
> Invalid Soap Response received:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <deployedPackages>
>          <name>BPEL1</name>
>       </deployedPackages>
>    </soapenv:Body>
> </soapenv:Envelope>
> Missing element 'listDeployedPackagesResponse' before 'deployedPackages'
> Missing namespace declaration on element 'name'.
> Should be:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <pmapi:listDeployedPackagesResponse xmlns:pmapi="http://www.apache.org/ode/pmapi">
>          <deployedPackages>
>             <axis2ns2:name xmlns:axis2ns2="http://www.apache.org/ode/deployapi">BPEL1</axis2ns2:name>
>          </deployedPackages>
>       </pmapi:listDeployedPackagesResponse>
>    </soapenv:Body>
> </soapenv:Envelope>

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


[jira] Commented: (ODE-517) DeploymentService Response and WSDL are invalid

Posted by "Alexis Midon (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ODE-517?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12676115#action_12676115 ] 

Alexis Midon commented on ODE-517:
----------------------------------

Thanks for the patch Colin. It did brake a test case but the fix was easy.
Keep the contributions coming!

r747193

> DeploymentService Response and WSDL are invalid
> -----------------------------------------------
>
>                 Key: ODE-517
>                 URL: https://issues.apache.org/jira/browse/ODE-517
>             Project: ODE
>          Issue Type: Bug
>          Components: Deployment
>    Affects Versions: 1.3
>            Reporter: Colin
>            Assignee: Alexis Midon
>             Fix For: 1.3
>
>         Attachments: wsdl-listDeployedPackages.patch, wsdl.patch
>
>
> http://svn.apache.org/repos/asf/ode/branches/APACHE_ODE_1.X at revision 744870.
> Related bugs:
> https://issues.apache.org/jira/browse/ODE-348
> https://issues.apache.org/jira/browse/ODE-399
> Use SOAPUI to invoke webmethod listDeployedPackages on the ode/processes/DeploymentService.
> An invalid response is received.  Also the WSDL is incorrect because the schema type 'packageNames' declares one element 'name'; missing attribute maxOccurrs="unbounded"
> Soap Request:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pmap="http://www.apache.org/ode/pmapi">
>    <soapenv:Header/>
>    <soapenv:Body>
>       <pmap:listDeployedPackages/>
>    </soapenv:Body>
> </soapenv:Envelope>
> Invalid Soap Response received:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <deployedPackages>
>          <name>BPEL1</name>
>       </deployedPackages>
>    </soapenv:Body>
> </soapenv:Envelope>
> Missing element 'listDeployedPackagesResponse' before 'deployedPackages'
> Missing namespace declaration on element 'name'.
> Should be:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <pmapi:listDeployedPackagesResponse xmlns:pmapi="http://www.apache.org/ode/pmapi">
>          <deployedPackages>
>             <axis2ns2:name xmlns:axis2ns2="http://www.apache.org/ode/deployapi">BPEL1</axis2ns2:name>
>          </deployedPackages>
>       </pmapi:listDeployedPackagesResponse>
>    </soapenv:Body>
> </soapenv:Envelope>

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


[jira] Updated: (ODE-517) DeploymentService Response and WSDL are invalid

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

Colin updated ODE-517:
----------------------

    Attachment: wsdl.patch

Fixed all other operations and checked that the responses were valid.

> DeploymentService Response and WSDL are invalid
> -----------------------------------------------
>
>                 Key: ODE-517
>                 URL: https://issues.apache.org/jira/browse/ODE-517
>             Project: ODE
>          Issue Type: Bug
>          Components: Deployment
>    Affects Versions: 1.3
>            Reporter: Colin
>            Assignee: Alexis Midon
>             Fix For: 1.3
>
>         Attachments: wsdl-listDeployedPackages.patch, wsdl.patch
>
>
> http://svn.apache.org/repos/asf/ode/branches/APACHE_ODE_1.X at revision 744870.
> Related bugs:
> https://issues.apache.org/jira/browse/ODE-348
> https://issues.apache.org/jira/browse/ODE-399
> Use SOAPUI to invoke webmethod listDeployedPackages on the ode/processes/DeploymentService.
> An invalid response is received.  Also the WSDL is incorrect because the schema type 'packageNames' declares one element 'name'; missing attribute maxOccurrs="unbounded"
> Soap Request:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pmap="http://www.apache.org/ode/pmapi">
>    <soapenv:Header/>
>    <soapenv:Body>
>       <pmap:listDeployedPackages/>
>    </soapenv:Body>
> </soapenv:Envelope>
> Invalid Soap Response received:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <deployedPackages>
>          <name>BPEL1</name>
>       </deployedPackages>
>    </soapenv:Body>
> </soapenv:Envelope>
> Missing element 'listDeployedPackagesResponse' before 'deployedPackages'
> Missing namespace declaration on element 'name'.
> Should be:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <pmapi:listDeployedPackagesResponse xmlns:pmapi="http://www.apache.org/ode/pmapi">
>          <deployedPackages>
>             <axis2ns2:name xmlns:axis2ns2="http://www.apache.org/ode/deployapi">BPEL1</axis2ns2:name>
>          </deployedPackages>
>       </pmapi:listDeployedPackagesResponse>
>    </soapenv:Body>
> </soapenv:Envelope>

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


[jira] Resolved: (ODE-517) DeploymentService Response and WSDL are invalid

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

Alexis Midon resolved ODE-517.
------------------------------

       Resolution: Fixed
    Fix Version/s: 2.0

comitted in trunk r747932

> DeploymentService Response and WSDL are invalid
> -----------------------------------------------
>
>                 Key: ODE-517
>                 URL: https://issues.apache.org/jira/browse/ODE-517
>             Project: ODE
>          Issue Type: Bug
>          Components: Deployment
>    Affects Versions: 1.3
>            Reporter: Colin
>            Assignee: Alexis Midon
>             Fix For: 1.3, 2.0
>
>         Attachments: wsdl-listDeployedPackages.patch, wsdl.patch
>
>
> http://svn.apache.org/repos/asf/ode/branches/APACHE_ODE_1.X at revision 744870.
> Related bugs:
> https://issues.apache.org/jira/browse/ODE-348
> https://issues.apache.org/jira/browse/ODE-399
> Use SOAPUI to invoke webmethod listDeployedPackages on the ode/processes/DeploymentService.
> An invalid response is received.  Also the WSDL is incorrect because the schema type 'packageNames' declares one element 'name'; missing attribute maxOccurrs="unbounded"
> Soap Request:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pmap="http://www.apache.org/ode/pmapi">
>    <soapenv:Header/>
>    <soapenv:Body>
>       <pmap:listDeployedPackages/>
>    </soapenv:Body>
> </soapenv:Envelope>
> Invalid Soap Response received:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <deployedPackages>
>          <name>BPEL1</name>
>       </deployedPackages>
>    </soapenv:Body>
> </soapenv:Envelope>
> Missing element 'listDeployedPackagesResponse' before 'deployedPackages'
> Missing namespace declaration on element 'name'.
> Should be:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <pmapi:listDeployedPackagesResponse xmlns:pmapi="http://www.apache.org/ode/pmapi">
>          <deployedPackages>
>             <axis2ns2:name xmlns:axis2ns2="http://www.apache.org/ode/deployapi">BPEL1</axis2ns2:name>
>          </deployedPackages>
>       </pmapi:listDeployedPackagesResponse>
>    </soapenv:Body>
> </soapenv:Envelope>

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


[jira] Updated: (ODE-517) DeploymentService Response and WSDL are invalid

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

Colin updated ODE-517:
----------------------

    Attachment: wsdl-listDeployedPackages.patch

Patch attached to fix WSDL and Response.

> DeploymentService Response and WSDL are invalid
> -----------------------------------------------
>
>                 Key: ODE-517
>                 URL: https://issues.apache.org/jira/browse/ODE-517
>             Project: ODE
>          Issue Type: Bug
>          Components: Deployment
>    Affects Versions: 1.3
>            Reporter: Colin
>             Fix For: 1.3
>
>         Attachments: wsdl-listDeployedPackages.patch
>
>
> http://svn.apache.org/repos/asf/ode/branches/APACHE_ODE_1.X at revision 744870.
> Related bugs:
> https://issues.apache.org/jira/browse/ODE-348
> https://issues.apache.org/jira/browse/ODE-399
> Use SOAPUI to invoke webmethod listDeployedPackages on the ode/processes/DeploymentService.
> An invalid response is received.  Also the WSDL is incorrect because the schema type 'packageNames' declares one element 'name'; missing attribute maxOccurrs="unbounded"
> Soap Request:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pmap="http://www.apache.org/ode/pmapi">
>    <soapenv:Header/>
>    <soapenv:Body>
>       <pmap:listDeployedPackages/>
>    </soapenv:Body>
> </soapenv:Envelope>
> Invalid Soap Response received:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <deployedPackages>
>          <name>BPEL1</name>
>       </deployedPackages>
>    </soapenv:Body>
> </soapenv:Envelope>
> Missing element 'listDeployedPackagesResponse' before 'deployedPackages'
> Missing namespace declaration on element 'name'.
> Should be:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <pmapi:listDeployedPackagesResponse xmlns:pmapi="http://www.apache.org/ode/pmapi">
>          <deployedPackages>
>             <axis2ns2:name xmlns:axis2ns2="http://www.apache.org/ode/deployapi">BPEL1</axis2ns2:name>
>          </deployedPackages>
>       </pmapi:listDeployedPackagesResponse>
>    </soapenv:Body>
> </soapenv:Envelope>

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


[jira] Work started: (ODE-517) DeploymentService Response and WSDL are invalid

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

Work on ODE-517 started by Alexis Midon.

> DeploymentService Response and WSDL are invalid
> -----------------------------------------------
>
>                 Key: ODE-517
>                 URL: https://issues.apache.org/jira/browse/ODE-517
>             Project: ODE
>          Issue Type: Bug
>          Components: Deployment
>    Affects Versions: 1.3
>            Reporter: Colin
>            Assignee: Alexis Midon
>             Fix For: 1.3
>
>         Attachments: wsdl-listDeployedPackages.patch, wsdl.patch
>
>
> http://svn.apache.org/repos/asf/ode/branches/APACHE_ODE_1.X at revision 744870.
> Related bugs:
> https://issues.apache.org/jira/browse/ODE-348
> https://issues.apache.org/jira/browse/ODE-399
> Use SOAPUI to invoke webmethod listDeployedPackages on the ode/processes/DeploymentService.
> An invalid response is received.  Also the WSDL is incorrect because the schema type 'packageNames' declares one element 'name'; missing attribute maxOccurrs="unbounded"
> Soap Request:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pmap="http://www.apache.org/ode/pmapi">
>    <soapenv:Header/>
>    <soapenv:Body>
>       <pmap:listDeployedPackages/>
>    </soapenv:Body>
> </soapenv:Envelope>
> Invalid Soap Response received:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <deployedPackages>
>          <name>BPEL1</name>
>       </deployedPackages>
>    </soapenv:Body>
> </soapenv:Envelope>
> Missing element 'listDeployedPackagesResponse' before 'deployedPackages'
> Missing namespace declaration on element 'name'.
> Should be:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <pmapi:listDeployedPackagesResponse xmlns:pmapi="http://www.apache.org/ode/pmapi">
>          <deployedPackages>
>             <axis2ns2:name xmlns:axis2ns2="http://www.apache.org/ode/deployapi">BPEL1</axis2ns2:name>
>          </deployedPackages>
>       </pmapi:listDeployedPackagesResponse>
>    </soapenv:Body>
> </soapenv:Envelope>

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