Hai,
We have got a public IPaddress for our server system and have configured with a public name in the OS with which we browse other applications. Public name of the server system is "myportal.co.in". The host name of the system is "CO-OP".

I tried the following,

Code:
$wnd.page.context.setDomain("myportal.co.in");
engine.connection.setLSHost("push.CO-OP.co.in");
engine.connection.setLSPort("9090");
And host entry in server system is
<IP Address> www.myportal.co.in
<IP Address> push.CO-OP.co.in

---It produces LS_909 1:14:44:56,449 ER setLSHost Streaming Server hostname inconsistent with the domain set.

Then I changed as,

Code:
$wnd.page.context.setDomain("myportal.co.in");
engine.connection.setLSHost("push.CO-OP.myportal.co.in");
engine.connection.setLSPort("9090");
And host entry in server system is
<IP Address> www.myportal.co.in
<IP Address> push.CO-OP.myportal.co.in

And also i changed like this,

Code:
$wnd.page.context.setDomain("myportal.co.in");
engine.connection.setLSHost("push.myportal.co.in");
engine.connection.setLSPort("9090");
And host entry in server system is
<IP Address> www.myportal.co.in
<IP Address> push.myportal.co.in

No response was received from Lightstreamer for both of the above..

i try to browse the url as "http:\\www.myportal.co.in\Access"
where "Access" is the application for which a virtual directory is created in the server system.
We don't get any response when we browse from a remote system without any host entry.
Can u please help us how to resolve this issuse?