Need help

admin

Administrator
Staff member
Hello all,I start out with the following struct that I load into a DOM:<?xml version="1.0"?><SOAP:Envelope xmlns:SOAP="urn:schemas-xmlsoap-org:soap:v1" xmlns:m="my-name-space"><SOAP:Body><m:order><quantity>100</quantity><item>Blue Whales</item><description>They are Blue</description></m:order></SOAP:Body></SOAP:Envelope>I then pass the DOM to a function that adds to the structure so that it lookslike the following:<?xml version="1.0"?><SOAP:Envelope xmlns:SOAP="urn:schemas-xmlsoap-org:soap:v1" xmlns:m="my-name-space"><SOAP:Body><m:order><quantity>100</quantity><item>Blue Whales</item><description>They are Blue</description></m:order><m:parameters><param>Something</param></m:parameters></SOAP:Body></SOAP:Envelope>What vb code do I need to manipulate the DOM so that I get thedesired results?ThanksZack
 
Back
Top