[jboss-user] [JBoss Seam] - Seam-gen new-conversation does not generate test.

2006-11-19 Thread js8523
Hi All Just noticed that contrary to the seam help blurb on the new-form entry generates the test versions for the file. I checked if it was just a accidental leave off, but there were other items missing rather than just the entries in the build.xml, I presuem this is work in progress, but

[jboss-user] [JBoss Seam] - JSF EL Resolver and Security ACL Issues

2006-07-21 Thread js8523
Dear All Context: I am trying to create a user, role, where each role can have any combination of a predefined set of privileges (viewCustomers, viewReservations, cancelReservation, etc), these privileges are given to the role at runtime. Problem: I am trying to use this privilege system t

[jboss-user] [JBoss Seam] - Re: SeamNavigationHandler is no javax.faces.application.Navi

2006-07-21 Thread js8523
A few quick observations Take myfaces out of your web-inf/lib folder and place them into jboss/server/default/deploy/jbossweb-tomacat55.sar/jsf-libs as jboss can get confused by multiple versions of myfaces. Also in your components.xml file myFacesLifecycle bug should be set to false if you

[jboss-user] [JBoss Seam] - Re: ACL in Seam

2006-07-25 Thread js8523
Hi Gavin, I think that you missed yaun point, which is object level permission, like one user can edit one customer, but only view another customer. I was thinking a Entity Users_Role which you could then inherit (therefore extend the data model), and add custom properties (i.e. customer fore

[jboss-user] [JBoss Seam] - Re: ACL in Seam

2006-07-25 Thread js8523
Hi Yuan, Unfortuneatly I have not attempted acegi, and instead created my own security layer (using JACC and database authetication on some custom user, role, and user_role entities), but I have not been succesful in implimenting hasPriveledge yet! I followed the wiki items on JACC container s

[jboss-user] [JBoss Seam] - Re: How to update @DataModel and its ListDataModel?

2006-08-01 Thread js8523
Because the datamodel uses the object.equals() method to check whether the object has changed. I fell foul of this as well. Implement a more thorough equals expression, and datamodel should then realise it needs to push the information out to jsf. Hope this helps, James View the origin

[jboss-user] [JBoss Seam] - Re: Seam Security: authentication and authorization example

2007-01-15 Thread js8523
Try the seamspace example (from CVS Seam project). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4001932#4001932 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4001932 ___ jbos

[jboss-user] [JBoss Seam] - Re: Chat server module?

2006-08-22 Thread js8523
Hi It might be worth speaking to the Jboss Mail / Collaboration Server mailing list as I know in the past they said there remit would eventually stretch to IM/messaging, so they may have already done some analysis. Hope this helps, James View the original post : http://www.jboss.com/index

[jboss-user] [JBoss Seam] - Re: jBPM in cooperation with SEAM

2006-08-28 Thread js8523
Hi Just in case you haven't figured it out yet. You can outject to the business process state @In @Out(required=false, scope=BusinessProcess) Entity myEntity; If you look in the doc manaul that comes with seem under scopes, and then under bpm integration it should cover these areas. Hope

[jboss-user] [JBoss Seam] - Re: Can Seam work with no ejb3 but with Hibernate ORM?

2006-11-06 Thread js8523
Hi pgrillo It is very possible to use Seam with just hibernate (Seam is written by one of the original hibernate people). The only downside of not using the ejb3 stuff is the stateless and stateful session beans, but these probably bereplaced by java beans that do exactly the same functionalit

[jboss-user] [JBoss Seam] - Re: Road Map

2006-11-17 Thread js8523
Re: Seam security stuff. Is this also up for discussion with the Portal and Jbpm guys, as I remember you stating a while ago that you would like to see standardisation between the products? Thanks James View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3986

[jboss-user] [JBoss Seam] - Re: install SEAM and Portal together?

2006-11-17 Thread js8523
Hi You need to install Jboss AS with the ejb profile (there is an option to install with portal, which they are refering to, don't do this). Once you have installed the Jboss AS with ejb (clustered or not), then add the portal libraries to the server. This way you get the latest ejb3 code, a

[jboss-user] [JBoss Seam] - java.lang.ArrayStoreException: org.apache.commons.collection

2007-10-03 Thread js8523
Hi All This appears to be reapet issue of [#JBSEAM-1158] org.apache.commons.collections.UnboundedFifoBuffer ... Which is marked as closed. Wondered whether it was a new library dependency issue from the maven work between richfaces and seam use of commons-beanutils and commons-collections. N

[jboss-user] [JBoss Seam] - Re: java.lang.ArrayStoreException: org.apache.commons.collec

2007-10-03 Thread js8523
It also looks like Hibernate-all being moved out of lib and placed into lib.test has resulted in the autogenerated entities have a compile error because it cannot find hibernate validators. Perhaps there should be a test suite on seam that generates a seam gen project and puts it through some

[jboss-user] [JBoss Seam] - Re: java.lang.ArrayStoreException: org.apache.commons.collec

2007-10-03 Thread js8523
Hi Pete Just did a clean and compile on seam (after doing a CVS update). (It did not go and fetch the libraries though). Setup a completley new project Dashboard1 using seam setup, then seam new-project. I then do seam new-entity for an entity called User. then run seam explode. I get tw