On client I have:
java.util.Map<String, Object> context =
((javax.xml.ws.BindingProvider)client).getRequestContext();
context.put("username", "chris");
context.put("password", "foobar");How do I access that context on the server side in my interceptor? I cannot seem to find where it is in the Message object, or am I horribly misunderstanding something? thanks Chris
