Hello all, 
I am attempting to place parameters using 
context.getRequest().setAttribute("Car","white) and then I redirect to a
different context using
redirectResolution("http://localhost:3434/Cars.jsf",false).includeRequestParams(true);

The application I am attempting to send the parameters to is a JSF application
(wamp wamp) and when I attempt to pull the attributes off the request using a
scriptlet
<[EMAIL PROTECTED] import="UserData.*"%>
<%
     UserRoles role = (UserRoles) ((HttpServletRequest)pageContext.getRequest())
        .getSession().getAttribute("userRole");
     if(role == null)
         System.out.println("HELLO");
     else
        System.out.println(role.getWebCOP());
     String s = (String) ((HttpServletRequest)pageContext.getRequest())
        .getAttribute("ken");
     System.out.println(s);
%>
 in the jsf It always says HELLO and null in my log.  Anyone have any ideas how
I could accomplish placing the parameters on in stripes and pull them off the
request? 
Thanks for any help.
Ken




-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to