Your issue here is the way you're parsing the xml file.
It's hard to tell where exacly since you did not provide xml file nor the code you're using to parse it.
Here is a sample of the xml parse you can look at:
Code:
<cfscript>
myxmldoc = XMLParse(response.filecontent);
outXml = '';
selectedElements2 = XmlSearch(myxmldoc, "/response/body/subresponse/serviceavailabilityresponse/availabilityresult/qualifiedservices/dslservice");
for (i = 1; i LTE ArrayLen(selectedElements2); i = i + 1)
outXml = (outXml & ',' & selectedElements2[i].servicebrandname.XmlText );
</cfscript>
oh and yeah here's how you capture the xml response:
Code:
<cfhttp result="response" url="https://xapi-test.covad.com/servlet/MainVCAServlet" method="post" >
<cfhttpparam name="request" type="xml" value="#TRIM(xmlRequest)#">
</cfhttp>
<cfdump var="#XMLParse(response.filecontent)#">
<cfset myXml = #XMLParse(response.filecontent)# />
Bookmarks