Just blogged this the other day... congrats for finding it.

It can be a bit tough to figure this one out... kudos.

J


------------------------------------------------
Jared C. Rypka-Hauer
Senior Software Engineer
Alagad - http://www.alagad.com/

Member: Adobe Community Experts - ColdFusion
Certified Advanced ColdFusion Developer


On Nov 19, 2007, at 1:35 PM, Temme, Gary D wrote:

Found the problem - the service-config.xml file had to be modified to allow access to ColdFusion mappings. See <use-mappings>true</use- mappings> was set to false previously.

<destination id="SecureColdFusion">
                <channels>
                    <channel ref="my-secureamf"/>
                </channels>
                <properties>
                    <source>*</source>
<!-- define the resolution rules and access level of the cfc being invoked -->
                    <access>
<!-- Use the ColdFusion mappings to find CFCs, by default only CFC files under your webroot can be found. -->
                        <use-mappings>true</use-mappings>
<!-- allow "public and remote" or just "remote" methods to be invoked --> <method-access-level>remote</method-access- level>
                    </access>

                    <property-case>
                        <!-- cfc property names -->
<force-cfc-lowercase>false</force-cfc- lowercase>
                        <!-- Query column names -->
<force-query-lowercase>false</force-query- lowercase>
                        <!-- struct keys -->
<force-struct-lowercase>false</force-struct- lowercase>
                    </property-case>
                </properties>
            </destination>

Reply via email to