macromedia flash flash remoting:
After I run the CF MX Updater, my Flash appplication is stopped working. Then I
found this instruction(below) from the website to enable it.
Access from Macromedia Flash to web services using the Flash Gateway is
disabled by default in Updater 3. To enable access from Macromedia Flash to web
services add the following DISABLE_CFWS_ADAPTERS Servlet init-param entry to
the FlashGatewayServlet entry in the web.xml file that is contained in the
flashgateway.ear archive.
<init-param>
< param-name>DISABLE_CFWS_ADAPTERS</param-name>
< param-value>false</param-value>
< description>When set to true, this setting disables the ColdFusion
WebServices Adapters in the gateway.</description>
< /init-param>
Here is what the entry look like after I added it to the
C:\CFusionMX\wwwroot\WEB-INF\web.xml file:
<servlet>
<servlet-name>FlashGateway</servlet-name>
<servlet-class>flashgateway.controller.GatewayServlet</servlet-class>
<display-name>Flash Gateway</display-name>
<description>Allows flash to connect to CFML and CFC
templates.</description>
<init-param>
< param-name>DISABLE_CFWS_ADAPTERS</param-name>
< param-value>false</param-value>
< description>When set to true, this setting disables the ColdFusion
WebServices Adapters in the gateway.</description>
< /init-param>
</servlet>
But the Flash application is still not working.
Does anyone know why?
It mentions the flashgateway.ear file, but I coundn't find such a file that
contains a web.xml.
Thanks