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

2007-09-29 Thread palace
Dan Allen is also in the process of writing Seam in Action. Read more here: http://www.mojavelinux.com/blog/archives/2007/09/announcing_seam_in_action/ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4089963#4089963 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Splitting a big portlet

2007-02-21 Thread palace
My suggestion is that you use a webframework like JSF. It will help you organize your application in terms of views and controllers. If you write a big portlet it will be a big mess :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4019808#4019808 Reply to the

[jboss-user] [JBoss Portal] - Re: JSF components in a portlet environment

2007-02-21 Thread palace
Is anybody using the t:saveState component? Apparently it's not working. Would like to be 100% sure before I update the Wiki. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4019962#4019962 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Showing a secured page when user is logged in

2007-02-08 Thread palace
To solve a similar problem I created my own login module that checks that the user exists in LDAP first. If this is so and the user doesn't exist in the portal DB, it creates it (with same username and password), using the user and roles module that you can get from JNDI. It also creates roles

[jboss-user] [JBoss Portal] - Re: renderURL problem for Logout Page

2007-02-07 Thread palace
You should instead create a link with portlet:actionURL in your JSP and then in processAction() use the signOut() method in the JBossActionResponse object. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4012393#4012393 Reply to the post :

[jboss-user] [JBoss Portal] - Re: problem in logout

2007-02-07 Thread palace
In jboss-portal.sar\conf\data\default-object.xml change the portal name from default to something else and then name your own portal default. Maybe that helps. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4012396#4012396 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Portlet Taglib and Facelet XHTML?

2007-01-31 Thread palace
What do you want to do? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4008810#4008810 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4008810 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Re: Struts Portlet

2007-01-29 Thread palace
I have used JSF with success. It's time to forget Struts :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4007795#4007795 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4007795 ___

[jboss-user] [JBoss Portal] - Re: Integrating existing Struts based application within the

2006-11-16 Thread palace
Are you using Struts Bridge? I successfully deployed a Struts application as a portlet the other day. It is important to remember that all user interaction must go through actions and that all output should be rendered from an ActionForward after action processing. View the original post :