All

We have a ls feed that is pumping data out to a webpage(s) and this works fine.

What we need to do is create a java client that can listen to the same connection and get the same data out:

The URL is http://<machine.domain>:8087/OurStuff/ (tomcat is sat on 8085)

Tweaking the Test example (from sdk_for_j2se-clients\examples\ls_client) to point to the above, I get the following:
using "<machine.domain>", port "8087" and the adaptor "OurStuff"

Exception in thread "main" com.lightstreamer.ls_client.PushConnException: java.io.FileNotFoundException: http://<machine.domain>:8087/lightstreamer/create_session.txt
at com.lightstreamer.ls_client.PushServerProxy.startS ession(PushServerProxy.java:101)
at com.lightstreamer.ls_client.ServerManager.<init>(S erverManager.java:62)
etc..

and nothing appears in the LisghtStreamer window

if I use port 8085 (Tomcat) i get:
Exception in thread "main" com.lightstreamer.ls_client.PushConnException: java.io.IOException: Server returned HTTP response code: 500 for URL: http://<machine.domain>:8085/lightstreamer/create_session.txt
at com.lightstreamer.ls_client.PushServerProxy.startS ession(PushServerProxy.java:101)
at com.lightstreamer.ls_client.ServerManager.<init>(S erverManager.java:62)

and the lightstreamer reports:
com.lightstreamer.i.j: com.lightstreamer.g.a: Requested Adapter, OurStuff, not found
at com.lightstreamer.i.bb.a(bb.java)
at com.lightstreamer.f.g.a(g.java)
at com.lightstreamer.f.g.a(g.java)
at com.lightstreamer.f.n.b(n.java)
at com.lightstreamer.f.n.a(n.java)
at com.lightstreamer.a.g.b(g.java)
at com.lightstreamer.a.g.a(g.java)
at com.lightstreamer.a.w.a(w.java)
at com.lightstreamer.j.wb.run(wb.java)
at com.lightstreamer.j.qb.a(qb.java)
at com.lightstreamer.j.rb.run(rb.java)
(I am about 99% certain the jars are the same).

Using the StockDemo I get the same type of responces.

Is there anything obvious I am missing (e.g. "you cannot use that Test to connect") and/or is there a tutorial I can read.

Thanks

JoN