Hi vielktus,

Do you confirm me that with the JavaScript Client library generator you have chose the "globals" style? Please consider that if you have chose the "AMD" style (default) you should change the js client code in order to use the require.js lib. Please refer to the "Example usage based on the chosen style" of the generator page.

Anyway please consider that your js client code needs a couple of fix:
- add port number to the Lightstreamer server url;
- consider that by your adapters configuration the Adapter Set name is "MYSOCKET", and the Adapter name is not specified ("DEFAULT" assumed);

ie:

Code:
  var myClient = new LightstreamerClient("http://192.168.247.13:8080", "MYSOCKET"); 
  myClient.connect();
  
  var grid = new StaticGrid("hellogrid",true);
 
  var subscription = new Subscription("MERGE",grid.extractItemList(),grid.extractFieldList());
  // subscription.setDataAdapter("MYSOCKET");
  subscription.addListener(grid);
 
  myclient.subscribe(subscription);