Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [bpel-dev] small question about variable type of receive, reply

Hallo Michael,

Sorry for my bad english. WSDL message's part can be defined with
<part name="nmtoken" element="qname"/>
or
<part name="nmtoken" type="qname"/>

Is the "type" allowed in this situation?
-------------------------------------------------------------------------------------------
    <complexType name="Composite">
...
</complexType>

<message name="PO">
<part name="composite" type="tns:Composite"/>
</message>
vielen Dank.

--- On Mon, 12/7/09, Michael Illiger2 <MILLIGER@xxxxxxxxxx> wrote:

From: Michael Illiger2 <MILLIGER@xxxxxxxxxx>
Subject: Re: [bpel-dev] small question about variable type of receive, reply
To: "BPEL Designer project developer discussions." <bpel-dev@xxxxxxxxxxx>
Cc: bpel-dev@xxxxxxxxxxx, bpel-dev-bounces@xxxxxxxxxxx
Date: Monday, December 7, 2009, 3:31 PM

Hi Joni,

PART is the "message part" from the WSDL specification (http://www.w3.org/TR/wsdl#_message).
ELEMENT is the "element declaration" from the XML schema specification.

It depends on the structure of your WSDL message whether you can used an element-typed variable or not. If your message contains exactly one part that points to an element declaration - you can. Otherwise you can't.

Hope that helps...

Mit freundlichen Grüßen / Kind regards


Back to the top