Quote Originally Posted by Mone
  1. Your environment (how do you access web server and Lightstreamer server)
I ve placed my flex page in the pages folder of lightstreamer. In lightstreamer_conf.xml, I ve enabled only the ssl server. I am accessing the page using a https url.
Quote Originally Posted by Mone
Your crossdomain.xml file
<cross-domain-policy>
<allow-access-from domain="*" />
</cross-domain-policy>

Quote Originally Posted by Mone
You ConnectionInfo configuration
var cInfo:ConnectionInfo = new ConnectionInfo();
cInfo.setServer("push.mydomain.com");
cInfo.setAdapter("STOCKLISTDEMO");
cInfo.setControlPort(443);
cInfo.setPort(443);
cInfo.setControlProtocol("https");
cInfo.setProtocol("https");
cInfo.setUser("TEST_USER");
cInfo.setPassword("TEST_USER");