[jboss-user] [JBoss Seam] - Re: Why PAGE context variable = NULL

2007-12-20 Thread damnh
I want to pass variable mode (or variable with type Object) from /list.xhtml page to /register.xhtml page, I used PAGE scope to pass. @Stateful | @Name(listAction) | @Scope(SESSION) | @Restrict(#{identity.loggedIn}) | public class ListAction implements | IListAction { |

[jboss-user] [JBoss Seam] - Re: Exception

2007-12-19 Thread damnh
My problem is resolved. Thanks Pete View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4114488#4114488 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4114488 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Exception

2007-12-18 Thread damnh
[EMAIL PROTECTED] wrote : Post some info about the logout action. This is my logout button: s:button value=Logout styleClass=button view=/login.xhtml | action=#{identity.logout} rendered=#{identity.loggedIn}/ This is my authenticator: | @Stateless |

[jboss-user] [JBoss Seam] - Why PAGE context variable = NULL

2007-12-18 Thread damnh
Why variable mode = NULL when inject, outject to PAGE scope: | @Stateful | @Name(listAction) | @Scope(SESSION) | @Restrict(#{identity.loggedIn}) | public class ListAction implements | IListAction { | . | @In(required = false) | @Out(required = false,

[jboss-user] [JBoss Seam] - Re: Why PAGE context variable = NULL

2007-12-18 Thread damnh
what is this problem? Please help me View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4114042#4114042 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4114042 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: Exception

2007-12-18 Thread damnh
Pete, what is this problem? Please help mee, thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4114043#4114043 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4114043 ___

[jboss-user] [JBoss Seam] - Re: Exception

2007-12-16 Thread damnh
Please help me??? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4113257#4113257 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4113257 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Exception No page context active when DataModel's scope is

2007-12-11 Thread damnh
Please help me, what is cause of this problem??? This is my code @Stateful @Name(rms.csvListAction) @Scope(SESSION) @Restrict(#{identity.loggedIn}) public class CsvTemplateListAction extends BaseAction implements ICsvTemplateListAction { ...