Link to home
Start Free TrialLog in
Avatar of harrywillis
harrywillis

asked on

Mail API & Retrying Host

I have a working app that send mail successfully when the mail server is ok (obvious so far!).

What I want to be able to do is detect that the host is not available and retry with a second host.

I'd like to be able to detect this before sending a message, such as in the code:

Session session = Session.getInstance(props, null);
MimeMessage message = new MimeMessage(session);

Where props contains the host name.

I know that the host could fail at any point after this, and during the sending of a particular message.

It would be good to be able to catch an exception (MessagingException?) at the point of making the host connection, and if it fails, try another host. It would be even better to be able to detect the failed host connection during sending each message and retry with another host, but I think that is more difficult, given the connection has already been made.

Any ideas?
Thanks
ASKER CERTIFIED SOLUTION
Avatar of Venci75
Venci75

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of harrywillis
harrywillis

ASKER

Thanks. I want something more like:

try {
  Session session = Session.getInstance(props, null);
  session.getStore("imap").connect(host,username,password);
} catch (MessagingException e) {
  // try connection to 2nd host
}

Or even better, when sending a message and the host cannot be contacted, to retry with another host.
well if Session.getInstance() fails then session will be null. u can check for the null condition and use a While loop to connect to other host. this ways u need only one try and catch and u will be saved form nested try and catch. when connection is sucessful u can break out of while loop.
Avatar of girionis
No comment has been added lately, so it's time to clean up this TA.
I will leave a recommendation in the Cleanup topic area that this
question is:

- points to Venci75

Please leave any comments here within the
next seven days.

PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER !

girionis
Cleanup Volunteer