I use the first way in my login module works fine.

        HttpServletRequest request = null;
        try {
            request = (HttpServletRequest) 
PolicyContext.getContext("javax.servlet.http.HttpServletRequest");
        } catch (PolicyContextException e) {
            e.printStackTrace();  //To change body of catch statement use File 
| Settings | File Templates.
            throw new 
RuntimeException("PolicyContext.getContext(javax.servlet.http.HttpServletRequest)
 failed");
        }

        String ip = request.getRemoteHost();
        Map map = request.getParameterMap();
        Host host = new Host(ip, hostKey);// TODO put registry key
        return host;


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4166320#4166320

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4166320
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to