Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
eddymilner #1
Flash Web Services and Component ?
Hello ! Pleas help me with Web services in Flash . i have this component witch
is basick desgin
<CFCOMPONENT>
<CFFUNCTION NAME="DIRECTORY" ACCESS="REMOTE" RETURNTYPE="QUERY">
<CFDIRECTORY NAME="files" DIRECTORY="C:\" ACTION="LIST">
<CFQUERY DBTYPE="QUERY" NAME="allfiles">
SELECT Name,type
FROM files
</CFQUERY>
<CFRETURN allfiles>
</CFFUNCTION>
</CFCOMPONENT>
I tring to put all directory in Flash array :
import mx.data.components.WebServiceConnector;
var wsconnect:Object = new Object();
wsconnect.result = function(evt:Object) {
var array:Array = new Array(evt.target.results);
trace(array)
}
var an:WebServiceConnector = new WebServiceConnector();
an.addEventListener("result", wsconnect);
an.WSDLURL = "http://localhost:8500/XAPPLICATION/CUSTOMTAG/DIRECTORY.cfc?wsdl";
an.operation = "DIRECTORY";
an.suppressInvalidCalls = true;
an.multipleSimultaneousAllowed = false;
an.params = [""];
an.trigger();
but trace gives me only [object , object] and thas it .. My question is , How
can i put all result to array bi index ?
eddymilner Guest
-
Component services hungs
Hi, Ours is a web based application with three tier architecture. Recently our client has reported a issue described below. Their production... -
Web Services Component
I am new to web services in flash. I am running Flash 8 and am attempting to use the Web Services component. I have defined my web service, bound... -
Web Services and MX 2004 Data Grid Component
Can anyone here please help me. I have a Datagrid component that is been populated by a SQL database using Web Services. The datagrid is... -
Difference - registering dll using regsvr32 and component services
There seems to be two ways that you can register a dll/COM component one using regsvr32 from command prompt, one using component services to add a... -
view process ids without having to go into COM+ (Component Services)
Anyone know how to display process id's (normally found by going to Component Services and switching to applications to 'Status View') in a web...



Reply With Quote

