To get my application to deploy I found I also had to change how I use @Name and @Role
annotations. I had:
@Entity
@Name("device")
@Roles ({
@Role(name="device", scope=SESSION),
@Role(name="deviceToDelete", scope=CONVERSATION)
})
I had to change it to:
@Entity
@Name("device")
@Roles ({
@Role(name="deviceToDelete", scope=CONVERSATION)
})
Thanks.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4035533#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...