I have not found a method that will parse the uniquely labeled namespaces that my below SPML response contains.
The intent is to retrieve an array filled with attribute 'name' and 'value'.
Thank you in advance!
EX)
<dsml:attr name='que2'>
<dsml:value>systemProvidedQuestionText?</dsml:value>
</dsml:attr>
name: que2 value: systemProvidedQuestionText?
RECIEVED XML
<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV='http://schemas.xmlsoap.org/soap/envelope/'>
<SOAP-ENV:Body>
<spml:searchResponse xmlns:spml='urn:oasis:names:tc:SPML:1:0' xmlns:dsml='urn:oasis:names:tc:DSML:2:0:core' result='urn:oasis:names:tc:SPML:1:0#success'>
<spml:operationalAttributes>
<dsml:attr name='session'>
<dsml:value>J/twt43t35pA==</dsml:value>
</dsml:attr>
</spml:operationalAttributes>
<spml:searchResultEntry>
<spml:identifier type='urn:oasis:names:tc:SPML:1:0#GenericString'>
<spml:id>USER1</spml:id>
</spml:identifier>
<spml:attributes>
<dsml:attr name='que2'>
<dsml:value>systemProvidedQuestionText?</dsml:value>
</dsml:attr>
<dsml:attr name='ans1'>
<dsml:value>userProvidedAnswer</dsml:value>
</dsml:attr>
<dsml:attr name='que1'>
<dsml:value>systemProvidedQuestionText?</dsml:value>
</dsml:attr>
<dsml:attr name='ans2'>
<dsml:value>userProvidedAnswer</dsml:value>
</dsml:attr>
</spml:attributes>
</spml:searchResultEntry>
</spml:searchResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
SOAPClientwith a wsdl? If so: can we see the wsdl? If not: hundreds of answers on SO with examples how to deal with XML & namespaces... – Wrikken Jan 27 at 1:14