Array of strings in BPEL
779252Jul 28 2011 — edited Jul 28 2011hi everyone
i have one variable and another variable which is array of strings.this is my inputrequest to BPEL
<element name="createRequest">
<complexType>
<sequence>
<element name="input" type="string"/>
<element name="aostrs" type="client:ArrayOfString"/>
</sequence>
</complexType>
</element>
In MY BPEL i will call a BPEL PRocess using the variable input.i will get a reponse from the BPEL process
like
<Response>
<Return>ETE23TFD</Return>
</Response>
now i need to call another BPEL with attrval and Return(ie response from BPEL)
but i need to pass Return along with array of strings like below xml
<aostrs>
<string>customer</string>
<string>ETE23TFD</string>
<string>group</string>
<string>B79AAF63D870F845980AB3B95DA87692</string>
<string>severity</string>
<string>2</string>
</aostrs>
can you guys help me out how top pass variable of string along with array of strings.....