Flex Remoting Error : Channel Disconnected

Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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. ...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default Re: Flex Remoting Error : Channel Disconnected

    Same problem here

    Karzons Guest

  6. #5

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139