Hi.

I've read this thread and a couple more regarding "Unable to find the engine", but I still have a problem. I have LS and an IIS 6 webserver on the same machine. LS is under the default 8080 port. My Data Adapter is a C# adapter successfully opening the TCP ports specified in adapters.xml when started.

These are my configs:

Hosts file:
127.0.0.1 localhost
127.0.0.1 archtst1.test.alaskaair.com
127.0.0.1 push.archtst1.test.alaskaair.com

Client script:

<script type="text/javascript">
var page = new PushPage();
page.context.setDomain("archtst1.test.alaskaair.co m");
page.onEngineCreation = startEngine;
page.bind();
page.createEngine("CBOFlightPublisher", "JSLib", "SHARE_SESSION");

function startEngine(engine)
{
engine.connection.setAdapterName("LSADAPTERDEMO");
engine.changeStatus("STREAMING");
engine.connection.setLSHost("push.archtst1.test.al askaair.com");
engine.connection.setLSPort("8080");
}

var pushtable = new OverwriteTable(null, null, "MERGE");
page.addTable(pushtable, "EventTargetTable");
</script>

Any feedback will be most appreciated.
-Guillermo