Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem in connecting microsoft exchange server active directory with java using Java Mail. it is throwing an exception

javax.mail.MessagingException: No login methods supported!;

or sometimes

com.sun.mail.iap.ConnectionException: 220

i just want a simple idea to how to actually connect with an exchange server active dirrectory.

share|improve this question

1 Answer

I am afraid that you did not enable SNMP support on your exchange server. Check it. Exchange server supports various protocols but its default protocol is proprietary, while Java mail API works with SNMP.

share|improve this answer
1  
Why is it related to SNMP? Do you mean SMTP? – Harvey Kwok Jan 12 '11 at 22:19
Domain joined clients connect to Exchange via MAPI by default, which is available to other email clients. If it's a non-domain joined client, the only other piece to configure is RPC proxy (RPC over HTTP/S); SMTP never comes into play (assuming messages at least getting to the server normally). If you cannot get MAPI to work, POP and IMAP are still viable options. – Gary May 4 '11 at 13:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.