[JBoss Messaging] - Re: Message redistribution
by martin.wickus
<mbean code="org.jboss.jms.server.destination.QueueService"
| name="jboss.messaging.destination:service=Queue,name=OTL-LIFFEF-Send"
| xmbean-dd="xmdesc/Queue-xmbean.xml">
| <depends optional-attribute-name="ServerPeer">
| jboss.messaging:service=ServerPeer
| </depends>
| <depends>jboss.messaging:service=PostOffice</depends>
| <attribute name="DLQ">
| jboss.messaging.destination:service=Queue,name=OTL-LIFFEF-Send-DLQ
| </attribute>
| <attribute name="ExpiryQueue">
| jboss.messaging.destination:service=Queue,name=OTL-LIFFEF-Send-ExpiryQueue
| </attribute>
| <attribute name="SecurityConfig">
| <security>
| <role name="guest" read="true" write="true" />
| </security>
| </attribute>
| <attribute name="Clustered">true</attribute>
| </mbean>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4130084#4130084
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4130084
18 years, 2 months
[Security & JAAS/JBoss] - openLDAP 2.3 integration in Jboss Portal 2.4
by donde
Hi,
I have some difficulties to configure JBoss Portal 2.4 whith OpenLdap 2.3.
this is my login-config.xml :
| <!DOCTYPE policy PUBLIC
| "-//JBoss//DTD JBOSS Security Config 3.0//EN"
| "http://www.jboss.org/j2ee/dtd/security_config.dtd">
| <policy>
| <!-- For the JCR CMS -->
| <application-policy name="cms">
| <authentication>
| <login-module code="org.apache.jackrabbit.core.security.SimpleLoginModule" flag="required"/>
| </authentication>
| </application-policy>
|
| <application-policy name="portal">
| <authentication>
|
| <login-module code="org.jboss.security.auth.spi.LdapExtLoginModule" flag="required" >
| <module-option name="java.naming.factory.initial">
| com.sun.jndi.ldap.LdapCtxFactory
| </module-option>
| <module-option name="java.naming.provider.url">
| ldap://10.210.1.3:389/
| </module-option>
| <module-option name="java.naming.security.authentication">
| simple
| </module-option>
| <module-option name="bindDN">cn=Manager,dc=axione,dc=fr</module-option>
| <module-option name="bindCredential">secret</module-option>
| <module-option name="baseCtxDN">ou=users,dc=axione,dc=fr</module-option>
| <module-option name="baseFilter">(uid={0})</module-option>
| <module-option name="rolesCtxDN">ou=roles,dc=axione,dc=fr</module-option>
| <module-option name="roleFilter">(member={1})</module-option>
| <module-option name="roleAttributeID">member</module-option>
| <module-option name="roleRecursion">-1</module-option>
| <module-option name="roleNameAttributeID">cn</module-option>
| <module-option name="roleAttributeIsDN">true</module-option>
| <module-option name="searchTimeLimit">5000</module-option>
| <module-option name="searchScope">SUBTREE_SCOPE</module-option>
| </login-module>
|
| </authentication>
| </application-policy>
| </policy>
|
|
when i try to login into the portal I have the following error :
"HTTP Status 403 - Access to the requested resource has been denied"
I think there are some configurations to do in the web.xml, but i don't know how !!??
thanks !
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4130077#4130077
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4130077
18 years, 2 months