You cannot use an extended context with Blob. This is the reason you are getting the descriptor error. Make your persistence context type transactional.
See this post, Part 2, for a more detailed description: http://forum.hibernate.org/viewtopic.php?t=963566 Also, you might need to use the em.merge function to have the entity bean brought into the current EM context. You have to do this because the EM is injected each time the session bean is invoked. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3973254#3973254 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3973254 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
