Where's the mail jar

hi
when i use netweaver 7.0, i can use "Used DC" to add a DC named "mail".
now i develop with nwce, i can not find the dc anymore.
can anyone tell me where it is or which dc(name) i can use it then i can use javamail api.
should i use ext lib project to add and use javamail?
thank you.

Hi,
We need to add the external jar files to use the java mail api.
Please go through this thread.
Adding External Jar in a Webdynpro Dc
to know how to add the jar files to the webdynpro application.
Regards,
gayathri

Similar Messages

  • How to add the mail.jar file to my CLASSPATH ?

    Hi;
    I wish to Instal JavaMail 1.2
    To use the JavaMail 1.2 API, i unbundle the javamail-1_3_1-upd.zip file.....and now, i would like to add the mail.jar file to your CLASSPATH.
    My question is: how do you do this ?
    - ok i did that for CATALINA_HOME & JAVA_HOME but how to add the mail.jar file to my CLASSPATH ??
    1000 thanks.

    I think you're looking for "developer support", not packaged application support. different server, different batch of groups. . .
    Since I have very little contact with devopers, I don't truly know.

  • TS3276 Where is the "Mail Connection Doctor" in MacOS 6.8???

    Where is the "Mail Connection Doctor" in MacOS 6.8???

    macoldone,
    Mail>Window>Connection Doctor.
    Misread your post, my reply was for Lion Mail.
    Message was edited by: Ferd II

  • Where did the mail go?

    A friend sent me pictures he posted on Google+ but he sent the link to my work e-mail.  I tried to forward the email message to my personal icloud account but it never showed up.  My wife tried to forward her copy of the same e-mail and that never showed up either.  I don't use Google or any other online picture posting app.  Do these services prevent forwarding? Or where did the mail go? It's not in my Junk folder.

    Mail troubleshooting - Yosemite
    What does Mail/Window/Connection Doctor Show? If the server is red, select it and look at the Show Details box.
    Troubleshooting sending and receiving email messages
    Troubleshooting sending email messages
    SMTP servers keep going offline

  • Where to set mail.jar,activation.jar

    Hello
    I want to know that
    Where to set the path of activation.jar,mail.jar files
    I am using jsp So plz tell me where i have to save these files
    So that server will access
    pla help
    Shilpa

    If you are using JSP then they should already be in your server. Don't put them anywhere.

  • How to send multiple Recipients using the mail.jar and activation.jar

    hi!
    could somebody help me. how do i send multiple Recipient using mail.jar. when i would input 2email address in to Recipient
    (example: [email protected], [email protected])
    i get a DEBUG: setDebug: JavaMail version 1.3.2
    but if i send a single email it just works properly.
    heres my code
    import java.io.*;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.event.*;
    import javax.mail.internet.*;
    public class SendMail
              public SendMail(String to, String from, String subject, String body)
              //public SendMail(String to)
                   String message_recip = to;
                   String message_subject = subject;
                   String message_cc = "";
                   String message_body = body;
                   //The JavaMail session object
                   Session session;
                   //The JavaMail message object
                   Message mesg;
                   // Pass info to the mail server as a Properties, since JavaMail (wisely) allows room for LOTS of properties...
                   Properties props = new Properties( );
                   // LAN must define the local SMTP server as "mailhost" to be able to send mail...
                   //props.put("mail.smtp.host","true");
                   props.put("mail.smtp.host", "mailhost");
                   // Create the Session object
                   session = Session.getDefaultInstance(props, null);
                   session.setDebug(true);
                   try
                        // create a message
                        mesg = new MimeMessage(session);
                        // From Address - this should come from a Properties...
                        mesg.setFrom(new InternetAddress(from));
                        // TO Address
                        InternetAddress toAddress = new InternetAddress(message_recip);
                        mesg.addRecipient(Message.RecipientType.TO, toAddress);
                        // CC Address
                        InternetAddress ccAddress = new InternetAddress(message_cc);
                        mesg.addRecipient(Message.RecipientType.CC, ccAddress);
                        // The Subject
                        mesg.setSubject(message_subject);
                        // Now the message body.
                        mesg.setText(message_body);
                        // XXX I18N: use setText(msgText.getText( ), charset)
                        // Finally, send the message!
                        Transport.send(mesg);
                   }//end of try
                   catch (MessagingException ex)
                        while ((ex = (MessagingException)ex.getNextException( )) != null)
                             ex.printStackTrace( );
                        }//end of while
              }//end of catch
         }//end of SendMail
    public static void main(String[] args)
              //String t = "[email protected], [email protected]"; - this I think causes error
    String t = "[email protected]";
              String f = "[email protected]";
              String s = "Hello World";
              String b = "the quick brown fox jumps over the lazy dog";
              SendMail sm = new SendMail(t,f,s,b);     
         }//end of main
    }//end of class
    could someone please help me im stuck-up with this. thanx!

    i need it ASAP
    i am a beginner in java and jsp
    Need to knw how can I parse the addresss field
    Below
    is the code
    <code>
    package
    public class EMailBean {
    private String smtp,username,password,from,bcc,subject,body,attachments,cc;
         /*setter*/
         public void setSmtp(String str){this.smtp=str;}
         public void setUsername(String str){this.username=str;}
         public void setPassword(String str){this.password=str;}
         public void setFrom(String str){this.from=str;}
         public void setTo(String str){this.to=str;}
         public void setCc(String str){this.cc=str;}
         public void setBcc(String str){this.bcc=str;}
         public void setSubject(String str){this.subject=str;}
         public void setBody(String str){this.body=str;}
         public void setAttachments(String str){this.attachments=str;}
                                  /*getter*/
         public String getSmtp( ){return this.smtp;}
         public String getUsername( ){return this.username;}
         public String getPassword( ){return this.password;}
         public String getFrom( ){return this.from;}
         public String getTo( ){return this.to;}
         public String getCc( ){return this.cc;}     
         public String getBcc( ){return this.bcc;}
         public String getSubject( ){return this.subject;}
         public String getBody( ){return this.body;}
    public String getAttachments( ){return this.attachments;}
    </code>
    Session session = Session.getDefaultInstance(props, null);
    session.setDebug(true);
    try {
    MimeMessage msg = new MimeMessage(session);
    msg.setFrom(new InternetAddress(mail.getFrom()));
                                  msg.addRecipients(Message.RecipientType.TO, InternetAddress.parse(to, false));
                                  msg.addRecipient(Message.RecipientType.TO,new InternetAddress(mail.getTo()));
                             msg.addRecipient(Message.RecipientType.CC, new InternetAddress(mail.getCc()));
                                  msg.addRecipient(Message.RecipientType.CC, new InternetAddress("[email protected]"));
    msg.setSubject(mail.getSubject());
    // Create the message part
    BodyPart messageBodyPart = new MimeBodyPart();
    // Fill the message
    messageBodyPart.setText(mail.getBody());
    Multipart multipart = new MimeMultipart();
    multipart.addBodyPart(messageBodyPart);
    // Part two is attachment
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(mail.getAttachments());
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName(source.getName());
    multipart.addBodyPart(messageBodyPart);
    msg.setContent(multipart);
    msg.setSentDate(new Date());
    Transport t = session.getTransport("smtp");
    try {
    t.connect(mail.getUsername(), mail.getPassword());
    t.sendMessage(msg, msg.getAllRecipients());
    } finally {
    t.close();
    result = result + "<FONT SIZE='4' COLOR='blue'><B>Success!</B>"+"<FONT SIZE='4' COLOR='black'> "+"<HR><FONT color='green'><B>Mail was successfully sent to </B></FONT>: "+mail.getTo()+"<BR>";
    if (!("".equals(mail.getCc())))
    result = result +"<FONT color='green'><B>CCed To </B></FONT>: "+mail.getCc()+"<BR>";
    if (!("".equals(mail.getBcc())))
    result = result +"<FONT color='green'><B>BCCed To </B></FONT>: "+mail.getBcc() ;
    result = result+"<BR><HR>";
    } catch (MessagingException mex) {
    result = result + "<FONT SIZE='4' COLOR='blue'> <B>Error : </B><BR><HR> "+"<FONT SIZE='3' COLOR='black'>"+mex.toString()+"<BR><HR>";
    } catch (Exception e) {
    result = result + "<FONT SIZE='4' COLOR='blue'> <B>Error : </B><BR><HR> "+"<FONT SIZE='3' COLOR='black'>"+e.toString()+"<BR><HR>";
    e.printStackTrace();
    finally {
    return result;
    }

  • Where is the JMS jar file for CEP?

    I cannot find in any jar finder the JMS jar file for CEP.
    I mean the jar file which includes com.bea.wlevs.adapters.jms.api.InboundMessageConverter, com.bea.wlevs.adapters.jms.api.OutboundMessageConverter, etc.
    Does anybody know the link?
    Thanks!

    Thanks, but it is not there.
    I only have the following:
    com.bea.core.jsmpool_1.7.0.0.jar
    javax.jms_1.1.1.jar
    org.springframework.spring-jms_2.5.6.jar
    And if I cannot find it there, where could it be?
    Thanks!

  • Where is the mail folder in 10.8

    I recently changed from 10.6.8 (snow leopard) to 10.8 (mountain lion).  In 10.6, in the finder window, under the library tab, there was a folder for "Mail".  I was able to copy the folder "Mail" and take it to another computer I have at a different location and keep both computers synched.
    In 10.8, the Mail folder is not there. 
    Where is the application Mail, storing the mail folders with their content?  I want to do the same thing of synching another computer with all of my current mail boxes and content.
    Lee

    It did work!
    Thank You.
    I did notice that the "Mail" folder in the Library maintains the same date, (the date when I installed Mountain Lion, June 11 2013 6:15 PM) even after there are updates and new E-mails comming in.
    The size of the folder does change when I delete (put into trash E-mails) or receive new E-mails, but the date of "date modified" never changes. It stays on June 11, 2013 6:15PM.
    Because the date never changes, it makes it hard to know when i look into "Time Machine", which is the most current Mail folder.
    HELP PLEASE!
    Lee

  • Where is the Applet JAR file?

    When an Applet (the JAR) is downloaded to the local PC, exactly where (the directory) we can locate the Applet JAR file? Is the file managed by the Internet browser?

    This has got to be browser-specific.
    You shouldn't write code that depends on this kind of information anyway.

  • Where is the mail folder use/library in MacOS X 10.7.5 in a Mac Air?

    I would like to know how to find the folder wher the mail application is storing the mails in the MacOS X 10.7.5
    I know is somewhere in mail/ library, but I am unable to find it. Perhaps is hiden and I don't know how to locate it.
    Thank you very much.

    Actually it's in youruser/Library/Mail. The user's Library folder is hidden by default in 10.7 and later, but if you go to Finder, hold down the Option key, and select the Go menu, the Library folder will be shown in the dropdown list and you can open it from there.
    Regards.

  • Where is the mail folder in Mtn. Lion?

    I am setting up Time Machine to back up the files on my iMac.  I want to exclude Applications, the System, and related files for space reasons, but want to make sure that I get a backup of my e-mail files.  I have searched for the MAIL folder but can't find it.  What is the path to where the e-mails are stored in Mountain Lion?  Thanks 

    Hmm - out of curiosity - would the User Library be part of the System deep down in the file hierarchy?
    @ ReidMac:
    Not sure if excluding the System (or Applications for that matter) would be wise - it may prevent you from being able to restore from Time Machine in case your system is borked? If size is of concern - and since Time Machine keeps making backups until the disk/partition is full - have you considered a different backup strategy, such as a bootable clone which needs exactly the same amount of space as your system currently uses?

  • Where is the mail app log?

    I am getting a message that a message is unable to be sent.
    Port is correct.
    Auth is none.
    I'd like to see what response is being given by the SMP server, but running up console, I can't seem to find where the mail app is logging the problem it is having.

    As far as I know mail doesn't log those. It is generally a matter of either connectivity (eg I get it when trying to send a message via a server, but the part of the LAN I am currently using is blocked from accessing that server) or of a valid email address, where the server is able to verify the address because it is local to the server. It may also occur where the both the sender and recipient are outside the domain of the server, but that doesn't sound like your problem.
    If you really want to see what is happening, you will need to run a network sniffer (eg ethereal or MacSniffer).
    AK

  • Where is the mail.log in Leopard

    I can't find the mail.log in the console logs. Where is it?

    I don't see anything in /var/log named mail.log. What am I looking for?
    The details in Mail Connection Doctor would be perfect if they are logged somewhere. I'm fairly new to Apple and see they log just about everything else.
    I'm having intermittent password issues with Mail where it does not connect to the mail server and I have to enter my password even though it's stored in the keychain. I'd like to see a connection log that I can look over to try and find the problem. I think it's a problem with my ISP. The error does not happen on a regular basis and I've never had Connection Doctor running when it has happened and thought there might be a mail log somewhere.

  • Where is the jstl.jar in Jee5 ???

    I very lost. The jee5 say that it include jstl . but where is the library ??? and if not , each library should I get it to work with tomcat ???
    thank

    regarding your question you can find it in appserv-rt.jar file located at
    C:\Sun\AppServer\lib\appserv-rt.jar

  • Where does the Mail cache file reside?

    My email inbox suddenly doesn't show anything newer than April 2011. The last time this happened, Apple Care walked me through deleting an AOL or Mail cache file, but I can't find it now. Where does the archived mail cache hide?

    If you have iTunes set to consolidate your Library, then yes, you have 3 copies of the movie, USB, ITunes library folder, and iPad.
    If not, then iTunes merely adds a pointer to the current location of the file, and then copies it over to the iPad.
    If the USB is removed, the movie is still technically part of the library, but will not be accessible, it will show up grayed out and not be playable.

Maybe you are looking for

  • Generating BIP report in RTF format generates blank report

    Hi all, When generating a BIP report in RTF format the report output is blank!? If I run the report in any other format the report displays the data correctly. We're running siebel 8.1.1.2 and BIP 10.1.3.4.1. When looking at the size of the report wh

  • Adobe Reader 8.1.2 and MAC OS X 10.4.11

    Hi, Just installed Adobe Reader 8.1.2 and when I try to open a .pdf, the file opens for around 5seconds and then disappears and Reader closes without any apparent error message. In all my years of using free Acrobat (now reader? - why the change in n

  • Updating data in webdyn pro

    hi experts, I have created an application in webdynpro abap which has 3 views, one for log-in, 2nd for a questionnaire and 3rd for feedback. - I want to know if i move from view to another and then try to save the data, will it flush the data from th

  • RH8 issue with popups

    Hi there, I am using RH8 on Windows XP. I am working on a very large, legacy project that has been around for ages. In many, many topics there are popups which take you to a secondary topic for syntax information. Each subheading in the secondary top

  • Can't import contact list

    can't import contact list to addresss book on new Mac.