sendmail() gives Network is unreachable error on one of my computers
2 ビュー (過去 30 日間)
古いコメントを表示
I have two PCs both with Matlab R2014a installed. The following code:
setpref('Internet','SMTP_Server','my_smtp');
setpref('Internet','E_mail','my_email@my_email.com');
sendmail({'my_email@my_email.com'},'My subject');
works on one of my PCs but on the other one it gives an error:
Error using sendmail (line 171)
Could not connect to SMTP host: my_smpt, port: 25;
Network is unreachable: connect
of couse with my real SMPT and email address inserted.
Any suggestions? The PCs are on the same network. One is 32 bit and one is 64 bit, though...
Thanks for any inputs :)
Ben
2 件のコメント
Walter Roberson
2015 年 7 月 25 日
It could be differences in the way you set up your Windows Firewall.
採用された回答
Udaya Mallampati
2015 年 7 月 27 日
This error might be due to a Java Socket Exception, triggered by an interaction between Java 7 and an IPv4 connection. The Java Development Toolkit 7 (JDK) supports IPv6 on Windows machines. When you try to connect to an IPv4 address, JDK7 will use an IPv6 address that was mapped to an IPv4.
To remedy this issue, you would need to use a flag in the java run time. You can follow the below instructions for that:
- Create "java.opts" file in matlabroot\bin\arch folder.
- Write the following line in "java.opts" file:
-Djava.net.preferIPv4Stack=true
- Restart MATLAB.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Web Services についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!