Thanks for the response! But I think I didnt fully explain (or maybe I dont understand your response :-) ) But I would like to have the following
Webserver/index.cfm calls a cfc on Appserver/remote.cfc without using a webservice. So for example, on my webserver/index.cfm I have the following code: <!--- webserver index.cfm ---> <cfinvoke webservice="http://appserver/hello.cfc?wsdl" method="sayHello" returnvariable="r"> <cfoutput>#r#</cfoutput> <cfinvoke component="http://appserver/hello.cfc" method="sayHello" returnvariable="r"> <cfoutput>#r#</cfoutput> component doesnt work since it is looking for a filepath yet webservice only takes valid wsdl. What would be the proper format to make use of the flex2gateway ? NetConnection is an actionscript class, is there a java object you could use tucked in the CF objects somewhere? On 8/17/06, Kevin Aebig <[EMAIL PROTECTED]> wrote: > That's exactly what the Flash Gateway in ColdFusion does. If you're using > NetConnection, than the transmission is done with AMF serialization. > > The Webservice class is the one that simply runs by regular means. > > Cheers, > > !k > > -----Original Message----- > From: Rick Schmitty [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 16, 2006 1:27 PM > To: CF-Talk > Subject: 3 Tier and CFC to CFC Remoting > > Is there a way to call a cfc remotely in a n tier setup outside of a > web service? > > Right now you have to invoke a webservice to communicate between your > web server and application server in an n-tier environment. Is there > a way to 'remote' in like you do in Flex using the AMF gateway > serialization for a speed increase? > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:250166 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

