Remoting Issue, Flex2 and CFMX 7.0.2

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

  1. #1

    Default Remoting Issue, Flex2 and CFMX 7.0.2

    I'm having a remoting issue with Flex2 and ColdFusion. What I have is to
    seperate sites on a single server, both of which are using remoting to access a
    cfc. Each site has it's own copy of the CFC, located at the same path
    (/webservice/flex/<componentName>.cfc), therefore, each site is using the same
    path to access the cfc (webservice.flex.<componentName>).

    The problem I am having is that the physical path to the CFC seems to be
    cached. So for exampled, if site a accesses the CFC, the file at
    C:\Inetpub\wwwroot\<sitea>\webservice\flex\<compon entName>.cfc is access. When
    Site B attempts to access it's copy of the CFC, it seems that CF (I'm assuming
    this problem is occurring in CF) sees the path
    "webservice.flex.<componentName>", which it has alredy served, and uses the
    same physical path as before, when now it should be
    C:\Inetpub\wwwroot\<siteb>\webservice\flex\<compon entName>.cfc. I'm wondering
    if anyone else has encountered this caching of path before, and if so, if
    anyone knows how to prevent it from happening.

    Thanks.

    Ryan McIlmoyl


    ot53 Guest

  2. Similar Questions and Discussions

    1. CFMX + RHEL 4 + Flash Remoting
      Hello All, I'm trying get flash remoting to work on a linux box. Has anyone had success with flash remoting under a linux environment? I had...
    2. Flash Remoting & CFMX 7
      I am killing myself trying to get the Flash Remoting working with Coldfusion MX 7 to work. From what I understand, CFMX7 comes with Flash Remoting...
    3. CFMX 7 flash remoting did not work!
      Hi, i use windows 2003 with IIS 6 and CFMX 7 standard. Since i installed CFMX 7 standard flashremoting did not work! I read about to edit the...
    4. Flash Remoting with CFMX on JRun4
      Hello all, I'm having trouble getting Flash Remoting working with CFMX 7 running on JRun4. When I try to load...
    5. CFMX 7 Flash remoting is not working.
      On CFMX 7 J2EE, We cannot get flash remoting to run. Whenever we run http://xxx.xxx.xxx.xxx/flashservices/gateway we get a 404 error in IIS. On...
  3. #2

    Default Re: Remoting Issue, Flex2 and CFMX 7.0.2

    More information, it seems this information is being held in memory by
    ColdFusion. After restarting the ColdFusion application server, this 'cache'
    seems to be reset, and the path 'webservice.flex.<componentName>' will map to
    the physical location of the next site to make a request.

    ot53 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