Hi Friends,

Thanks a lot for your support. I m now able to understand the architecture.

For my case, I just pass the name of the user to the adapter (to which it is subscribed). The server manages sending it only to him.

I have two more questions -

1) I tried modifying the engine creation to include username/password as follows
engineRef.context.setDebugAlertsOnClientError(debu gAlerts);
engineRef.context.setRemoteAlertsOnClientError(tru e);
engineRef.connection.setUserName("cookie");
engineRef.connection.setPassword("password");
engineRef.connection.setLSHost(host);
engineRef.connection.setLSPort(port);
engineRef.connection.setAdapterName("STOCKLISTJMSD EMO");
engineRef.changeStatus("STREAMING");
but I always get null for username argument in the following functions
LiteralBasedProvider::getItems
LiteralBasedProvider::getSchema
and username/password is null in the following function
LiteralBasedProvider::notifyUser

Am I going wrong somewhere?

2) Is there any other way of creating a client implementation to subscribe and receive messages from the server without using NonVisualTable control?

Thanks,

Vishnu