Tagged Questions

2
votes
0answers
275 views

Java LDAP with SASL

I am using Java 1.2 with the Netscape ldapjdk.jar and trying to make an LDAP connection to one of our servers that needs SASL. I’m also relativity new to LDAP. I do know that java EE has built in ...
2
votes
5answers
2k views

SMTP with CRAM-MD5 in Java

I need to send email through an (external) SMTP server from Java however this server will only accept CRAM-MD5 authentication, which is not supported by JavaMail. What would be a good way to get ...
1
vote
1answer
266 views

Java, LDAP with MySQL, and authenticating users

There's a few moving pieces to this one, so I'll go through things fairly slowly. I have a java web app that has registered a few thousand users, and stored them in a MySQL DB. The passwords for ...
0
votes
1answer
258 views

java sasl authentication with openldap server

Can anyone see any reason this code doesn't work when ldapwhoami -U portal -h yorktown -Y PLAIN -ZZ works just fine? Is there something I'm doing that isn't equivalent? LDAPConnection connection = ...
0
votes
1answer
705 views

How to use the Java SASL API and CRAM-MD5

I'm currently playing with the Java SASL API and I wrote a little program to simulate a challenge response sequence using CRAM-MD5. However, I'm unsure about how to do this, as SaslClient and ...