CI Web Service - Nested Elements
Hello,
I have a custom web service with most fields at level 0. I have one scroll level based on a view that displays emergency contact information.
When I test the component interface in App. Designer, it looks fine. When I call the web service from SoapUI, I get all of the data, but the scroll area data doesn't render as expected.
I expect something like this:
<EMPLID></EMPLID>
<EMERGENCY_CONTACTS>
<EMERGENCY_CONTACTS 1>
<NAME></NAME>
<ADDRESS></ADDRESS>
</EMERGENCY_CONTACTS 1>
<EMERGENCY_CONTACTS 2>
<NAME></NAME>
<ADDRESS></ADDRESS>
</EMERGENCY_CONTACTS 2>
</EMERGENCY_CONTACTS>
But I get this:
<EMPLID></EMPLID>
<EMERGENCY_CONTACTS >
<NAME></NAME>
<ADDRESS></ADDRESS>