Let me use the registration example to demonstrate the problem.
The original example works perfectly fine for me.

However as soon as I change the declaration  from 
@Entity
  | @Name("user")
  | @Scope(SESSION)
  | @Table(name="users")
  | public class User implements Serializable
  | 
to
@Entity
  | @Name("dummy")
  | @Scope(SESSION)
  | @Role(name = "user", scope = SESSION)
  | @Table(name="users")
  | public class User implements Serializable
  | 
it fails and only shows "Conversion Error" on the JSF page for all fields.

It should not make a difference if the context variable is declared using @Name 
or @Role, should it?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3935842


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to