Defining Web Service Parameters

BobbyB

New Member
I have to create a Progress Web Service that will allow a request like the following to be submitted.

<ReasonCode>56</ReasonCode>
<Job>
<Id>12345</Id>
<ExternalReference1>ABC123</ExternalReference1>​
</Job>
<JobDone>true</JobDone>
<StatusCode>1</StatusCode>
<Action>4</Action>


My big problem is the "<Job>" tag.
I can create input parameter fields in a program for all the elements and then use the proxygen to expose this program as a web service. However I have no idea how I would create a web service that includes the "<Job>" tag. Using one input string for all the XML request is not an option as we need to be able to test the web service via SOAP UI and so need to see the individual fields.
Any help greatly appreciated.
Thanks
 
Back
Top