Hello,

My connector has the following attributes

 <Connector
       SSLEnabled="true"
       clientAuth="false"
       keystoreFile="path_to_certs/cert_file"
       keystorePass="pass"
       maxThreads="150"
       port="8443"
       protocol="org.apache.coyote.http11.Http11Protocol"
       scheme="https"
       secure="true"
       sslProtocol="TLS"/>

Another thing I did not mentioned in my post is the behaviour of IE when the
link is accessed:
It outputs the following message :There is a problem with this website's
security certificate.Then I have two options : click to close the webpage
and continue to website. If I choose continue to website I get a certificate
error next to the url field.

I thought that this is default behaviour of IE8. From my knowledge in
previous versions there was a security popup and when you clicked ok the
browser continued to the website with https.
Is it possible that because of this error the browser would revert to http,
thus explaining the call for amf not amf-secure, or is it a server miss
configuration?


On Wed, Dec 15, 2010 at 6:36 PM, db <[email protected]> wrote:

> 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]<flex_india%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/flex_india?hl=en.
>
>

-- 
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