Just make sure that the SSL port are enabled on tomcat .
AMF Channel config------->
services-config:
<channel-definition id="my-secure-amf"
class="mx.messaging.channels.SecureAMFChannel">
            <endpoint url="https://{server.name}:{server.port}/
{context.root}/messagebroker/amfsecure"
class="flex.messaging.endpoints.AMFEndpoint"/>
            <properties>
                <add-no-cache-headers>false</add-no-cache-headers>
            </properties>
        </channel-definition>
in remoting config use:
<default-channels>
<channel ref="my-amf"/>
<channel ref="my-secure-amf"/>
</default-channels>

at tomcat servers.xml --------------

<Connector  protocol="org.apache.coyote.http11.Http11Protocol"
                   port="8443"
                   scheme="https"
                   SSLEnabled="true"
                   sslProtocol="TLS"
                   keystorePass="pass"
                   disableUploadTimeout="true"
                   />

-- 
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en.

Reply via email to