I would like to expose a process model as a webservice that would consume messag

I would like to expose a process model as a webservice that would consume messages with the following structure:

<firmId>integer</firmId>
<firmName>text</firmName>
<firmContacts>
<firmContact>
<firstName>text</firstName>
<lastName>text</lastName>
</firmContact>
<firmContact>
<firstName>text</firstName>
<lastName>text</lastName>
</firmContact>
</firmContacts>

where there are 1 or more firmContact elements.

Is it possible to setup the parameters on a process model to accept something like this? If not, what is the best workaround? I'm considering doing something like concatenating firstName and lastName in the xml and then splitting them apart later, like this:

<firmContacts>
<value>firstName#lastName</value>
<value>firstName#lastName</value>
</firmContacts>

Anyone have a better approach? ...

OriginalPostID-99993

OriginalPostID-99993

  Discussion posts and replies are publicly visible