@RequestParameter is for HTTP request params.
http://host/page.jsf?username=Steve
@RequestParameter("username")
String username;
assert username == Steve
I'd guess the problem here is that you don't actually have a request parameter
with this data or that Seam has no idea how translate from this string (how did you
generate the string?) into an X509Certificate[].
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3974630#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...