[jboss-user] [JBoss Seam] - Re: Are there any ready admin pages examples for user and ro

2008-02-13 Thread stephendv
Good stuff! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4129032#4129032 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4129032 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Are there any ready admin pages examples for user and ro

2008-02-11 Thread stephendv
Would the Seam team consider adding this sort of functionality to seam-gen? IMO robust and secure user and role management straight out of the box would be a great benefit. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4128354#4128354 Reply to the post :

[jboss-user] [JBoss Seam] - Re: h:SelectManyListbox, s:SelectItems and Many-to-Many mapp

2008-02-06 Thread stephendv
I'm had similar problems getting this to work - eventually solved it, code is here: http://www.twisteddelight.org/downloads/contactn.tar.gz Recipients have a many to many relationship with Profiles. I used a selectManyCheckbox to allow recipients to assign themselves to profiles. AFAIK,

[jboss-user] [JBoss Seam] - Re: GUI testing tools for Seam apps

2008-02-06 Thread stephendv
Not used it. But there are many many free alternatives - and there's no need to have any support for Seam. Functional testing tools work at the web layer, so the underlying application architecture is irrelevant. Some tools that come to mind: | webtest.canoo.com | WATIR | WATIJ |

[jboss-user] [JBoss Seam] - Re: Recursive rendering in Seam Mail

2008-02-06 Thread stephendv
Good point! Strict data validation would be essential here, so ideally should follow a whitelist validation approach where I define the specific HTML markup tags that are allowed and the EL expressions which are allowed. If the input doesn't match this, then reject it. View the original

[jboss-user] [JBoss Seam] - Recursive rendering in Seam Mail

2008-02-05 Thread stephendv
The app I'm working on currently allows users to enter HTML, which is then used to compose an HTML email - works fine. But I'd also like users to be able to enter EL expressions as part of that HTML, e.g. they should be able to enter: | h1Dear #{MyBean.firstname}/h2 | which is then stored