Hey Matt,

If you're using CFMX 6.1, I'd dump SoXML and go straight to the native
XML capabilities.  It'd look like this:

<cfset variables.thisxml="<?xml version=""1.0"" encoding=""UTF-8""?>
<ww_javagame> <ww_cpid>0425070052843</ww_cpid>
<ww_statuscode>2001</ww_statuscode><ww_statusmsg>woo
hoo</ww_statusmsg> </ww_javagame>">

<!--- Replace this 
<cf_SOXML
       action="XML2CF"
       input="#variables.thisxml#"
       output="myXML">
--->

<!--- With this: --->
<cfset myXml = xmlParse(myXML) />

<!--- This'll work, and give you clues as to how to access things --->
<cfdump var="#myxml#" label="myXML">

<!--- Show a value --->
<cfoutput>
  #myXml.xmlRoot.ww_cpid.xmlText#
</cfoutput>

Hope that helps.  I would, as you pointed out later in this thread,
RTFM (and I mean it kindly! :) )

-Joe


-- 
Get Glued!
The Model-Glue ColdFusion Framework
http://www.model-glue.com

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:204418
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to