remoting-config.xml ファイル ([coldfusionRoot]wwwroot\WEB-INF\flex) に移動して、coldfusion インスタンスでのマッピングの使用を有効にすることもできます。デフォルトでは、Flex は cfc インスタンスの検索にマッピングを使用できません。
<destination id="ColdFusion">
<channels>
<channel ref="my-cfamf"/>
</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>false</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>
表示されるものがデフォルトです。use-mappings キーを true に変更すると、マッピングが機能するようになります。