[jboss-user] [Security & JAAS/JBoss] - Re: Identity/Access Management/SSO UseCases

2008-03-18 Thread ovidiucn
Hello, Regarding to JBoss SSO project, are there any plans to provide session management (i.e. view all sessions, terminate a session etc)? Ovidiu View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4137497#4137497 Reply to the post : http://www.jboss.com/index.

[jboss-user] [JBoss Portal] - Re: Moving Portlet Windows

2007-05-07 Thread ovidiucn
anonymous wrote : Interesting feedback probably that the DnD should not be enabled for maximized regions at all. | if you modify org.jboss.portal.theme.impl.JSPLayout and modifiy it with : ... | it should prevent maximized region to be draggable, could you try that ? | Thank you! Problem

[jboss-user] [JBoss Portal] - Re: Moving Portlet Windows

2007-05-04 Thread ovidiucn
Another problem: Assuming you are in dashboard, have you noticed that if you maximize a portlet and try to move it, although there is only one maximized region it will stick to the same coordinates (i.e. the position does not change). BUT! Once you hit the normal action mode, the dashboard will

[jboss-user] [JBoss Portal] - Re: Moving Portlet Windows

2007-05-04 Thread ovidiucn
Does anybody know why the order of the portlet windows is not consistent in dashboard? For instance, place several portlets in the dashboard, then start moving them around but remember their last position; then, refresh the page (F5). You will observe that the order of the portlets is not as th

[jboss-user] [JBoss Portal] - Renderer(s) not applied

2006-11-30 Thread ovidiucn
Hello! I have modified the default DivDecorationRenderer and deployed the new render set. I have created a new page to use this new renderset. Unfortunately, it seems that the portal doesn't apply the new render set. Once i'm logged in, it does apply my renderers. Is there a problem, any idea

[jboss-user] [JBoss Portal] - Re: header content injection

2006-10-25 Thread ovidiucn
anonymous wrote : You could simply make it a 'hardcoded' reference in the layout's jsp | | Otherwise you'll need to add it the each theme that you are using (it's one line in the theme descriptor for each theme that you'd have to add) This sounds like a good idea. But, again i'll be facing

[jboss-user] [JBoss Portal] - Re: header content injection

2006-10-25 Thread ovidiucn
anonymous wrote : Look at section 6.1.3.1 in the Reference guide at the < header > node: http://docs.jboss.com/jbportal/v2.4/reference-guide/en/html/xmldescriptors.html#descriptors_portlet Yes, we can inject some header links & javascript files using the jboss portlet DDs; but the portlet has t

[jboss-user] [JBoss Portal] - header content injection

2006-10-24 Thread ovidiucn
Hello! I have noticed that, using the *-themes.xml or jboss-portlet.xml files we can instruct the portal to inject some css/scripts in the header. I have a common js library file and i want it to be included in all portal pages no matter what theme/layout is selected/deployed. Is this possible?

[jboss-user] [JBoss Portal] - Changing portal-server.war configurations

2006-09-18 Thread ovidiucn
Hello! I'm trying to migrate an existing application to JBoss Portal. I need some advice regarding the resources located in the portal-server.war application. To successfully configure the authentication module i have to modify the 'portal-server.war' module (security domain, login/er

[jboss-user] [JBossWS] - Re: WSDL SOAP ADDRESS REPLACE_WITH_ACTUAL_URL

2006-09-15 Thread ovidiucn
Thanks! The workaround with @PortComponent (transportGuarantee="CONFIDENTIAL") annotation does the job. Ovidiu View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971939#3971939 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply

[jboss-user] [JBossWS] - WSDL SOAP ADDRESS REPLACE_WITH_ACTUAL_URL

2006-09-08 Thread ovidiucn
Hello, I have implemented a web service as a servlet endpoint and i'm trying to secure the communication between client & server (SSL). I have enabled the https server connector (8443). Right now, I'm stuck because i'm trying to change the soap address in the generated wsdl file. I have already

[jboss-user] [JBoss Seam] - Re: Stateless Injection

2006-08-04 Thread ovidiucn
Hello! It seems i discovered the problem. I was using several ejb jar files and by accident, in the jar which contained the Stateless bean i forgot to put the META-INF/ejb-jar.xml file. Now, everything is OK. Thank you guys for your support, Ovidiu View the original post : http

[jboss-user] [JBoss Seam] - Re: Stateless Injection

2006-07-27 Thread ovidiucn
Ok... I think i forgot something. I'm using also facelets and i have also overriden the default suffix property in web.xml file; that is: | | javax.faces.DEFAULT_SUFFIX | .xhtml | | so calling for *.xhtml files works. The part in which i'm calling the

[jboss-user] [JBoss Seam] - Re: Stateless Injection

2006-07-26 Thread ovidiucn
Ok. /* WEB-INF/classes/seam.properties exists & is empty */ /* service-security.jar#!seam.properties exists & is empty */ /* ejb-jar.xml */ | | | | * | org.jboss.seam.ejb.SeamInterceptor | | | | /* WEB-INF/components.xml */ | |

[jboss-user] [JBoss Seam] - Re: Stateless Injection

2006-07-25 Thread ovidiucn
Thank you for being so quick. /***/ /* local interface */ @Local public interface UserManagementLocal { public Collection getUsers (); } /***/ /* business logic */ @Name("userManagement") @Stateless public class UserManagem

[jboss-user] [JBoss Seam] - Stateless Injection

2006-07-24 Thread ovidiucn
Hello! I encountered a strange behaviour of the stateless components. It seems that, even i'm requesting the container to inject a certain bean, the injection never occurs and, of course the value of the bean is null. If i'm removing the @Stateless annotation, it works just fine. Can anybody h