I have just a sample _javascript_,
var xmlDoc='<?xml version="1.0" encoding="iso-8859-1"?><cf>Coldfusion</cf>';
var xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlHttp.open("POST", "index.cfm?fuseaction=agentsmith.return_wp_list", false);
xmlHttp.send(xmlDoc);
the url is targeting a circuit within a fbx 3 app, it works fine in that
the circuit is getting called, however I trying to do a dump of some kind to see if the xml has been sent. Because the browser does not reload I am just mailing myself from within the circuit, a and doing a dump of serveral types of cgi variables but can't see any xml.
<cfcase value="return_wp_list">
<cfmail to="me" from="me" subject="xml" type="html"><cfdump var="[TYPE]"></cfmail>
</cfcase>
I assume I would need to load the xml into an object of some description in order to traverse server side, although have not done so using cf, only _javascript_ and java.
But I thought it would be possible to do a quick dump first to see if the xml is there before working out how to do it in cf and then releasing that there was some fault _javascript_ end later down the line.
any ideas out there?
Thanks J.
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

