Thank you Tracy! On 2/14/2015 10:15 AM, Tracy Pearson wrote:
LOCAL ohttp AS msxml2.serverxmlhttp30 LOCAL xmluri LOCAL oNodeList AS msxml2.IXMLDOMNodeListm.xmluri ="http://www.w3schools.com/xml/cd_catalog.xml" ohttp = CREATEOBJECT("msxml2.serverxmlhttp.3.0") ohttp.OPEN("get", m.xmluri, .F.) ohttp.SEND() IF ohttp.readyState = 4 oNodeList = ohttp.responseXML.selectNodes("CATALOG/CD") ?oNodeList.LENGTH FOR NN = 0 TO oNodeList.LENGTH - 1 ?"Node #",TRANSFORM(NN) ?oNodeList.ITEM[NN].XML NEXT ENDIF
-- Jeff Jeff Johnson [email protected] SanDC, Inc. (623) 582-0323 SMS (602) 717-5476 Fax 623-869-0675 www.san-dc.com www.cremationtracker.com www.agentrelationshipmanager.com
_______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[email protected] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

