hi,
Here I have a
server log of my connection, we are trying to convince the customer to run tests against our development server where the logs are enabled.
We use HTTP 1.1 transport with GET, like this:
http:/<server>/lightstreamer/create_session.txt?LS_protocol=TLCP-2.1.0&LS_cid=mgQkwtwdysogQz2BJ4Ji+kOj2Bg&LS_adapter_set=CDS_ADAPTER&
04-Dec-20 09:01:34,739|DEBUG|L.connections |r Lightstreamer HTTP Server|Socket accept from 127.0.0.1:53130
04-Dec-20 09:01:34,777|INFO |L.connections |SERVER POOLED THREAD 10 |Accepted HTTP connection on "Lightstreamer HTTP Server" from 127.0.0.1:53130
04-Dec-20 09:01:35,094|DEBUG|L.connections.http |SERVER POOLED THREAD 9 |Parsing request:
GET /lightstreamer/create_session.txt?LS_protocol=TLCP-2.1.0&LS_cid=mgQkwtwdysogQz2BJ4Ji+kOj2Bg&LS_adapter_set=CDS_ADAPTER& HTTP/1.1
Host: beta.cartezyan.com.br
Content-Encoding: Chunked
Content-Type: text/plain; charset=ISO-8859-1
Accept: /
Accept-Charset: *
Accept-Encoding: gzip, identity
User-Agent: Cartezyan/8.0 Mozilla/3.0 (compatible; Indy Library)
X-Forwarded-For: 10.252.217.196
X-Forwarded-Host: beta.cartezyan.com.br
X-Forwarded-Server: beta.cartezyan.com.br
Connection: Keep-Alive
and my program receives:
HTTP/1.1 200 OK
Date: Fri, 04 Dec 2020 12:01:35 GMT
Server: Lightstreamer-Server/7.0.3 build 1885.8 (Lightstreamer Server -
www.lightstreamer.com) ENTERPRISE edition
Content-Type: text/enriched; charset=UTF-8
Cache-Control: no-store
Cache-Control: no-transform
Cache-Control: no-cache
Pragma: no-cache
Expires: Thu, 1 Jan 1970 00:00:00 GMT
Content-Encoding: gzip
x-accel-buffering: no
Transfer-Encoding: chunked
At the client's environment, nothings is received, no response, no headers, no data.
thanks.