Hi,

I've run the html demo successfully but cant seem to connect from GI. When the engine sets the mode to STREAMING the scrip fails to find he adapter engine which is running on port 80. Here is the code Im using to initialise the engine on GI any help would be appreciated.

var lsPage = new PushPage();
lsPage.context.setDomain(null);
lsPage.onEngineCreation = startEngine;
lsPage.bind();
lsPage.createEngine("SLEngine2","C:/ls/");
function startEngine(eng) {
eng.policy.setMaxBandwidth(30);
eng.policy.setIdleTimeout(1000);
eng.policy.setPollingInterval(1000);
eng.connection.setLSHost(null);
eng.connection.setLSPort();
eng.connection.setAdapterName("STOCKLISTDEMO");
eng.changeStatus("STREAMING");
}

Rgds
Ewan