On 2/11/10, Laurence MacNeill wrote:
> So that works for PHP...  What if I'm using ColdFusion?  Would it be:
> amfChannel = new AMFChannel("my-secure-amf", "
> https://myserver.com/myappdirectory/cfcs/dao/paymentsDAO.cfc ");

<mx:RemoteObject
        destination="ColdFusion"
        id="retrieveData"
        source="nl.prismait.package.CFCName"
        showBusyCursor="true"
        >
        <mx:channelSet>
                <mx:ChannelSet>
                        <mx:SecureAMFChannel 
uri="https://servername/flex2gateway/"; />
                </mx:ChannelSet>
        </mx:channelSet>
</mx:RemoteObject>

And in the corresponding services-config.xml:
    <destination id="ColdFusion">
        <channels>
            <channel ref="my-cfamf-secure"/>
        </channels>
        <properties>
            <....>
        </properties>
    </destination>

Jochem


-- 
Jochem van Dieten
http://jochem.vandieten.net/

Reply via email to