在我的应用程序中,我连接到服务器以对用户进行身份验证。这是代码:
try { Properties prop = new Properties(); prop.put("mail.smtp.starttls.enable","true"); prop.put("mail.smtp.auth", "true"); prop.put("mail.smtp.connectiontimeout", 1000); Session session = Session.getInstance(prop, null); Transport transport = session.getTransport("smtp"); transport.connect("mion.elka.pw.edu.pl", 587, registerLog, registerPass); transport.close(); return true; } catch (NoSuchProviderException ex) { Logger.getLogger(RegisterController.class.getName()).log(Level.SEVERE, null, ex); return false; } catch(AuthenticationFailedException ex) { Logger.getLogger(RegisterController.class.getName()).log(Level.SEVERE, null, ex); return false; } catch (MessagingException ex) { Logger.getLogger(RegisterController.class.getName()).log(Level.SEVERE, null, ex); return false; }
我将连接超时设置为1000 ms = 1s,但是它被忽略了。当我调试并设置错误的用户名和密码时,我发现了
javax.mail.MessagingException: java.net.SocketTimeoutException: Read timed out
不是在1000毫秒之后,而是在5000 * 60毫秒之后= 5分钟
怎么了 ?如何减少超时时间?
我通过更改为最新版本的JavaMail(至JavaMail 1.5)解决了我的问题。我在这里写到:http : //openejb.979440.n4.nabble.com/Which-version- of-JavaMail-td4665285.html
感谢大家的帮助,特别是对Bill Shannon的帮助:)