SoXML is just a CF wrapper around MSXML...
----- Original Message ----- From: "Stephenie Hamilton" <[EMAIL PROTECTED]> To: "CF-Community" <[EMAIL PROTECTED]> Sent: Tuesday, June 11, 2002 9:27 AM Subject: RE: Loadxml error (tech help needed) > Thanks, I will give that a try.... > The soxml tag from site objects is giving me that same error...so I > wasn't sure if it was something with the server or code... > > ~~ > Stephenie Hamilton > > > > > -----Original Message----- > From: Jon Hall [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 10, 2002 6:40 PM > To: CF-Community > Subject: Re: Loadxml error (tech help needed) > > > Try assigning the loadXML return code to a variable, it returns a > boolean success, and double check that strXML is not null. If for some > reason strXML is null, CF is going to start having fits... > > writeOutput(strXML); > success = xmlDoc.loadXML(strXML); > writeOutput(success); > > The case of the strxml variable in the first line may be a problem as > well. Try making it consistent. > > <rant status="deleted"> > I was going to rant about cfhttp more in this space but I will spare you > :) </rant> > > jon > ----- Original Message ----- > From: "Stephenie Hamilton" <[EMAIL PROTECTED]> > To: "CF-Community" <[EMAIL PROTECTED]> > Sent: Monday, June 10, 2002 5:53 PM > Subject: Loadxml error (tech help needed) > > > > Unable to resolve this varaible using provided runtime information. > > > > Error building an argument list for: LOADXML > > > > > > Anybody have a clue what this means or how I get it to go away and > > load properly? I get this if I try to use soxml tag (to convert xml > > response to cf structure) or even if I use cfscript to do this: > > > > strxml = objXMLHTTP.responseXML; > > xmlDoc = CreateObject("Msxml2.DOMDocument"); > > xmlDoc.async = false; > > //load the XML data return from verisign into the DOMDocument object > > xmlDoc.loadXML(strXML); > > > > <banging head against wall!> > > > > > > ~~ > > Stephenie Hamilton > > Macromedia Certified ColdFusion Professional > > > > > > > > ______________________________________________________________________ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
