Here's a script that I used to configure the WebSphere 6.1 global security setting to use LDAP using Jython. [sourcecode language="python"] # Properties username = "user" password = "pass" ldapServer = "somecompany.com" ldapPort = "389" # Configure the LDAP authentication AdminConfig.save(); # This needs to happen so you can write to the Security file. ltpa …
Continue reading How to configure WebSphere Global Security to use LDAP with Jython