Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
ErikMadsen #1
Flex Remoting Error : Channel Disconnected
I set up a simple method in a CFC on my server.
<cfcomponent name="Remoting">
<cffunction name="testConnect" access="remote" returntype="any"
output="false">
<cfreturn true />
</cffunction>
</cfcomponent>
A simple Flex RemoteObject call is throwing an error with te following message:
mx.rpc.remoting.mxml.RemoteObject
"Channel disconnected"
Fault Code: Client.Error.DeliveryInDoubt
Detail: Channel disconnected before an acknowledgment was received
Here is my MXML:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:RemoteObject id="svc" destination="ColdFusion"
source="irovrdev.controller.RemotingService"
endpoint="http://remoting.irovr.com/flex2gateway/" showBusyCursor="true" />
<mx:Button click="svc.testConnect()" />
</mx:Application>
I know it's not a mapping issue, because if I fudge the name of the source to
"foo", I get a valid error from ColdFusion that the component is not found.
ErikMadsen Guest
-
webservice call throws Channel.Security.Error
Hello all, My flex app calls webservices hosted on the same server that hosts the .swf file of the application. Running the app in flex builder... -
CF vs Flash remoting vs Flex
From reading the docs on the products, it's really hard to tell what CF has and what Flex and the flash remoting server would provide over CFMX7. ... -
Flex and Flash Remoting
Hi, Just getting into Flex... Can Flex consume Flash remoting? I ask because we have a lot of code running on Flash remoting (FlashOrb and... -
Could not establish secure channel for SSL/TLS error
I'm connecting to a web service on a (ssl) secure server. I invoke the same webmethod that takes an array of strings as a parameter. If the array is... -
Erratic SSL Error: Could not establish secure channel for SSL/TLS
Hi, I wonder if anyone is experiencing a similar problem. I have a collection of web services that I access from a client over the internet. I... -
veeru_macromedia #2
Re: Flex Remoting Error : Channel Disconnected
I am also getting the same error "Channel disconnected". If you have any answer please post it. I changed IIS timeout to 1 hour , that did not help. it is giving this error every 40 minutes or so...
veeru_macromedia Guest
-
ErikMadsen #3
Re: Flex Remoting Error : Channel Disconnected
Turns out our application.cfc was redirecting based on the http_user_agent. Make sure you are not using a cflocation that might be firing.
ErikMadsen Guest
-
-
Gipoh #5
Re: Flex Remoting Error : Channel Disconnected
Hi ErikMadsen,
I had the same problem with the "channel disconnected". I changed it like you said and now it works.
Thanks,
Guido
Gipoh Guest



Reply With Quote

