SOAPMessage in a LoginModule in weblogic 12c
Hello.I'm trying to get the SOAPMessage from a LoginModule and thinking of using the ContextHandlerCallback feature, however this only returns null.
Sample code of what I try to do.
Callbacks[] callbacks = new Callback(){new NameCallback("username: "),new PasswordCallback("password: "),new ContextHandlerCallback()};
try{
callbackHandler.handle(callbacks);
}catch(Exception e){
}
chc = (ContextHandlerCallback) callbacks[2];
Doing chc.getContextHandler() is always null.
0