It looks like CXF only tracks JSESSIONID and throws away any other
cookies.
There's a bunch of non-java based services out there that use other
session cookies. If SESSION_MAINTAIN_PROPERTY is set, it should track
all the cookies on the session, not just JSESSIONID.
--Joe
On Aug 31, 2007, at 6:12 PM, Joe Sunday wrote:
Thanks a bunch.
One more question.. Is there a way to keep cookies automatically on
a session?
The remote end is sending a Set-Cookie: header on the first
request, but it doesn't get sent back in future requests.
I thought this was right from some googling, but it doesn't seem to
work..
((BindingProvider)client).getRequestContext().put
(BindingProvider.SESSION_MAINTAIN_PROPERTY, true);
--Joe
On Aug 31, 2007, at 2:17 PM, Daniel Kulp wrote: