I can manually execute a successful jQuery GET request for control.js passing all the cookies I need.
$.ajax({
url: 'https://myapp/control.js?LS_mode=RAW&LS_id=blahfooblah&....',
xhrFields: {
withCredentials: true
}
});
I know it is possible, and I know that it works.
I still need help to force the Subscription request to do this automatically like the LightStreamerClient.connect() does for create_session.js and bind_session.js. How do I make the LightStreamerClient do this?