Re: REST: eternal HTTP status 204

2008-09-08 Thread Dejan Bosanac
Unfortunately no, the web client that do all the work is tied to a HTTP session. Cheers -- Dejan Bosanac http://www.ttmsolutions.com - get a free ActiveMQ user guide ActiveMQ in Action - http://www.manning.com/snyder/ Scripting in Java - http://www.scriptinginjava.net yesnid wrote: > Hel

Re: REST: eternal HTTP status 204

2008-09-05 Thread yesnid
Hello Dejan, Thank you for the direction on this issue, is there a way to make this connection sessionless? Thank you, Dejan Bosanac-3 wrote: > > The problem is that you have to keep your HTTP session between your GET > requests. So, try something like > > wget --save-cookies cookies.txt --

Re: REST: eternal HTTP status 204

2008-09-05 Thread Dejan Bosanac
The problem is that you have to keep your HTTP session between your GET requests. So, try something like wget --save-cookies cookies.txt --load-cookies cookies.txt --keep-session-cookies http://localhost:8161/demo/message/TEST1?type=queue if you're playing with wget, or something similar in your

Re: REST: eternal HTTP status 204

2008-09-04 Thread yesnid
I am having the same issue, what is the solution? sv75 wrote: > > I'm trying simple python program to using ActiveMQ via HTTP. > I managed to send message via HTTP/POST, but have problems getting them > via GET (or DELETE). While first request receive message (with HTTP status > 200), all other