Hi
I have 2 adapters loaded in the lightstreamer server. One is directly sneding messages from socket stream. The other is comunicating with jboss server with jms. This all is tested and works.
The problem is that i need to use the both adapters in one page. I saw the example with frames, but i could not use it. My application is GWT i.e. using java code to generate html/javascript .
I have integrated the application page to work with the adapters but when i create 2 pushpages like this

Code:
	private native JavaScriptObject createPushPage() /*-{
		var page = new $wnd.PushPage(); 
		return page;
	}-*/;

	private native void init(JavaScriptObject map, JavaScriptObject page) /*-{
	try {
			page.context.setDomain(map['domain']);
			page.onEngineCreation = function(engine) {
				engine.connection.setLSHost(map['host']);
	   			engine.connection.setLSPort(map['port']);
				engine.connection.setAdapterName(map['adapter_root']);
				engine.changeStatus(map['engine_status']);
			}
			page.bind();
			page.createEngine("app", map['ls_home'], "SHARE_SESSION");
	} catch(error) {
		alert(error);
	}
	}-*/;

	private native JavaScriptObject getNVT(String[] group, String[] schema, String sourceType) /*-{
	var nonVisualTable = new $wnd.NonVisualTable(group, schema, sourceType);
	return nonVisualTable;
	}-*/;
It is saying that an engine is already created.