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.htm Jim T. Pickering -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, February 05, 2004 12:17 PM To: [EMAIL PROTECTED] Subject: RE: [KCFusion] Remoting >> I'm I going to have to pop open another port to get remoting to do >> its thing? I don't believe you need to open a new port through your firewall, I think AMF uses port 80 like your web browser (but not positive). However, you will need to tell CFMX that you want to use remoting. As of Updater 3 for 6.0 and all of 6.1, the remoting is turned off by default. You will need to find your web.xml file in the C:\cfusionmx folder and find the 'flash services gateway' section and change the false to true. It is in XML but should be readable. Macromedia has information on this on their website if you need it. Ryan ========================================================= Kansas City ColdFusion User Group's website & listserv is hosted through the generous support of Clickdoug.com To send email to the list, email [EMAIL PROTECTED] To subscribe or unsubscribe, send an email to [EMAIL PROTECTED] with your request. For hosting solutions http://www.clickdoug.com Featuring Win2003 Enterprise, RedHat Linux, CFMX 6.1. ====================================================== ========================================================= Kansas City ColdFusion User Group's website & listserv is hosted through the generous support of Clickdoug.com To send email to the list, email [EMAIL PROTECTED] To subscribe or unsubscribe, send an email to [EMAIL PROTECTED] with your request. For hosting solutions http://www.clickdoug.com Featuring Win2003 Enterprise, RedHat Linux, CFMX 6.1. ======================================================
