[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-22 Thread petemuir
Jason, I'm not sure whats going on there I'm afraid. I have no problems redeploying the examples and the two projects in which I use the SeamSelectItems myself. What versions of Seam/JBoss AS are you using? View the original post :

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-19 Thread ffischer
Stephan, thanks a lot for your response. I already have had the jboss-cache-jdk50.jar within the right place in the ear. It doesn't work for me. But meanwhile I have learned a lot about converters and the selectItem stuff, so I wrote something that works for me. Best regards, Frank View the

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-16 Thread ffischer
sbublava wrote : One minor glitch: SelectItemsComponentHandler imports org.jboss.cache.CacheException, which causes a java.lang.NoClassDefFoundError exception when Facelets loads the tag library unless JBoss Cache is available. | | Maybe could change the catch clauses to Exception or at

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-16 Thread petemuir
I'm afraid I haven't had time to put out a new version with this bug fixed. I need to find some time to test the changes I've made. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3986643#3986643 Reply to the post :

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-13 Thread petemuir
Thanks. I'm reworking the si:selectItems component so that it works with JSP as well as facelets. I'll make sure to remove that import in the next release. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3985353#3985353 Reply to the post :

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-13 Thread fonseca
Hello Peter, I'm having a few troubles using your component, could you please help me out? I'm using the 1.1.1beta1 release, and my problem arises from using the following jsf structure (I'll filter out everything unimportant): | t:dataTable var=var | rowIndexVar=i |

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-13 Thread petemuir
Hi Luis Thanks for the feedback. I discovered a similar problem when putting a si:selectitems in a datatable [1]. As I mentioned above I've been further refactoring the code to support JSP as well as facelets - a side of effect of this refactoring is that it (for me) solves the problem [2].

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-12 Thread sbublava
One minor glitch: SelectItemsComponentHandler imports org.jboss.cache.CacheException, which causes a java.lang.NoClassDefFoundError exception when Facelets loads the tag library unless JBoss Cache is available. Maybe could change the catch clauses to Exception or at least mention this

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-10 Thread petemuir
http://wiki.jboss.org/wiki/Wiki.jsp?page=SeamSelectItemsNewDesign I've redesigned SeamSelectItems such that rather than using the @SelectItems annotation you just outject. The magic now occurs completely in ui:selectItems (which only works with Facelets I'm afraid). @SelectItems is still

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-10 Thread cavani
on application.xml: | module | javaselectitems-1.1.0rc3.jar/java | /module | should be ... 1.1.1beta1 Thanks, View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3984985#3984985 Reply to the post :

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-10 Thread petemuir
Thanks I've fixed the example build file properly so I don't forget this in the future :) I've also fixed another bug with the example which I missed first time around. Still the same version no View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3984989#3984989

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-09 Thread petemuir
For some reason the oujection failed. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3984446#3984446 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3984446 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-08 Thread petemuir
As suggested elsewhere, I suggest you use a supported JBossAS/Seam config as recommended by the getting started guide. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3984049#3984049 Reply to the post :

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-08 Thread forumer
Hi Peter, Thanks for your reply. I am having a little better luck with 1.1.0rc2. But looks like em is coming up NULL. Must be something I am not configuring right. I looked at components.xml but can't figure out what to modify, if anything. FYI, I use em annotated with @PersistenceContext in

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-08 Thread petemuir
In the example the EntityManager is a Seam Managed Persistence Context so is injected using @In. If you look at the getting started guide, you'll see that it tells you to use JBoss 4.0.4.GA not 4.0.4.CR2. I'm not going to waste my time sorting out why the code doesn't work a unsupported

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-08 Thread forumer
Hi Peter, Now I understand a bit more about JBoss versions! I understand that you don't want to waste time supporting a non-GA version. Unfortunately, we are in production with CR2 and will certainly be moving to GA as soon as we can. Your implementation is very crucial to my application. So

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-07 Thread forumer
I have posted this in more details at jroller.com as well. selectItems 1.0rc4 built with JBoss-Seam-1.0.1.GA and deployed on JBoss-4.0.4.CR2 is not working! I am getting the following error - a strange Statful bean name! I'd appreciate any help in getting this working. Thanks |

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-07 Thread forumer
After I annotated ClientActionBean with: | @Local ({ClientAction.class}) | @LocalBinding (jndiBinding=ClientActionBean/local) | I am now getting a less bizarre error. Hopefully, this gives you more clue. | | 20:47:06,837 INFO [MyfacesConfig] No context init parameter

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-11-06 Thread petemuir
I've put up a version http://wiki.jboss.org/wiki/attach?page=SeamSelectItems%2Fselectitems-1.1.0rc2.zip that allows you to cache the outjected selectitems. It uses pojocache, and requires you to use a si:selectItems cacheKey=... / rather than f:selectItems. N.B. The config class name has

[jboss-user] [JBoss Seam] - Re: UPDATED: SelectItems (the one with the EntityConverter)

2006-10-27 Thread petemuir
I've put up a version that works with 1.1BETA1 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3981261#3981261 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3981261 ___ jboss-user