...unless in your comment about Xpath maybe what you were saying is instead of loading into a Flash XML object:
//this is my guess as to how it would work //after the WSDL was loaded and the call made //(myXML is the SOAP webservice pure XML return) myXML = xmlWebServiceResult; var theXMLObject:XML = new XML(); theXMLObject.load(myXML); XPath.selectNodes(theXMLObject, "the/path/string") I do can just do this as a string instead: myXML = xmlWebServiceResult; XPath.selectNodes(myXML, "the/path/string"); Right? Or no? Maybe XPath *can* take an XML string instead of an XML object. Thanks! Jason _______________________________________________ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com

