Need guidance on X509Certificate, AxisEngine, MessageContext and HttpServletRequest
I'm trying to figure out the problem of null exception of the code below:
Code:
MessageContext msgContext = AxisEngine.getCurrentMessageContext();
HttpServletRequest req = (HttpServletRequest)msgContext.getProperty(HTTPConstants.MC_HTTP_SERVLETREQUEST);
X509Certificate x509certs[] = (X509Certificate[]) req.getAttribute("javax.servlet.request.X509Certificate");
x509certs[] is null. I'm trying to find out why...
Do any1 of you pros out there know where i can get more information on X509Certificate, AxisEngine, MessageContext and HttpServletRequest?
Is there any books or websites teaches people to use it?