You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ode.apache.org by "René Bos (JIRA)" <ji...@apache.org> on 2007/12/14 15:58:43 UTC

[jira] Commented: (ODE-110) Complex type wrapper element is visible in messages sent by the engine

    [ https://issues.apache.org/jira/browse/ODE-110?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12551820 ] 

René Bos commented on ODE-110:
------------------------------

This bug was already fixed in Ode 1.1. I just made a change in my own webserivce for that.

> Complex type wrapper element is visible in messages sent by the engine
> ----------------------------------------------------------------------
>
>                 Key: ODE-110
>                 URL: https://issues.apache.org/jira/browse/ODE-110
>             Project: ODE
>          Issue Type: Bug
>          Components: BPEL Runtime
>    Affects Versions: 1.0-incubating
>            Reporter: Alex Boisvert
>            Assignee: Maciej Szefler
>             Fix For: 1.3
>
>         Attachments: request.soap, TaskManagerTest.zip
>
>
> Apparently, the complex type wrapper element <xsd-complex-type-wrapper/> is visible in message sent by the engine.
> In this case, we have a message definition:
> <message name="createTaskRequest">
>   <part name="wipart" type="tns:StringArray"/>
> </message>
> with complex type:
> <complexType name="StringArray">
>   <sequence>
>     <element name="item" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
>   </sequence>
> </complexType>
> leading to this response:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>     <soapenv:Header/>
>     <soapenv:Body>
>         <axis2ns8:testItResponse xmlns:axis2ns8="http://ode/bpel/unit-test.wsdl">
>             <wipart>
>                 <xsd-complex-type-wrapper>      <!-- ????? --->
>                     <tm:item xmlns:tm="urn:TaskManager">test1text</tm:item>
>                     <tm:item xmlns:tm="urn:TaskManager">test2text</tm:item>
>                 </xsd-complex-type-wrapper>     <!-- ????? --->
>             </wipart>
>         </axis2ns8:testItResponse>
>     </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.