[jboss-user] [JBoss Portal] - Re: Single Signon - Where do I start

2006-11-13 Thread kosmi
Hello bmcgovern, i only can answer your first question. For logging security issues, add the following code to your server/conf/log4j.xml: !-- Category for JBossSecurity -- maybe you must set the console appender to level debug:

[jboss-user] [JBoss Portal] - Re: Single Signon - Where do I start

2006-11-13 Thread kosmi
another try... first code snip: |!-- Category for JBossSecurity -- |category name=org.jboss.security | priority value=DEBUG/ |/category |category name=org.jboss.web.tomcat.security | priority value=DEBUG/ |/category second snip:

[jboss-user] [JBoss Portal] - Re: Single Signon - Where do I start

2006-11-13 Thread kosmi
Hello bmcgovern, your second question is answered in your errormessage: 13:58:50,015 ERROR [UsersRolesLoginModule] A UserRolesLoginModule sends the message, but you defined the login-module code = org.jboss.security.auth.spi.DatabaseServerLoginModule | in ??/web inf/login-config If you

[jboss-user] [JBoss Portal] - Re: MyFaces 1.1.2 Portal 2.4

2006-09-11 Thread kosmi
Hello Alain, its a classloader problem. I solved it by deleting the myfaces.jars from the projects lib folder. Another myfaces.jar is located under C:\appservers\bsp\jboss\server\bsp\deploy\jbossweb-tomcat55.sar\jsf-libs its used for the tomcat administration and contains a faces config which

[jboss-user] [JBoss Portal] - MyFaces 1.1.2 Portal 2.4

2006-09-01 Thread kosmi
Hello, i run in trouble while porting my jsf applications from portal 2.2 to 2.4. The exception: [FacesConfigurator] failed to configure class com.sun.facelets.component.RepeatRenderer java.lang.ClassCastException: com.sun.facelets.component.RepeatRenderer at

[jboss-user] [JBoss Portal] - Re: Logout: Invalidate Session and resetting Principal

2006-08-08 Thread kosmi
Hi Sohil, we solved the Problems assosiated with the principal. Our main problem was a misplaced jbosssx.jar. it was duplicated in server/xxx/libs and server/xxx/deploy/xxx/lib. Then I turned of caching in J aasSecurityManagerService mbean (jboss-Service.xml) and set

[jboss-user] [JBoss Portal] - Re: Logout: Invalidate Session and resetting Principal

2006-07-28 Thread kosmi
Thanks for your answer, but where can I call the method? The JBossActionResponse in the portlet doesn't have such a method. I tried to call it in a custom commandMapper but i also can't find the correct response. Thanks, Daniel View the original post :

[jboss-user] [JBoss Portal] - Re: Logout: Invalidate Session and resetting Principal

2006-07-28 Thread kosmi
Hi Sahil, i tried this, but it does not work. Can I help you with some more infos? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3961569#3961569 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3961569

[jboss-user] [JBoss Portal] - Logout: Invalidate Session and resetting Principal

2006-07-27 Thread kosmi
Hello, i'm trying to perform a logout, I tried to logout via: JBossActionResponse actionResponse = (JBossActionResponse) response; actionResponse.signOut(); request.getPortletSession().invalidate(); in a processAction() method. I also tried to invalidate the httpSession in a customValve. The