Hi All, I have to set a cookie in my Axis client, this cookie is required on server side.
Normally I would do this with a method on the URLConnection, f.e. tCon:
tCon.setRequestProperty("Cookie", "key=value");
In my Axis client, I tried:
call.setProperty(HEADER_COOKIE,"key=value");
and
MessageContext mc=call.getMessageContext();
mc.setProperty(HEADER_COOKIE, "key=value");
Both did not work, my server did not receive the cookie :-(
Any idea to solve the problem ?
Thanks and best regards
Nicole
