// the corresponding endpoint doesn't exist on the server, and the
// webservice call fails with a (for the user) cryptic message.
if ("Webservice failed".equals(e.getMessage())) {
String msg = e.getMessage() + ". "
+ WebServiceMessages.getMessage("Authenticate.UnsupportedServerVersion");
IntegrationServerException e2 = new IntegrationServerException(msg, e);
getConfiguration().throwException(url.toString(), e2);
} else {
getConfiguration().throwException(url.toString(), e);
}
} catch (ServiceException e) {