[jboss-user] [JBoss Seam] - Re: @End from

2007-12-21 Thread Bernix
Hi Christian,from your information,I change the code and it works! I add the propagation=none to the s:link, and it show me a exception that beanB @In can not find the object @Out from beanA,I suppose that's because they are at different context,means a new conversation context is created for

[jboss-user] [JBoss Seam] - @End from join ends all conversations - unexpected action

2007-12-20 Thread Bernix
I have two beans in conversation scope, beanA and beanB. beanA is backing pageA individually,and beanB is backing pageB individually. beanA will begin the long-running conversation in pageA at first, then we jump to pageB, pageB will begin(join=true) beanB. but when we end the joined

[jboss-user] [JBoss Seam] - Re: @End from

2007-12-20 Thread Bernix
I am using JBoss AS 4.2.0GA and Seam 2.0GA View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4114531#4114531 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4114531 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: @End from

2007-12-20 Thread Bernix
Does anyone meet such problem? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4114606#4114606 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4114606 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: @End from

2007-12-20 Thread Bernix
Hi Pete,I am sorry for that. Thanks for your comment. As I knew,the @Begin(join=true) will propagate the conversation context,does it mean the propagated conversation context will be a new context?and different from the previous one? and how can I end the propagated conversation context,and

[jboss-user] [JBoss Seam] - Re: Server.log and large tables

2007-12-18 Thread Bernix
I think you can try to edit the log4j configuration. e.g. edit JBOSS_HOME/server/default/conf/jboss-log4j.xml remove the following: category name=org.jboss.management | priority value=INFO/ |/category | and category name=org.jboss.serial | priority value=INFO/ |

[jboss-user] [JBoss Seam] - Re: where's the documentation about conversation control(ann

2007-12-15 Thread Bernix
Hi,can any one help? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4113146#4113146 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4113146 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - where's the documentation about conversation control(annotat

2007-12-13 Thread Bernix
Hi, I have read the online reference Chapter 27. Seam annotations,but I didn't see any documentations introduce what's the exact meaning for every xml tag of conversation control,and what attributes for them... e.g.: begin-conversation end-conversation etc. Just wondering,where can I find such a

[jboss-user] [JBoss Seam] - Re: Outject doesn't work

2007-12-10 Thread Bernix
ok,get it work...forget this View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4111536#4111536 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4111536 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Outject doesn't work

2007-12-10 Thread Bernix
...it works if I use page parameters,the outject DataModelSelection still not work...what's wrong View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4111567#4111567 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4111567

[jboss-user] [JBoss Seam] - Outject doesn't work

2007-12-09 Thread Bernix
I have an UserListBean, a userList.xhtml page and a userView.xhtml page,and when I try to outject the DataModelSelection,from the list page to the view page,but it doesn't work: UserListBean.java @Stateful | @Scope(SEESION) | @Name(userList) | public class UserListBean implememts

[jboss-user] [JBoss Seam] - About outject and context

2007-11-29 Thread Bernix
I have userList session bean with Session scope,and outject an user object @Stateful | @Name (userList) | @Scope (SESSION) | public class UserListAction implements UserList { | @Out private User user; | ... | } And I have an userEdit session bean with Conversation scope,and

[jboss-user] [JBoss Seam] - how to load Seam components in the servlet?

2007-11-23 Thread Bernix
How to load Seam components in a servlet? For example,the servlet got a HttpRequest with user name and password,and want to use the default Seam component authenticator to login. Another scenario is,the servlet received a HttpRequest with some parameters,and need to load some Seam