[jboss-user] [JBoss Seam] - s:graphicImage and animated gifs

2007-10-31 Thread mangri3000
Hi, we import icon images into the database using s:fileUpload and display the images using the s:graphicImage jsf control. Everything seems to work fine. But animated gifs are NOT displayed animated - it shows a static image. The browser does animate the original file when it is embedded

[jboss-user] [JBoss Seam] - Re: s:graphicImage and animated gifs

2007-10-31 Thread mangri3000
I have not done the servlet testing, yet. In the browser's page information dialog I can see: Image size when embedded by : 740 bytes Dynamic image size when embedded by s:graphicsImage: 1134 bytes ?! Original file size and database file size are both 740 bytes. View the original post :

[jboss-user] [JBoss Seam] - Re: Persistence context propagation.

2007-08-01 Thread mangri3000
[EMAIL PROTECTED] wrote : Any component within a conversation will have the same PC injected using @In. I guess that requires that all my SLSB be seam components annotated with @Name. I wouldn't like to do that with my DAO components (SLSBs). Isn't it possible to attach the SMPC to the

[jboss-user] [JBoss Seam] - Re: Persistence context propagation.

2007-08-01 Thread mangri3000
iradix wrote : What I've done to my code is to change: | | @PersistenceContext(type=EXTENDED) | EntityManager entityManager; | | to: | | @In(create=true) | EntityManager entityManager; | | along with the other relevant configuration for Seam managed persistence and now the

[jboss-user] [JBoss Seam] - Re: Persistence context propagation.

2007-08-01 Thread mangri3000
I try to explain a little more. Our system has two interfaces, a web-ui and a messaging based interface to another system. Messaging requests come this way: MessageController (MDB) - Core (SLSB and Entities) - DAOs (SLSBs) - Hibernate UI requests go the other way: Web-UI - Application (Seam