I am new to asp and have a deadline in the next few days. I get the following xml from web service response.
print("<?xml version="1.0" encoding="UTF-8"?>
<user_data>
<execution_status>0</execution_status>
<row_count>1</row_count>
<txn_id>stuetd678</txn_id>
<person_info>
<attribute name="firstname">john</attribute>
<attribute name="lastname">doe</attribute>
<attribute name="emailaddress">john.doe@johnmail.com</attribute>
</person_info>
</user_data>");
How can I parse this xml in asp attributes?
Any help is appreciated
Thanks Damien
With further analysis, some soap elements are also returned, since the aboce response comes from a web service call. can i still use the lukes code below?
source
share