Hello, we have implemented lightstreamer on our server and now our C++ application receives realtime data from LS via http streaming.

We have some scenarios where keep-alive connections are not allowed (corporate & firewall policies, among others) and so we must have a "pooling mode", that might work like this:

1. create a session, without keeping connection alive (no stream)
2. subscribe some stocks to receive data
3. make a request (once a second, for instance) to get available data

So, is there any approach to get things working this way ?