Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Array of strings in BPEL

779252Jul 28 2011 — edited Jul 28 2011
hi 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.....
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 25 2011
Added on Jul 28 2011
4 comments
441 views