Hi.

I have Lightstreamer and an IIS web server on the same server. LS is running on default port 8080. I deployed an ASP.NET on IIS with .NET framework 2.0.

I've been succefully testing some sample client projects where LS functions as a web server, but this is the first time I have an app running on IIS and trying to connect to LS.

My web app gets a popup error that says: "ER createEngine The call of createEngine methods after the BODY onload event is supported only for DOM2 browsers. You might have reached this point, due to slow page downloads."

Im launching the app from IE 7.0.5730.11. I've updated the Javascript code in the client app to connect to the local LS on the same server:

<script type="text/javascript">
var page = new PushPage();
page.context.setDomain("archtst1.test.alaskaair.co m");
page.onEngineCreation = startEngine;
page.bind();
page.createEngine("LSAdapterDemo", "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>

And I've checked that the Adapter, which is a C# adapter that connects through sockets successfully, runs fine.

Any idea what that error means?

Thanks.
-G