[jboss-user] [JBoss Seam] - Re: OSGI Plans

2007-05-30 Thread jeffconstantin
Gavin, Has your plans in regards to OSGi progressed any? Just curious. We have current need for a pluggable JBoss Seam web application as a frontend to a commercial mapping engine. JBoss Seam (RichFaces) with Eclipse Equinox OSGi implementation is the proposed architecture. Thanks for

[jboss-user] [JBoss Seam] - Re: Seam Security: isUserInRole() expression

2007-04-16 Thread jeffconstantin
From my experience (and from this posting) this code does not work on the frontend. The documentation is incorrect. Allows JSF pages to choose to render a control, depending upon the roles available to the current principal. h:commandButton value=edit rendered=#{isUserInRole['admin']}/. you

[jboss-user] [JBoss Seam] - Re: Seam Security: isUserInRole() expression

2007-04-11 Thread jeffconstantin
Shane, This is working. The problem was with the SeamFaceletViewHandler. It is required to do the Seam Security using s:hasRole('admin'). That was documented. It appears to require a different format for the JSP pages as follows: ( it likes the jsp:root format ) ?xml version=1.0? | jsp:root

[jboss-user] [JBoss Seam] - Seam Security: isUserInRole() expression

2007-04-10 Thread jeffconstantin
What is required to use isUserInRole() to control component rendering as follows: rendered=#{isUserInRole['admin']} Any help is very much appreciated. This check is always returning false even though I am sure the user has the admin role. At least I can see the role being added to the

[jboss-user] [JBoss Seam] - Re: Cannot find the entityconverter taglib

2007-03-15 Thread jeffconstantin
It is working fine now. It was the Hibernate mapping. Thank you very much for you help with this issue. I have a working example of a seam-gen application enhanced with s:selectItems and your entity converter. View the original post :

[jboss-user] [JBoss Seam] - Re: Cannot find the entityconverter taglib

2007-03-14 Thread jeffconstantin
I have this working except for one problem. I get my s:selectItems populated in the create form but some 250-char-serialized-string is save in the database for my car column. I am sure I am missing a converter somewhere but I don't know what or where it goes. Your entityConverter works

[jboss-user] [JBoss Seam] - Re: Cannot find the entityconverter taglib

2007-03-08 Thread jeffconstantin
Thanks for the quick response. I am very new to SEAM and I thought I was losing my mind tonight. This seams like a very nice solution for pick list in my application. 1. Do you know your estimated time to have this in in SEAM? Off-topic: Do you know if there is any discussion of integrating

[jboss-user] [JBoss Seam] - Re: Cannot find the entityconverter taglib

2007-03-08 Thread jeffconstantin
Thanks, I will wait until Monday sometime. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4026182#4026182 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4026182 ___ jboss-user

[jboss-user] [JBoss Seam] - Cannot find the entityconverter taglib

2007-03-07 Thread jeffconstantin
I am confused. Any help is greatly appreciated. Using entityconverter-0.1 I am trying to follow instructions in http://wiki.jboss.org/wiki/Wiki.jsp?page=SeamEntityConverter; Did this URI change? Top of my JSP page: %@ taglib uri=http://jboss.com/products/seam/entityconverter/taglib;