Hi:
 
I am trying to retrieve the following structure from the SOAP body but SOAP returns nulls as parameter lists.  Can somebody help ?
I would appreciate any suggestion on how to extract the stuff from inside body as a string, string[] or anything else.  I would prefer to parse the contents myself, instead of writing deserializers.
 
Thanks,
DJ
 
 
====================================
 
 
HTTP/1.1 200 OK
Content-Type: text/xml; charset="utf-8"
Content-Length: nnnn
 
<SOAP-ENV:Envelope
 xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
 xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
 xmlns:xsd="http://www.w3.org/1999/XMLSchema"
 xmlns:ais="urn:application-interface-service#version-1.0"
 SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
 
    <SOAP-ENV:Header>
    blah-blah-blah
    </SOAP-ENV:Header>
 
    <SOAP-ENV:Body>
   
        <DataSpace>Selection</DataSpace>
        <DataObject>Address</DataObject>
        <Sequence>
            <SequenceItem>
              <DataObject>Address</DataObject>
              <AttributeList>
                    <Name>SI</Name>
                    <Building>Karaportti 2</Building>
                    <POBox>360</POBox>
                    <Street></Street>
                    <Town>Espoo</Town>
                    <City></City>
                    <Region></Region>
                    <AreaCode>FIN-00045</AreaCode>
                    <Country>Finland</Country>
              </AttributeList>
             </SequenceItem>
        <Sequence>
       
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
 
 
 

Reply via email to