• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Error in Sending Attachments using jsp

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi all,
i need help for coding for attachments in JSP
i had tried the following code
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
@ page import="java.io.IOException"
@ page import="java.util.Properties"
@ page import="java.util.Date"
@ page import="javax.mail.*"
@ page import="javax.mail.internet.*"
@ page import="javax.servlet.*"
@ page import="javax.servlet.http.*"
@ page import="javax.activation.*"
@ page import="java.io.*"
@ page import="java.net.*"
String to="amit_bansal00@yahoo.com";
String subject="Hi";
String matter="India is great";
String from="amit_bansal00@sify.com";
String file="c:/sendmail.txt";
String host="mail.domain.com";
try{
Properties props = System.getProperties();
props.put("mail.host", host);
props.put("mail.transport.protocol", "smtp");
boolean sessionDebug=false;
Session mailSession=Session.getDefaultInstance(props, null);
mailSession.setDebug(sessionDebug);
MimeMessage message = new MimeMessage(mailSession);
message.setFrom(new InternetAddress(from));
message.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
message.setSubject(subject);
MimeMultipart mp = new MimeMultipart();
mp.setSubType("related");
MimeBodyPart mbp1= new MimeBodyPart();
mbp1.setText(matter); // Type your Text Message Here
MimeBodyPart mbp2 = new MimeBodyPart();
FileDataSource fds = new FileDataSource(file);
mbp2.setDataHandler(new DataHandler(fds));
mbp2.setFileName(fds.getName());
mp.addBodyPart(mbp1); // mail body of the message
mp.addBodyPart(mbp2); // Add your attachments here
message.setContent(mp);
message.setSentDate(new Date());
Transport.send(message);
}
catch(Exception e){}
When i execute this code I am getting FileNotFoundException because of it is not taking Attach file. And at that c:\sendmail.txt exists in my system and the code is working properly when i dont include attachment part . I am not able to find out where the problem is so pls guide me where is the error in my code .
Expecting ur reply at the earliest
Regards
Amit Bansal

------------------
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I think there is nothing wrong in the code.I tested it with Lotus
Server and the mail was delivered with the attachment.My guess is, something wrong with the mail server
Pathy
 
author
Posts: 621
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"bansal_amit",
The Java Ranch has thousands of visitors every week, many with surprisingly similar names. To avoid confusion we have a naming convention, described at http://www.javaranch.com/name.jsp . We require names to have at least two words, separated by a space, and strongly recommend that you use your full real name. Please log in with a new name which meets the requirements.
Thanks.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic