別の変換ソケット例外があります。Stackoverflow は私を関連する回答にリンクし、そこで人々が提案するすべてのことを行いました。
ここに例外の説明があります:
スレッド「メイン」での例外 javax.mail.MessagingException: ソケットを TLS に変換できませんでした。ネストされた例外は次のとおりです: java.net.SocketException: java.security.NoSuchAlgorithmException:
com.sun.mail.smtp.SMTPTransport での実装の構築エラー (アルゴリズム: デフォルト、プロバイダ: SunJSSE、クラス: sun.security.ssl.SSLContextImpl$DefaultSSLContext) com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:648) の .startTLS(SMTPTransport.java:1880) MailMessenger.java:414) at alfa.runner.main(runner.java:38) 原因: java.net.SocketException: java.security.NoSuchAlgorithmException: エラー
javax.net.ssl.DefaultSSLSocketFactory.throwException(不明なソース) で javax.net.ssl.DefaultSSLSocketFactory.createSocket(不明なソース) で実装 (アルゴリズム: デフォルト、プロバイダ: SunJSSE、クラス: sun.security.ssl.SSLContextImpl$DefaultSSLContext) を構築しています) com.sun.mail.util.SocketFetcher.startTLS(SocketFetcher.java:432) で com.sun.mail.smtp.SMTPTransport.startTLS(SMTPTransport.java:1875) で ... 4 以上 原因: java.security .NoSuchAlgorithmException: 実装の構築中にエラーが発生しました
(アルゴリズム: デフォルト、プロバイダー: SunJSSE、クラス:
sun.security.ssl.SSLContextImpl$DefaultSSLContext) で java.security.Provider$Service.newInstance(不明なソース) で sun.security.jca.GetInstance.getInstance(不明なソース) で sun.security.jca.GetInstance.getInstance(不明)ソース) javax.net.ssl.SSLContext.getInstance (ソース不明) javax.net.ssl.SSLContext.getDefault (ソース不明) javax.net.ssl.SSLSocketFactory.getDefault (ソース不明) com.sun.mail .util.SocketFetcher.startTLS(SocketFetcher.java:427) ... 5 つ以上 原因: java.lang.NullPointerException at sun.security.ssl.KeyManagerFactoryImpl$SunX509.engineInit(Unknown Source) at javax.net.ssl.KeyManagerFactory .init (不明なソース) は、sun.security.ssl.SSLContextImpl$DefaultSSLContext.getDefaultKeyManager(不明) にあります。
ソース)
の sun.security.ssl.SSLContextImpl$DefaultSSLContext.(不明なソース) の sun.reflect.NativeConstructorAccessorImpl.newInstance0(ネイティブ メソッド) の sun.reflect.NativeConstructorAccessorImpl.newInstance(不明なソース) の sun.reflect.DelegatingConstructorAccessorImpl.newInstance(未知のソース) java.lang.reflect.Constructor.newInstance(未知のソース) で java.lang.Class.newInstance(未知のソース) ... 12 詳細
そこで、2 つの追加クラスを作成することにしました。
package XMailMessenger;
import javax.net.ssl.X509TrustManager;
import java.security.cert.X509Certificate;
/**
* @author Raminderjeet Singh
*/
public class DummyTrustManager implements X509TrustManager {
public void checkClientTrusted(X509Certificate[] cert, String authType) {
// everything is trusted
}
public void checkServerTrusted(X509Certificate[] cert, String authType) {
// everything is trusted
}
public X509Certificate[] getAcceptedIssuers() {
return new X509Certificate[0];
}
}
そして2番目のもの:
package XMailMessenger;
import java.io.IOException;
import java.net.InetAddress;
import java.net.Socket;
import javax.net.SocketFactory;
import javax.net.ssl.*;
/**
* @author Raminderjeet Singh
*/
public class DummySSLSocketFactory extends SSLSocketFactory {
private SSLSocketFactory factory;
public DummySSLSocketFactory() {
try {
SSLContext sslcontext = SSLContext.getInstance("TLS");
sslcontext.init(null,
new TrustManager[] { new DummyTrustManager()},
null);
factory = (SSLSocketFactory)sslcontext.getSocketFactory();
} catch(Exception ex) {
// ignore
}
}
public static SocketFactory getDefault() {
return new DummySSLSocketFactory();
}
public Socket createSocket() throws IOException {
return factory.createSocket();
}
public Socket createSocket(Socket socket, String s, int i, boolean flag)
throws IOException {
return factory.createSocket(socket, s, i, flag);
}
public Socket createSocket(InetAddress inaddr, int i,
InetAddress inaddr1, int j) throws IOException {
return factory.createSocket(inaddr, i, inaddr1, j);
}
public Socket createSocket(InetAddress inaddr, int i)
throws IOException {
return factory.createSocket(inaddr, i);
}
public Socket createSocket(String s, int i, InetAddress inaddr, int j)
throws IOException {
return factory.createSocket(s, i, inaddr, j);
}
public Socket createSocket(String s, int i) throws IOException {
return factory.createSocket(s, i);
}
public String[] getDefaultCipherSuites() {
return factory.getDefaultCipherSuites();
}
public String[] getSupportedCipherSuites() {
return factory.getSupportedCipherSuites();
}
}
最後に、メールを送信するメソッドがあります。
Properties props = new Properties();
props.put("mail.smtp.host", currentSettingsDocument.getSMTPHostServer());
props.put("mail.smtp.user", currentSettingsDocument.getLogin());
props.put("mail.smtp.password", currentSettingsDocument.getPassword());
props.put("mail.smtp.port", "465");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.timeout" , "3000");
props.put("mail.smtp.starttls.enable", "false");
props.put("mail.smtp.socketFactory.port", "465");
props.put("mail.smtp.socketFactory.fallback", "false");
props.put("mail.smtp.ssl.trust", "smtp.gmail.com");
props.put("javax.net.debug","ssl,session");
// Required to avoid security exception.
Authenticator authentication = new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(currentSettingsDocument.getLogin() ,
currentSettingsDocument.getPassword());
}
};
Session session = Session.getInstance(props, authentication);
// create some properties and get the default Session
// create a message
MimeMessage msg = new MimeMessage(session);
// set the from and to address
InternetAddress addressFrom = new
InternetAddress(currentSettingsDocument.getSenderMail());
msg.setFrom(addressFrom);
for(InternetAddress addr: recepients )
msg.addRecipient(Message.RecipientType.TO, addr );
// Optional : You can also set your custom headers in the Email if you
//
// msg.addHeader("MyHeaderName", "myHeaderValue");
// Setting the Subject and Content Type
msg.setContent("1111", "text/plain");
Transport transport = session.getTransport("smtp");
Document.getSMTPHostServer(), Document.getPassword());
transport.connect(currentSettingsDocument.getSMTPHostServer(), 465,
transport.sendMessage(msg, msg.getAllRecipients());
transport.close();
sendMessageを呼び出した後、例外が発生します。
окт 18, 2013 5:36:18 PM XMailMessenger.MailMessenger sendMail SEVERE: null javax.mail.MessagingException: Exception reading response; ネストされた例外は次のとおりです: java.net.SocketTimeoutException: 読み取りタイムアウト
PS Googleメールは正常に動作します