[JBoss-user] [JBoss Portal] - Re: Struts, JSF or Spring for Portlets?

2006-05-09 Thread schnelzer
I recommend using JSF for the front end and EJB3 (which for JBoss uses Hibernate under the hood). We are using this architecture on a number of portal projects and it is working well. In my experience, JSF is the dominant model for building portlets, so you will get better support for JSF base

[JBoss-user] [JBoss Portal] - Re: Any Reference sites using JBoss Portal??

2006-05-04 Thread schnelzer
We are using the JBoss Portal for a Navy Information portal used globally. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3941330#3941330 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3941330 --

[JBoss-user] [JBoss Portal] - Re: JOSSO and JBoss Portal

2006-05-04 Thread schnelzer
You can create a separate web application just for authentication (assign it to the root context if you want) that has a JAAS login module. In the login webapp specify your security domain in jboss-web.xml | | java:jaas/yourJaasDomain | / | | Then modify the JBoss Portal's

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0.2RC1 - Released

2006-02-09 Thread schnelzer
Thanks Julien. This is very helpful. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922689#3922689 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922689 --- This SF

[JBoss-user] [JBoss Portal] - Re: Customize Navigation Portlet

2006-01-24 Thread schnelzer
I added the ability to sort tabs and specify tab labels using a resource properties file. The JIRA task is http://jira.jboss.com/jira/browse/JBPORTAL-585. Let me know if you have any questions on how to use it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p

[JBoss-user] [JBoss Portal] - Re: LDAP and portal 2.2.1RC1

2006-01-19 Thread schnelzer
Stefan, The answer to you question is in this thread http://www.jboss.org/index.html?module=bb&op=viewtopic&t=75745. The thread should be here in the user forum, but it's not. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3918454#3918454 Reply to the post

[JBoss-user] [JBoss Portal] - Re: jbpm webapp as jportal portlet !!

2006-01-13 Thread schnelzer
I'm interested in this too, but haven't made time try it yet. The exception you are getting is because a MyFaces JSF Tomahawk component (HtmlNavigationMenuRender) is probably casting a request to a HttpServletRequest. This is the case for a number of the Tomahawk components. If you are not u

[JBoss-user] [JBoss Portal] - Re: org.jboss.portal.property.nodecoration ignored??

2006-01-12 Thread schnelzer
Can the corrected version of the docs be posted to the download link? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3917153#3917153 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3917153 ---

[JBoss-user] [JBoss Portal] - Re: Convenient way to test self-developed portlets?

2006-01-11 Thread schnelzer
Include a web.xml file in your portlet's WEB-INF directory. Touch the web.xml file (put in a space and save it). JBoss AS will hot deploy (reload) your your portlet for you. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3916896#3916896 Reply to the post :

[JBoss-user] [JBoss Portal] - Re: JBoss Portal with SEAM. Does it make sense and is it pos

2005-12-22 Thread schnelzer
At the last Seam webinar Gavin and Thomas said that they just made the necessary changes for Seam to work in the Portal. I believe the major changes were to integrate with the Portlet session and not specifically use an HttpServletRequest. I don't think they have posted a new release of Seam y

[JBoss-user] [JBoss Portal] - SessionInvalidatorInterceptor.signOut();

2005-11-30 Thread schnelzer
I saw the new method for logging out in SessionInvalidatorInterceptor public static void signOut() |{ | localSignOut.set(Boolean.TRUE); |} | Could I add a servlet to the portal-server.war that does nothing but call the SessionInvalidatorInterceptor.signOut()? I'll point a

[JBoss-user] [JBoss Portal] - Re: Sharing data between portlet

2005-11-08 Thread schnelzer
Did you deploy all of your portlets in the same war file (all portlets in one portlet.xml). If so, then it should work if you are using the portlet application scope. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3906010#3906010 Reply to the post : http:/

[JBoss-user] [JBoss Portal] - Re: Are explicit id attributes required on JSF components?

2005-11-07 Thread schnelzer
It may be a difference between the portlet controller and the Servlet controller. MyFaces uses the javax.faces.webapp.FacesServlet Servlet for a Webapp and the org.apache.myfaces.portlet.MyFacesGenericPortlet for portlets. Just a thought? View the original post : http://www.jboss.com/index.h

[JBoss-user] [JBoss Portal] - Re: Portlets and EJB3

2005-11-04 Thread schnelzer
Any word on when JBoss Seam and Facelets will work in the Portal? That will make EJB3 really cool for portlets. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3905544#3905544 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply

[JBoss-user] [JBoss Portal] - Re: Jboss Portal Websites?? Are there any??

2005-11-04 Thread schnelzer
We are using it for a world wide DoD app with ~300 concurrent users. It requires a secure log in so it can't be demonstrated. I've also participated in developing JBoss Portal implementations for a number of fortune 100 companies. All of these are corporate apps that require logins. View the

[JBoss-user] [JBoss Portal] - Re: Is there any way to force a user login when portal is ac

2005-09-27 Thread schnelzer
If you type the URL as http://localhost:8080/portal/ (note the slash on the end, it will work). You can also modify the login form (jboss-portal.sar/portal-server.war/login.jsp) to submit the login form to "/portal/j_security_check". This is not ideal as it is not correct according to the Ser

[JBoss-user] [JBoss Portal] - Re: two portles using myfaces and navigation

2005-09-27 Thread schnelzer
Sure, send it to me and I'll take a quick look. We're doing JSF portlet development too, so I'd like to know if this is an issue. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3897409#3897409 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[JBoss-user] [JBoss Portal] - Re: two portles using myfaces and navigation

2005-09-26 Thread schnelzer
Can you try this again with Portal 2.0 Final (instead of 2.0.1 RC1)? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3897284#3897284 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3897284 --

[JBoss-user] [JBoss Portal] - Re: Is there any way to force a user login when portal is ac

2005-09-26 Thread schnelzer
For your first question, edit the web.xml in jboss-portal.sar/portal-server.war/WEB-INF. Change the first security constraint from /auth/* to /* View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3897283#3897283 Reply to the post : http://www.jboss.com/index.h

[JBoss-user] [JBoss Portal] - Re: JBossPortal and Single sign-on

2005-08-24 Thread schnelzer
Yes we have implemented single sign on View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3891448#3891448 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3891448 --- SF.Net

[JBoss-user] [JBoss Portal] - Re: PermGen Space

2005-08-23 Thread schnelzer
In your run.bat or run.sh try setting the MaxPermSize and PermSize to 128m. We did this and its seems to have solved the issue for us. The setting are -XX:PermSize=128m and -XX:MaxPermSize-128m. The are some tools in JDK 1.5 bin directory if you are using 1.5 that are helpful. View the origi

[JBoss-user] [JBoss Portal] - Re: Creating a custom user page

2005-07-10 Thread schnelzer
Julien, that's very cool. Let us know if there is some way we can help with this one. Thanks, Doug. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884312#3884312 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884312

[JBoss-user] [JBoss Portal] - Re: Creating Your Own jboss-portal.sar

2005-07-10 Thread schnelzer
We just deployed a portal with many application portlets. You don't need to use the JBoss Portal user management. We accomplished this by creating our own JAAS configuration and just modifying the web.xml files in the jboss-portal.sar to use our security realm instead of the default JBP securi

[JBoss-user] [JBoss Portal] - Creating a custom user page

2005-07-10 Thread schnelzer
What is the status on the ability for a user to create a custom page and select from a list of available portlets to add to their custom page? I did a search of the forums and JIRA, but didn't come up with much. I saw the http://jira.jboss.com/jira/browse/JBPORTAL-226 feature request, however

[JBoss-user] [JBoss Portal] - Re: JBoss Portal and existing web applications

2005-04-22 Thread schnelzer
We are currently using the Struts-Bridge to include Struts based applications in our JBoss Portal implementation View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3875117#3875117 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply