Actually, I found the solution. Instead of using standard @In injection, I needed to use
@RequestParameter. @RequestParameter will perform the correct type conversion, whereas
@In won't.
Here is the corrected code:
@RequestParameter("#{managedFileId}")
| protected Long managedFileId;
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3972004#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...