I'm working on writing a Webservice in MX 7. I have an argument defined as input type XML. If I use the function isXML, isXMLDoc, or any of the other isXML functions on the argument, they return false. If I use isObject, it returns true. Any idea on how to process the passed argument as an XML object?
Right now, for testing, I'm using
<cfset xmObj = getSOAPRequest()>
<cfset xmarg = xmobj.xmlroot..xmlChildren
[1].xmlChi
ldren[1].x
mlChildren
[1]>
To get down to the level that I want to start processing.
I'd like to not do that and just have the argument BE and xml object. Any ideas?
Start Free Trial