How to read email messages from ms outlook 2003

i am trying to access emails from MS outlook
my email account uses MS exchange server and it supports only mapi
Could anybody please help us to find a solution to acces mails from MS outlook or via mapi in java mail
please reply faster

Faster, faster, faster! I'm going as fast as I can! :-)
JavaMail doesn't support MAPI directly. Search for "JEC" in the
[JavaMail Third Part Products|http://java.sun.com/products/javamail/Third_Party.html] page.
Exchange will also support IMAP, if you can convince your mail server administrator
to enable it.

Similar Messages

  • How to read Email address from TO field

    Hi,
    I am try to read email from outlook using JACOB api. now i can able to read all email from outlook.
    my problem is while i am read TO field for Mail , its return the display name instead of email address.
    please any one tell me how to read email address from TO,CC and BCC field.
    Thanks in advance,
    With Regards,
    Ganesh Kumar.L

    Hi all,
    I am solved my problem,
    First i am getting the Recipients object from mail item object,
    and recipient object i can get all my required details.
    Thanks,
    by
    ganesh

  • How to switch of messages from Microsoft outlook taht i get when updating outlook calendar from Access 2010

    Hi.
    I want to avoid irritating messages from Microsoft outlook when I am sending invitations to a meeting from Access 2010 into outlook.
    We are running a CRM application on a terminal server.
    I get theese messages:  "A program is trying to automatically send e-mail on your behalf. Do you want to allow this..."
    A program is trying to access mail adresses you have stored in outlook". Do you want to allow this..."
    How can I avoid theese messages? They are irritating for our useres.
    I hope anyone have a solution to this problem?

    Hi,
    How did you send invitations to a meeting from Access 2010 into outlook?
    These security warnings appear when a program attempts to access your contact information in the Outlook Address Book, or attempts to send email on your behalf. Please refer to the following article and try the resolution
    described to check the result.
    http://office.microsoft.com/en-in/outlook-help/i-get-warnings-about-a-program-accessing-email-address-information-or-sending-email-on-my-behalf-HA010355062.aspx?CTT=1
    Hope this helps.
    Regards,
    Steve Fan
    TechNet Community Support

  • Would like to know how to read SOAP Messages from SOAP Client

    Hello,
    I am new to Webservices. Here is what I want to do.
    I need to develop a Web Service provider application.
    Here are the tools I am using to develop this application.
    a) WSAD 5.1.2
    b) Axis 1.0 built within WebSphere.
    I do have a WSDL file and I generated the code by using WSAD ==>WebService ==> Generate Java bean skeleton option. I want to know, how I can read the SOAP request message from the generated code and to add new SOAP header element.
    Any help you can provide would be greatly appreciated.

    Depending on the version of WebSphere you are using, there should be a menu option to create a dynamic web project. This will set up the basic structure of the application for you. Also, right-click on the newly created web application and there should be a context menu something like Web Services -> Deploy Web Service. This will do some more under-the-covers work for you.
    The webservices.xml deployment descriptor is only created when you generate your Java interfaces and helper classes. For example, if you are starting with a WSDL, you would right-click on the document, select Web Services -> Generate Java Bean Skeleton, and then follow the couple of dialog boxes afterwards. The webservices.xml document will then be created under the WEB-INF directory.
    I�d be wary of introducing any external web service software into a WebSphere environment. On my last project we ran into a few tricky SOAP API conflicts so we decided to stick with pure IBM implementations wherever possible. That said, this is some sample code that I've recycled from the Monson-Haefel book I've mentioned before:
    package sandbox;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.handler.MessageContext;
    import javax.xml.rpc.handler.soap.SOAPMessageContext;
    import javax.xml.soap.*;
    public class MessageHandlerID extends javax.xml.rpc.handler.GenericHandler{
      QName [] headerNames = null;
      public QName [] getHeaders(){
        if(headerNames == null){
          QName myHeader = new QName("http://speck.net.au/message-id", "message-id");
          headerNames = new QName[] { myHeader };
        return headerNames;
      public boolean handleRequest(MessageContext context){
        String messageID = new java.rmi.dgc.VMID().toString();
        try{
          SOAPMessageContext soapCntxt = (SOAPMessageContext)context;
          SOAPMessage message = soapCntxt.getMessage();
          SOAPHeader header = message.getSOAPPart().getEnvelope().getHeader();
          Name blockName = SOAPFactory.newInstance().createName("message-id","mi","http://speck.net.au/message-id");
          SOAPHeaderElement headerBlock = header.addHeaderElement(blockName);
          headerBlock.setActor("http://speck.net.au/message-id/logger");
          headerBlock.addTextNode( messageID );
          return true;
        } catch(javax.xml.soap.SOAPException se){
              throw new javax.xml.rpc.JAXRPCException(se);
    }It doesn't do much but might give you some ideas.
    You may have already come across this, but I found the following RedBook invaluable:
    Wahli, U., Garcia, G. O., Cocasse, S. and Muetschard, M. (2004). WebSphere Version 5.1 Application Developer 5.1.1 Web Services Handbook. IBM.

  • How to read a message from com port

    i have a gsm modem connect to my pc though a serial port
    how can i read the output from modem and use them in my java program
    many thanks....

    http://java.sun.com/products/javacomm/

  • How to read email IDs from DB and send mails

    Hi,
    i m trying to read a set of e-mail IDs from the DB and sending mails to all those email ids.
    i am getting "null pointer exception". kindly suggest how can i able to send mails to mails to those users
    registered in the db.
    I am reading the e-mail from the db like this :
    Connection con = DriverManager.getConnection("jdbc:oracle:thin:@10.2.0.100:1521:eprocure", "uid",
    "pwd");     
    I am using oracle9iAS.
    Error i m getting :
    java.lang.NullPointerException7/16/04 2:25 PM:
         at javax.mail.internet.InternetAddress.parse(InternetAddress.java:534)
         at javax.mail.internet.InternetAddress.<init>(InternetAddress.java:61)
         at com.ep.util.MailUtility.sendMail(MailUtility.java:163)
         at login.SendMsg._jspService(_SendMsg.java:121)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:508)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:255)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:407)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:330)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:684)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)7/
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
         at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    pls advise.
    keep smiling....
    Debasis

    Based on your stack trace I would say you have a line of code like... = new InternetAddress(something)...and that something is null.
    PC&#178;

  • How to read the messages from the processed Batch session log

    Hi All,
    I am posting an accounting document through FB01 by submitting the report RFBIBL00 along with the file through which a Batch session gets generated in SM35.The Batch session is then processed by submitting the report RSBDCSUB. My code is as shown below:
    SUBMIT rfbibl00 WITH  ds_name = co_file_output
                      WITH callmode = co_batch AND RETURN.
    Process Batch session
      SUBMIT rsbdcsub
        WITH mappe = gv_name_jd
        WITH von   = sy-datlo
        WITH bis   = sy-datlo
         AND RETURN
    My requirement is to capture the document number from the log of the processed batch session. Can anyone suggest me how to go about this.
    Thanks in Advance,
    Vinay B

    Hi,
    check the routine read_bdc_log_plain in program rsbdc_protocol.
    get the data from table APQL and then use the logic.
            bapiret2-id = logtable-logmessage+74(16).
            bapiret2-number = logtable-logmessage+94(3).
            bapiret2-message_v1 = logtable-logmessage+100(20).
            CALL FUNCTION 'BAPI_MESSAGE_GETDETAIL'
              EXPORTING
                id         = bapiret2-id
                number     = bapiret2-number
                textformat = 'ASC'
                message_v1 = bapiret2-message_v1
              IMPORTING
                message    = bapiret2-message.
            WRITE: (60) bapiret2-message.
    Edited by: Keshav.T on Apr 7, 2010 4:23 PM

  • HELP. How to read unread message from Gmail?

    Folder inbox = store.getFolder("INBOX");
              inbox.open(Folder.READ_ONLY);
              FetchProfile profile = new FetchProfile();
         profile.add(FetchProfile.Item.ENVELOPE);
    System.out.println(inbox.getUnreadMessageCount());
    It print out the number of all messages. I just want to get it number of unread message.
    I have bean searching for a long time. Is there any one can help me. I just want to make a Gmail notifier. Ring me when I get unread email.

    Are you using IMAP or POP?
    Did you read the JavaMail FAQ entries about Gmail?

  • How to import address book from Microsofot Outlook 2003 to Entourage?

    Hi there,
    After a lot of internal battles, I've switched to Mac from Windows. I am a new converted. I have been resolving a lot of "compatibility issues" by myself, but a couple of things are still in the arcanes:
    1) I have a CSV file with all my addresses but I can not convert into a Mac file. What do I need to do? Could someone please explain step by step the process?
    2) May I use my Mac Pro as a server also? Or, do you think I need to buy a "real server"?
    Thanks
    Rodo

    Question #1 No personal experience with this software, but other users seemed to have found it to do the trick:
    http://macupdate.com/info.php/id/11918
    Edit: (Sorry, I did not read your question completely, not sure if this software helps with Entourage)

  • HOW TO IMPORT MY EMAILS (MESSAGES) FROM OUTLOOK 2007?

    HOW TO IMPORT MY EMAILS (MESSAGES) FROM OUTLOOK 2007?

    Into what email program on the Mac?
    Mail
    Outlook for Mac '11
    Entourage '04/'08
    Thunderbird
    Eudora
    ... etc
    If it's going into Mail you'll need to do a work around, it's not a "straight" transfer unless you buy a 3rd party application called Outlook2Mac.
    http://www.trickyways.com/2010/08/how-to-transfer-emails-from-outlook-to-apple-m ail/

  • Email messages from my icloud account update on all my devices showing if they have been read and if a reply has been sent.  This does not happen with my tinyworld (TalkTalk) email account.  Can I (how can I) get this to work with TinyWorld?

    Email messages from my icloud account update on all my devices showing if they have been read and if a reply has been sent.  This does not happen with my tinyworld (TalkTalk) email account.  Can I (how can I) get this to work with TinyWorld?

    You have to look at the email protocol being used.  the Apple email system uses IMAP, does Tinyworld use IMAP or POP?
    Does the email system permit delivery receipts to be requested?
    Just some of the things one needs to determine from the information provided by the email service provider.

  • How to delete multiple email messages from my Iphone 5c; email folder?

    How to delete multiple email messages from my Iphone 5C; email folder.

    there used to be option to keep last 50,100,200 messages/emails. We need that back. This is ridiculous to delete one by one.

  • Email messages from my personal email account are being posted (copied) to SMS messages.  I have a new cell device, and this is happening on the new device also.  The copy/forward to SMS is NOT being initiated by my email provider.  How do I end this?

    Email messages from my personal email account are being posted (copied) to SMS messages.  I have a new cell device (swtched from Droid to iPhone) and this is happening on the new device also.  The copy/forward to SMS is NOT being initiated by my email provider, and not by Gmail.   How do I end ûVerizon's forwarding my personal email to SMS? 
    Thanks.

    Maybe I'm missing something but how can Verizon have control over your personal GMail account?  Sounds like you do have your email set up to forward to sms. 
    I have certain emails that are forwarded to me as SMS but that is an option that is enabled on the email side of things and is independent from Verizon.

  • HT201774 How do I delete excess email messages from my iPhone.  There are 300 messages listed, and every time I delete some, more are added from old messages.  How do I limit the number of messages that can appear on my phone?  How can I delete messages i

    How do I delete excess email messages from my iPhone.  There are 300 messages listed, and every time I delete some, more are added from old messages.  How do I limit the number of messages that can appear on my phone?  How can I delete messages in bulk,

    You can't.
    All photos transferred from your computer are stored in the Photo Library. The photos in the album or albums below are not duplicates - they include a pointer to the original photos stored in the Photo Library. This way you can view the photos in a particular album only by selecting the album, or you can view all photos available in all albums by selecting Photo Library.
    Just as with an iTunes playlist. A song cannot be in an iTunes playlist unless the song is in the main iTunes library. Placing a song in a playlist does not duplicate the song. Remove the main iTunes library or the songs from the main iTunes library that are in a playlist and the songs will no longer be in the playlist either. This way you can listen to the songs in the playlist only by selecting the playlist, or all songs in your entire iTunes library by selecting Music under Library in the iTunes source list.
    The same with iPhoto on a Mac. A photo cannot be in an in iPhoto Event or Album unless the photo is in the main iPhoto library. Placing a photo in an Event or Album does not duplicate the photo. This way you can view the photos in an iPhoto Event or Album only by selecting the Event or Album, or all photos in all Events or Albums.

  • How to retrive an Email ID from Microsoft Outlook in Java Programming ?

    Hi,
    Requirement : How would I get the Email lD from Outlook.
    I am developing an application where I receive a mail from it
    in that mail I have two Button One is "Approve" and other is "Reject".
    On each button I had written the separate code.Now I had not put any validation of email ID.
    Like if person who receive a mail who is authorized send a mail to another person for some analysis.
    Here the button are visible to 3rd person so he can go ahead click on button and approve and reject the request.
    To avoid this issue I need your assistance regarding how would I get the email id from outlook
    to which email had sent.
    So I can compare the email ID which I had received from the outlook and
    mail id which I had send it from my application.
    Regards,
    Tushar.

    see this
    outlook - Retrieving mails from MS Exchange Server from Java application - Stack Overflow
    java - How to read email of outlook with javamail? - Stack Overflow
    http://stackoverflow.com/questions/19623068/java-program-to-check-periodically-ms-outlook-for-new-mail

Maybe you are looking for

  • Compatibility with Adobe software

    I've been using Photoshop and Canon EOS cameras for years.  Moved over to iMac about 5 years ago.  So I'm reasonably conversant with the first two areas but by no means am I the world's expert on using Macs - I use it mainly for Photoshop and interne

  • Embed Flash in DW Extension

    Anyone Help!? I'm trying to embed a Flash SWF in a DW extension. So far, so good ( I put it in my Command html page between form tags and it appears). Now I'd like it to communicate back with the JavaScript engine inside DW. Anyone know how? I know t

  • Useradmin link does not work

    Dear all, When I access http://hostname:50000/useradmin, I get the message Application error occurred during the request procession.   Details:   com.sap.engine.services.servlets_jsp.server.exceptions.WebIOException:   Error compiling [/index.jsp] of

  • Opening M2V in FCP

    hi all. i'm new to FCP, was using pinnacle before. i have HD footage i had captured in pinnacle in format M2V, which for some reason unbeknownst to me, puts the audio in one file and the video in a separate file. i'm not sure how to connect the clips

  • Miss erased disk? and reinstall MAC OS X problem!

    NEEDS HELP... very new to mac... "160.04 GB Internal SATA Disk" "Macintosh HD" Im completely erased the "macintosh HD' on my macbook using disk utility.... then i try to reinstall MAC OS on it.... but then it couldnt find any disk to locate the insta