Hi Dave, I imagine it is due to using BlueDragon rather than CF7. The code
uses methods in the CFXML object that are inherited from xml java objects
and perhaps BlueDragon is using different classes (the error says it can't
find a method that happens to be an inherited one).
To test this hypothesis, could you run this code and paste the results back
here (I do not have a BlueDragon install)?
<cfscript>
function GetClassHeirarchy(obj)
{
var thisClass = obj.GetClass();
var sReturn = thisClass.GetName();
do{
thisClass = thisClass.GetSuperClass();
sReturn = sReturn & "<br />EXTENDS: #thisClass.GetName()#";
}while(CompareNoCase(thisClass.GetName(), 'java.lang.Object'));
return sReturn;
}
</cfscript>
<cfxml variable="foo"><this><isa>test</isa></this></cfxml>
<cfoutput>#GetClassHeirarchy(foo)#</cfoutput>
--
Blog it up: http://fusion.dominicwatson.co.uk
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w
Archive:
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295406
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4