Hi,
I have a somewhat not that common xml:
<?xml version="1.0" standalone="yes"?>
<InvList>
<Invocation Name="serviceName">
<Param Name="Param1" Type="Date">06/07/2004 07:39: 19.994 GMT</Param>
<Param Name="Param2" Type="Map">
<Field Name="000" Type="complexType">
<Field Name="Text" Type="MessageText">This is a message text</Field>
<Field Name="Kind" Type="Kind">KIND_1</Field>
</Field>
</Param>
</Invocation>
</InvList>
<InvList>
<Invocation Name="serviceName">
<Param Name="Param1" Type="Date">06/07/2004 07:39: 19.994 GMT</Param>
<Param Name="Param2" Type="Map">
<Field Name="000" Type="complexType">
<Field Name="Text" Type="MessageText">This is a message text</Field>
<Field Name="Kind" Type="Kind">KIND_1</Field>
</Field>
</Param>
</Invocation>
</InvList>
I need help in creating the appropriate binding.xml so I can retrieve both Name and Type attributes and the cdata value of the Param element.
As you can see the Param element can be "simple", as in Param1 and a little bit more complex like in Param2.
The same goes also fo Field, which also can create a recursive structure.
Any help will be welcome.
Thanks,
Guy.
