[jboss-user] [Clustering/JBoss] - How to define HAJNDI

2008-08-20 Thread jimmy6
I want to cluster a User object among all server. I know HAJNDI can do that but how to define the user object inside cluster wide context and get it back from jndi lookup? I just saw the following code in the documentation. How about define it? Properties p = new Properties();

[jboss-user] [JBoss Seam] - Re: Use jsf and seam navigation rule together

2007-06-29 Thread jimmy6
I know jboss seam is using annotation to define the scope which is not same as ordinary jsf. Thus, can i use jboss type scope and odinary jsf scope together within project. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4059095#4059095 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Use jsf and seam navigation rule together

2007-06-28 Thread jimmy6
could i still use the session,request and application scope? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058608#4058608 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058608

[jboss-user] [JBoss Seam] - Use jsf and seam navigation rule together

2007-06-27 Thread jimmy6
How to configure additional xml file of jsf navigation rule and seam navigation rule(pages.xml)? With javax.faces.CONFIG_FILES?? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058122#4058122 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Use jsf and seam navigation rule together

2007-06-27 Thread jimmy6
Can i use both together? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058322#4058322 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058322 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Configuration of just using seam taglib

2007-06-24 Thread jimmy6
I have gone through validateTag and validationAllTag. But i cant see any javascript/ajax code there and hibernate validation. Why? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4057229#4057229 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Configuration of just using seam taglib

2007-06-24 Thread jimmy6
I know seam validation tag lib is using ajax4jsf but base on the code investigation. it is go to the validateTag and validationAllTag class Which do not have ajax4jsf code there. Maybe i do not understand how the framework work. Could you explain to me how the validation tag triggers the

[jboss-user] [JBoss Seam] - Re: Configuration of just using seam taglib

2007-06-23 Thread jimmy6
Could you show me where is the ajax code for validation? I cant find on the source. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4057132#4057132 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4057132

[jboss-user] [JBoss Seam] - Configuration of just using seam taglib

2007-06-21 Thread jimmy6
How to configure the web.xml for just using seam taglib? I just want to use the hibernate validation feature only. I do not want to use the seam scope(eg. conversation). Beside validation, i want it to follow back the basic jsf mechanism. View the original post :

[jboss-user] [JBoss Seam] - Rollback not work. why?

2007-05-24 Thread jimmy6
I am using jboss-seam-1.2.1.GA/JPA example for testing the @ApplicationException(rollback=true). The following is my code. The problem is the user will store in DB without rollback. Why? em.persist(user); facesMessages.add(Successfully registered as #{user.username});