Actually Ryan - I think Flash Remoting is turned on by default in
CFMX
6.1, but not for Web Services Access.
>From the MM site -
URL -
http://www.macromedia.com/support/coldfusion/j2ee/cfmxj2ee_enabling.html:
By
default, Flash Remoting cannot access ColdFusion MX 6.1 through
web
services, so you must manually enable Flash Remoting.
To enable
Flash Remoting to access ColdFusion MX 6.1 through
web
services:
Open the cf_root/WEB-INF/web.xml file in a text
editor.
Locate the servlet definition for FlashGateway and change
the
DISABLE_CFWS_ADAPTERS init-param from true to false, as follows:
<servlet>
<servlet-name>FlashGateway</servlet-name>
...
<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>
Save the file.
Another
URL with this info:
http://livedocs.macromedia.com/coldfusion/6.1/ibmdocs/using7.htmJim
T. Pickering