> Hi, > > I am writing a handler that has to process the body of the SOAP. In the > SOAP body is a serialized Vector of Vectors. like this: > > <ns1:getConceptChildrenVectoredResponse .....> > <getConceptChildrenVectoredReturn href="#id0"/> > </ns1:getConceptChildrenVectoredResponse> > <multiRef id="id0" ..... xsi:type="ns2:Vector" .....> > <item href="#id1"/> > <item href="#id2"/> > <item href="#id3"/> > </multiRef> > <multiRef id="id1" ..... xsi:type="ns3:Vector" .....> > <item xsitype="xsd:string">value1</item> > <item xsitype="xsd:string">value2</item> > <item xsitype="xsd:string">value3</item> > </multiRef> > <multiRef id="id2" ..... xsi:type="ns4:Vector" .....> > <item xsitype="xsd:string">value1</item> > <item xsitype="xsd:string">value2</item> > <item xsitype="xsd:string">value3</item> > </multiRef> > <multiRef id="id3" ..... xsi:type="ns5:Vector" .....> > <item xsitype="xsd:string">value1</item> > <item xsitype="xsd:string">value2</item> > <item xsitype="xsd:string">value3</item> > </multiRef> > > How can I walk through this structure using the href id's ? Or where can I > find how to do this. > > > m.vr.gr. > > Bob Lindeman > >
