Hi, I'm trying to get all the various ways to connect to LCDS working and 
running into an issue with some secure ones. I have it working for secure-http 
but can't get it to work for secure-nio-http, secure-nio-amf, etc. If I go to 
https://{server.name}:2443/secureniohttp directly in the browser it's not 
showing up. Any ideas as to why it isn't starting up but the others are fine?

Thank you!

Here's bits of my services-config file...


THIS ONE DOES NOT WORK
<channel-definition id="secure-nio-http" 
class="mx.messaging.channels.SecureHTTPChannel">
    <endpoint url="https://{server.name}:2443/secureniohttp"; 
class="flex.messaging.endpoints.SecureNIOHTTPEndpoint"/>
    <server ref="secure-server"/>
    <properties>
        <add-no-cache-headers>false</add-no-cache-headers>
        <polling-enabled>false</polling-enabled>
    </properties>
</channel-definition>


THIS ONE DOES
<channel-definition id="my-nio-http" class="mx.messaging.channels.HTTPChannel">
    <endpoint url="http://{server.name}:2080/niohttp"; 
class="flex.messaging.endpoints.NIOHTTPEndpoint"/>
    <server ref="my-nio-server"/>
    <properties>
        <polling-enabled>false</polling-enabled>
    </properties>
</channel-definition>

THIS ONE DOES
<channel-definition id="my-secure-http" 
class="mx.messaging.channels.SecureHTTPChannel">
    <endpoint 
url="https://{server.name}:{server.port}/{context.root}/messagebroker/securehttp";
 class="flex.messaging.endpoints.SecureHTTPEndpoint"/>
    <server ref="secure-server"/>
    <properties>
        <add-no-cache-headers>false</add-no-cache-headers>
    </properties> 
</channel-definition>


I USE SAME SECURE ERVER INFO
<server id="secure-server" class="flex.messaging.socketserver.SocketServer">
    <properties>
        <http><cross-domain-path>crossdomain.xml</cross-domain-path></http> 
        
<keystore-file>{context.root}/WEB-INF/flex/fxlcds.JKS.keystore</keystore-file>  
        <keystore-password>*********</keystore-password>   
        <idle-timeout-minutes>20</idle-timeout-minutes>           
    </properties>
</server>

Reply via email to