Hello,

What server version are you using? It is strange that the server doesn’t log anything. Please make sure that, when you are debugging the server in a test environment, the logger named LightstreamerLogger.requests (in the file lightstreamer_log_conf.xml) is set at INFO at least.



Anyway, the best way to investigate such kind of problems is to activate the client internal logger and send us an extract of the generated log.
To enable the logging, you should add to your code the following lines:


var log = new SimpleLoggerProvider();
log.addLoggerAppender(new ConsoleAppender("DEBUG", "*"));
LightstreamerClient.setLoggerProvider(log);


For instance, you can add them before the initial creation of the instance of LightstreamerClient.
Keep in mind that the log is very verbose and it should be activated only in test environment.

Regards