aspose file tools
The moose likes Other JSE/JEE APIs and the fly likes smtp error Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Other JSE/JEE APIs
Reply Bookmark "smtp error" Watch "smtp error" New topic
Author

smtp error

amitpith chand
Greenhorn

Joined: Dec 29, 2012
Posts: 4
My code is


and the cod is giving me following error--
Exception in thread "main" javax.mail.NoSuchProviderException: smtp
at javax.mail.Session.getService(Session.java:784)
at javax.mail.Session.getTransport(Session.java:720)
at javax.mail.Session.getTransport(Session.java:660)
at javax.mail.Session.getTransport(Session.java:640)
at javax.mail.Session.getTransport(Session.java:697)
at javax.mail.Transport.send0(Transport.java:192)
at javax.mail.Transport.send(Transport.java:124)
at Mail.main(Mail.java:28)
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35247
    
    7
Which jar files are you including in your classpath?


Android appsImageJ pluginsJava web charts
amitpith chand
Greenhorn

Joined: Dec 29, 2012
Posts: 4
mail.api.jar...
After including
dsn.jar
imap.jar
mailapi.jar
pop3.jar
smtp.jar

it is giving me following error
Exception in thread "main" javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25;
nested exception is:
java.net.ConnectException: Connection refused: connect
at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1972)
at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:642)
at javax.mail.Service.connect(Service.java:295)
at javax.mail.Service.connect(Service.java:176)
at javax.mail.Service.connect(Service.java:125)
at javax.mail.Transport.send0(Transport.java:194)
at javax.mail.Transport.send(Transport.java:124)
at Mail.main(Mail.java:27)
Caused by: java.net.ConnectException: Connection refused: connect
at java.net.DualStackPlainSocketImpl.connect0(Native Method)
at java.net.DualStackPlainSocketImpl.socketConnect(Unknown Source)
at java.net.AbstractPlainSocketImpl.doConnect(Unknown Source)
at java.net.AbstractPlainSocketImpl.connectToAddress(Unknown Source)
at java.net.AbstractPlainSocketImpl.connect(Unknown Source)
at java.net.PlainSocketImpl.connect(Unknown Source)
at java.net.SocksSocketImpl.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:319)
at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:233)
at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1938)
... 7 more
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35247
    
    7
Is there a mail server running on port 25 of your machine? You will need one in order to send mail. You could use your company's server, though, or the one you use for your personal mail.
amitpith chand
Greenhorn

Joined: Dec 29, 2012
Posts: 4
no there is no mail server ... please suggest.....
i downloaded window smtp server but it is giving me an error... cannot connect to database
i have mysql server..
now i don't know how to connect smtp server and mysql.
or should i download sql 2008

Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35247
    
    7
Each mail server is different - you need to follow the instructions that apply to whichever one you're using. In the past, I've found Apache James pretty easy to get started with.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: smtp error
 
Similar Threads
Email send failure
Sending an email using Javamail
please clear me
NoSuchProviderException: smtp
Sending email in jsp