Solved the problem. The config below is correct, but I needed to configure my BlazeDS channelset to use htpps instead of http. The Flex html page loads fine for htpp or https, but since I have opened ONLY https for the backend server, I needed https for BlazeDS. Hope this helps someone else as well Here is my service-config.xml file now <?xml version="1.0" encoding="UTF-8"?> <services-config> <services> <default-channels> <channel ref="https-amf"/> </default-channels> </services> <channels> <channel-definition id="https-amf" class="mx.messaging.channels.SecureAMFChannel"> <endpoint url="https://{server.name}:{server.port}/{context.root}/spring/messagebroker/amfsecure" class="flex.messaging.endpoints.SecureAMFEndpoint"/> </channel-definition> </channels> </services-config> Thanks Des On 19/08/2010, at 12:01 AM, Des Hartman wrote:
|