So for example:
| <login-module code="org.jboss.security.auth.spi.LdapExtLoginModule" flag="required" >
| <module-option name="java.naming.provider.url">ldap://[server]:389</module-option>
| <module-option name="java.naming.security.authentication">simple</module-option>
| <module-option name="bindDN">cn=[searchuser],O=NISD</module-option>
| <module-option name="bindCredential">[password]</module-option>
| <module-option name="baseCtxDN">O=NISD</module-option>
| <module-option name="baseFilter">(cn={0})</module-option>
| <module-option name="allowEmptyPasswords">false</module-option>
| </login-module>
Where [searchuser] is a user that can search the tree, and [password] is the password for that user. Do I have to specify something extra to make it do a subtree search or does it automatically do that?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4205962#4205962
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4205962
JBoss AS 4.2.3 is the older version and is sort of J2EE 1.4 with EJB3 support thrown in. JBoss AS 5.0.0 is the very latest version and is full Java EE compliant; but has quite a few problems (see the JBossAS5 forum for issues that people are seeing).
Whether you want 4.2.3 or 5.0.0, download the ZIP file that does not have "jdk6" in its name. That one without "jdk6" in its name is for use with JDK5.
You mention mod_cluster. I assume you want to set up a cluster of JBoss AS instances and front-end that with Apache HTTPD. If so, you need mod_jk: http://www.jboss.org/community/docs/DOC-11433
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4205958#4205958
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4205958
Hi Mattheos,
How are you? Hope it is not to late to wish you all the very best for the New Year.
I would ask you for a favor. While you still remember who I am :)
As I was relatively short in Ceetel, and just couple of people were familiar with my activities there, there are not many who can tell about my work. I wouldn't like my work there to be left unnoticed, so I would appreciate if you could give me recommendation on linked in, of course, if you agree and think I deserve one.
Thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4205956#4205956
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4205956
You could try using org.jboss.security.auth.spi.LdapExtLoginModule, and setting baseCtxDN abd baseFilter, like this:
<application-policy name="ldapLogin">
| <authentication>
| <login-module flag="required" code="org.jboss.security.auth.spi.LdapExtLoginModule">
| ...
| <module-option name="baseCtxDN">dc=org</module-option>
| <module-option name="baseFilter">(cn={0})</module-option>
| ...
| </login-module>
| </authentication>
| </application-policy>
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4205949#4205949
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4205949