For the moment I'm tring ksoap2 but would like to use whatever the standard method is in the industry. I can access the 'Simple sample' (below) and write the values such as 'Frank' to the log using ksoap2 no problem, but the Complex Sample (below) has me stumped. I've seen lots of samples showing what I call 'Single level' xml but none that traverse down to 2 or more levels like the Complex Sample.
Any help?
---Simple Sample ---------------------------------------
<Category xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org /2001/XMLSchema-instance" xmlns="http://ACCUMobileWS.org/">
<CategoryId>99</CategoryId>
<Name>Frank</Name>
<Description>Prison Break</Description>
</Category>
<Category>
-------Complex Sample------------------------------------------
<SuperCategory xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ACCUMobileWS.org/">
<Categories>
<Category>
<CategoryId>99</CategoryId>
<Name>Frank</Name>
<Description>Prison Break</Description>
</Category>
<Category>
<CategoryId>101</CategoryId>
<Name>Jim</Name>
<Description>Breakig Bad</Description>
</Category>
</Categories>
</SuperCategory>
The problem is geting into 2nd level i.e. the array of 'Category'