views:

165

answers:

3

Our MS exchange server doesn't use Imap or pop3 protocols, I am trying to write a client in Java to connect to the exchange server, I guess I wont be able to do this with Java Mail API (if I am not wrong). I tried telnetting the exchange server address with ports 110 and 143 and 25 but with no luck. Can any one suggest if there is an existing API to deal with this scenario, any suggestions are appreciated.

A: 

Got exJello off of Oracle's site. Probably a good place to start.

krs1
A: 

Exchange can be configured to serve IMAP. That would be a lot less trouble than writing a client to talk to it.

Hugh Brackett
A: 

What version of Exchange are you using? Some support web services that could be used. Others have implemented WebDAV, a simple HTTP based protocol. Any of these should get it done for you.

mezmo
its MS Exchange Server version 6.5.7036.0
johng