SAP PI Connection Microsoft Exchange Server (Scenario Mail -- SAP PI -- File)

Hi experts,
we want to connect Microsoft Exchange Server to SAP PI. POP3 and IMAP4 is not allowed on mail server side.
But the standard mail adapter in SAP PI  (configured as sender communication channel) only works with POP3 and IMAP4.
Can anyone help me to solve this problem
Thank you for your help.
Mario

Hi Priyadshini,
The way that you have developed your java program can be different that the way that SAP did it. With pop3 in PI, as far as i know, it is no possible to change the read/delete properties that the mail server has by default, as Amit and Ilya mentioned you should try with the imap solution or to talk to the mail server administrators.
Are you sure that the messages is being deleted?, have you checked other mail folders in the user account?, may be the message is being moved.
Regards.

Similar Messages

  • Battery loss after connecting microsoft exchange server

    I am using iphone 3gs. Suddenly I have started loosing my battery after the latest update on itunes. I loose the battery once I connect microsoft exchange server. If I delete the account then the battery stays normal.
    Please Help if anyone have any information on this issue.

    I dont think its a problem with your exchange account as it worked normally before I would try restoring your phone to see if it fixes if not and you are still under warranty take it into a apple store and have a genius look at it

  • Any one have idea how to read microsoft exchange server inbox mail

    I am trying to build a program which can read the mail from exchange server and i found microsoft exchange server is used MAPI protocol for mail server. I did not found anything which can guide me how to read exchange server mail and what ever i found is, i need to use connector to connect with microsoft exchange server.

    The simplest approach is to configure the Exchange server to allow IMAP access.  If you can't do that, you'll need to use one of the third party products that use MAPI to access Exchange.

  • Microsoft Exchange server / OSX / Mail / entourage

    Just a quick question about this, as a friend of my Dad's has been giving him grief because he doesn't ever receive receipts that emails have been received / opened / read etc.
    As far as I know Apple Mail doesn't support Microsoft Exchange Server, but Entourage does - but is it as simple as my Dad using Entourage, or does it need to on a network using Microsoft Exchange Server?
    And if so, does this mean that two, common or garden home PC users using Windows Mail or Outlook wouldn't get email receipts from each other either?

    what would the situation be with two, bog standard home PCs using XP/Vista and Outlook Express/Windows Mail - would they generate and receive receipt notifications with each other?
    Windows Mail and Outlook Express both support receipts (do a web search to find more information and instructions). But they will get receipts only if the receiving email client supports them, so the recipient must also be running one of those two applications or one of the other rare email applications that does. And receipts in Internet-standard email really doesn't mean much; it may return even if the email is selected, or, as is apparently the case with both Outlook Express and Windows Mail, the recipient can disallow sending back the receipt which if true rather defeats the purpose.
    where does the Microsoft Exchange Server come into it, which was what I thought powered these?
    It may or may not. Both Outlook Express and Windows Mail are standard email applications and work with any standard email server. If the ISP/company/organization is using Exchange and has it set up for POP and/or IMAP, you can use any email application with the server including OE or Windows Mail. But you don't get any of the features an Exchange Server provides: shared calendaring, "real" delivery/read receipts (ones the user can't disallow), etc. For those you must use Outlook.

  • Can I get more than one account on iphone microsoft exchange server

    Hi all,
    I was trying to get more than one account on iphone microsoft exchange server for mail, but it seems to only accept one. Is this true with everyone else out there. I guess I am one of the few people with more than one email account that uses microsoft exchange. I would love to have the convience of accessing them through iphone mail but it seems that I will be forced to use safari for the other two by typing owa... in the url.
    any workaround to the one email account per iphone policy??

    Yu can only have one Exchange Server account per device. This is true to iPhone and any Windows mobile device in the market. The work around is to set your other accounts that reside on an Exchange server using IMAP or POP settings as you used to do before the Version 2 update allowed you to sync directly to the Exchange Server. This methode will allow you to add as many accounts as you want or have.

  • Need Documentation on how to intehrate Exchange server 2007 with SAP portal

    hi,
    i need some documentation on how to integrate microsoft Exchange server 2007 with SAP portal.
    can anybody help?

    Hi Payel,
    Pls check the links below..
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/7a/ec015c8446d447a83776d40f31c84f/content.htm">Link</a>
    Note : As specified in the document,  only the following versions of Microsoft Exchange server are supported:
    &#9679;     Exchange Server 2000
    &#9679;     Exchange Server 2003
    Regards,
    Venkat.

  • Error while connecting to Microsoft Exchange server using javamail: "com.sun.mail.util.MailConnectException: Couldn't connect to host, port: host name , 993; timeout -1"

    I am trying to read mails from my outlook microsoft exchange server. Following is the code:
    public void readEmailsFromOutlook(/*String host, String username, String password*/ ) throws MessagingException, IOException {
          String host = "hostname";
          String username = "domain\\username";
          String password = "password"
          // Create empty properties
          Properties props = System.getProperties();
          props.setProperty("mail.smtp.auth","true");
          props.setProperty("mail.store.protocol","imaps");
          props.setProperty("mail.imap.auth.plain.disable","true");
          props.setProperty("mail.imap.host",host);
          props.setProperty("mail.imap.port","993");
          props.setProperty("mail.imap.user",username);
          props.setProperty("mail.imap.pwd",password);
          props.setProperty("mail.imap.debug","true");
          props.setProperty("mail.imap.ssl.protocols","SSL");
          props.setProperty("mail.imap.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
          props.setProperty("mail.imap.socketFactory.fallback", "false");
          props.setProperty("mail.imap.socketFactory.port", "993");
          // Get session
                     Session session = Session.getInstance(props, new ExchangeAuthenticator(username, password));
          session.setDebug(true);
          // Get the store
          Store store = session.getStore("imaps");
          //Store store = session.getStore();
          store.connect(host, username, password);
          // Get folder
          Folder folder = store.getFolder("INBOX");
          folder.open(Folder.READ_ONLY);
          BufferedReader reader = new BufferedReader(new InputStreamReader(
              System.in));
          // Get directory
          Message message[] = folder.getMessages();
          for (int i = 0, n = message.length; i < n; i++) {
            System.out.println(i + ": " + message[i].getFrom()[0] + "\t"
                + message[i].getSubject());
            System.out.println("Read message? [YES to read/QUIT to end]");
            String line = reader.readLine();
            if ("YES".equalsIgnoreCase(line)) {
              System.out.println(message[i].getContent());
            } else if ("QUIT".equalsIgnoreCase(line)) {
              break;
          // Close connection
          folder.close(false);
          store.close();
    But it threw the following error:
    DEBUG: setDebug: JavaMail version 1.5.1
    DEBUG: getProvider() returning javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle]
    DEBUG IMAPS: mail.imap.fetchsize: 16384
    DEBUG IMAPS: mail.imap.ignorebodystructuresize: false
    DEBUG IMAPS: mail.imap.statuscachetimeout: 1000
    DEBUG IMAPS: mail.imap.appendbuffersize: -1
    DEBUG IMAPS: mail.imap.minidletime: 10
    DEBUG IMAPS: trying to connect to host <hostname>,port 993, isSSL true
    com.sun.mail.util.MailConnectException: Couldn't connect to host, port: 10.75.250.60, 993; timeout -1;
      nested exception is:
    java.net.ConnectException: Connection refused: connect
    at com.sun.mail.imap.IMAPStore.protocolConnect(IMAPStore.java:693)
    at javax.mail.Service.connect(Service.java:345)
    at javax.mail.Service.connect(Service.java:226)
    at com.capgemini.utilities.Utilities.readEmailsFromOutlook(Utilities.java:1261)
    Whats wrong with my code?
    Please help!!!!

    You're using the "imaps" protocol, but you've set properties for the "imap" protocol.  Change all the property names from mail.imap.* to mail.imaps.*.
    Also, get rid of all the socket factory properties.
    If you still can't connect, see these connection debugging tips.
    Most likely you're using the wrong host name or port number.  In almost all cases, it's better to just let JavaMail choose the correct port number.

  • I can't connect "new iPad" to my Microsoft exchange server

    I have an iPhone 4 and a "new iPad" both running IOS 5.1. My iPhone 4 is connected to my work Microsoft exchange server but my iPad is having problems. I got my iPad on Friday and set it up that night and it connected to the Microsoft exchange fine however since Monday evening it has stopped working, it kept saying failing to connect to server.
    I removed the account from my iPad and try to add it back on again but it now won't let me add the account and keeps saying no connection to server.
    I have tried resetting my network settings but that didn't help, I have gone on to my work web mail server online and removed every device except my iPhone from the list of devices registered to the account but that hasn't helped.
    Any ideas anyone, particularity interested in how to fix this and also why it worked fine till Monday but then just stopped.
    Thanks in advance.

    Not to worry found out that my work stopped iPad working on their exchange server without seeing the need to tell anyone in advance, but they left the iPhone working.
    Thanks anyway.

  • Problem e-mailing reports after migrating to new Microsoft Exchange server

    Hi,
    I am now unable to e-mail (SMTP) reports to anyone in my company because we just migrated to a new Microsoft Exchange server.  Anyone know how to get rid of this message?
    Status: Failed 
    Printer: The instance is not printed. 
    External Destination: Mail the instance to "____________" with a subject of " %SI_NAME% %SI_STARTTIME% ". 
    Data Refresh Settings:  Use the server defaults. 
    Start Time: 8/4/09 1:00:18 PM 
    End Time: 8/4/09 1:01:07 PM 
    Server Used: gmmc-crs.reportjobserver 
    Error Message: server error. SMTP_E_TCPSOCKET_OPEN(2): CrystalEnterprise.Smtp 
    We tried changing the gmmc-crs.reportjobserver with no luck.
    Thanks,

    Hi,
    You need to start with your exchange logs and possibly enable tracing on your BO webi/crystal/destination job servers (depending on the type of report and whether or not it is scheduled) to get an idea of how far down the line the SMTP connection is getting.
    You could also confirm a few key things:
    Have the SMTP destinations on your BO servers been updated with the new SMTP server info
    Can you telnet to the mail server on port 25 from the BO server -  if not, then check the firewall between the two servers and change the existing ruleset to allow connectivity to the new server
    Possibly the old mail server didn't require authentication and the new server does, you could test this through telnet?

  • XP Outlook 2007 not connecting to exchange server for office365 mail

    Here is the deal it is the workstation it self no one can get there account to connect through outlook on the work station the person who's work station it is can connect with outlook on other work stations.
    1.  First thing it does is continues to prompt for user name/ password window.
    2.  After 2 popups of name/ password It states "Outlook cannot log on.  Verify you are connected to the network and are using the proper server and mailbox name.  The connection to Microsoft Exchange is unavailable.  Outlook must
    be online or connected to complete this action."
    3.  I have then gone through control panel > mail > Show Profiles > Removed the only profile > Add profile > Pop-up for username/ password appears > fill it in > Add new email account then pops-up > fill in Name, Email Adress,
    Password, Retype Password > Configuring - green checkmark on "Establish network connection" - bullet arrow at "Search for johndoe@blankcom server settings" then pop-up for "User Name: Password:" form filled in
     -  pop-up reappears and form filled out  for 10 times > cancel > pop-up "The action cannot be complerted.  The connection to Microsoft Exchange is unavailable.  Outlook must be online or connected to complete this action." >
    Click "OK" >  Microsoft Exchange form pop-up "Microsoft Exchange server:/Mailbox:"  form is already filled out Click "OK" > pop-up "The action cannot be complerted.  The connection to Microsoft Exchange
    is unavailable.  Outlook must be online or connected to complete this action." but green Check mark next to "Search for johndoe@blankcom server settings" >  pop-up "The action cannot be complerted.  The connection
    to Microsoft Exchange is unavailable.  Outlook must be online or connected to complete this action."  Click "OK" > Verify Settings form appears "E-mail Adress: Password: Retype Password:" form filled out click "Retry"
    > green check mark turns to bullet arrow at "Search for johndoe@blankcom server settings" the back to  pop-up "The action cannot be complerted.  The connection to Microsoft Exchange is unavailable.  Outlook must be online
    or connected to complete this action." > Click "OK" >  Microsoft Exchange form pop-up "Microsoft Exchange server:/Mailbox:"  form is already filled out Click "OK" > Cannot Log  on to Server
    > I cancel and seek help
    3. Have ran MCATest Results are auto discover successful with errors.  Errors are as follows
    1>Testing TCP port 443 on host dot.ny.gov to ensure it's listening and open.
    The specified port is either blocked, not listening, or not producing the expected response.
    Additional Details
    A network error occurred while communicating with the remote host.
    2> Analyzing the certificate chains for compatibility problems with versions of Windows.
    Potential compatibility problems were identified with some versions of Windows.
    Additional Details
    The Microsoft Connectivity Analyzer can only validate the certificate chain using the Root Certificate Update functionality from Windows Update. Your certificate may not be trusted on Windows if the "Update Root Certificates" feature isn't enabled.
    Please help

    Yes we have narrowed it back to the workstation as the user can sign on other workstations through outlook and when using the control right click and checking connectivity activity.  This work station tries to connect to the right server name as the
    one that does connect.  But it hangs up there using the same server name,  type- directory, status-connecting then asks for user name password.  No change is status after it is filled out and OK is pressed.

  • TS4532 My iPhone V will not connect to a Microsoft Exchange server. It says that the User Name or Password are incorrect even though they're not and I can log on directly to Exchange using the web browser. The connection worked until IOS 6.1.2 was Install

    My iPhone V will not connect to a Microsoft Exchange server. It says that the User Name or Password are incorrect even though they're not and I can log on directly to Exchange with the same parameters using the web browser.
    I bought the phone when it came out last October. The connection did not work at first, then started without warning in December. It worked perfectly for 2 months then stopped again when IOS 6.1.2 was Installed.
    Help please!

    I have forwarded these questions about the version of Exchange server that is being used and whether Microsoft host the mai themselves to the IT Dept but I will not get a reply from them until tomorrow.
    In the meantime I have also tried:
    Deleting and re-creating the account AGAIN!
    And re-setting the phone (recommended as a solution to a similar problem with an iPad in another forum.
    But please remember that:
    The phone would not connect for 2 months after I bought it
    Then started working unexpectedly in December
    Then stopped working again when IOS 6.1.2. was installed
    Also why am I the only person affected by this when colleagues with iPhone 3s and 4s who use the same mail system are not (I am still trying to find one with an iPhone V to see if their's works).
    Like I said I think that there must be a fault, either with my own phone or with iPhone Vs in general.

  • Cannot connect to an Exchange account in Outlook 2013 using "Microsoft Exchange Server or Compatible Service"

    Dear All,
    I cannot connect to my Exchange account in Outlook 2013 using "Microsoft Exchange Server or Compatible Service".
    First I would like to present my network environment, I have 4 physical servers;
    The first one is holding the Domain Controller 1, IP@: 192.168.1.10
    The second server is holding the additional Domain Controller which it is DC2, IP@: 192.168.1.11
    The third server is holding the Exchange 2013 Mailbox, IP@: 192.168.1.15
    And the last server is holding the Exchange 2013 CAS-HT, IP@: 192.168.1.16
    I am doing the steps below:
    1-Creating a new profile in outlook and start configuring the exchange account by entering the IP address of the Exchange-CAS Server, 192.168.1.16
    2-entering the account name: [email protected]
    3-Go to "More Settings" > "Connection" > "Connect to Microsoft Exchange using HTTP" > and entering the "Exchange Proxy Settings"
    4-type the exchange CAS Server URL, https://192.168.1.16
    5-Check the "Connect using SSL Only"
    6-Authentication Settings: "NTLM Authentication", and pressing Apply
    7-When I press the "Check Name" button, a message occurred> "The action cannot be completed. The connection to Microsoft Exchange is unavailable. Outlook must be online or connected to complete this action".
    8-I go back to the "Exchange Proxy Settings" and I Uncheck the "Connect using SSL Only" and pressing Apply
    9-i press the "Check Name" Button, a small window occurred to enter a Username and Password, so I enter the Administrator username and the administrator password and pressing "OK", but nothing is changed, I tried to enter my
    username and password in the small window and I still got the same result.
    I cannot verify the account name and I cannot complete the process.
    I appreciate you kind assistance.

    Hi,
    To narrow down the cause, I’d like to recommend the following troubleshooting:
    1. Try to login the test account through OWA.
    2. Check the Autodiscover settings: get-clientaccessserver |fl autodiscoverserviceinternaluri
    3. Check the result of directly accessing the following URL:
    https://autodiscover.domain.com/autodiscover/autodiscover.xml
    Thanks,
    Angela
    Angela Shi
    TechNet Community Support

  • Mail bouncing from the Microsoft Exchange Server.

    Hi  All,
               This is Brajesh from Mobinius Technologies. When ever  we are sending mails to our client those  who are using Microsoft exchange server. Our mail are getting rejected as spam content . How to resolve this
    issue. Please help us.   

    Hi,
    According to your description, I understand that failed to send message to recipient and rejected as a spam.
    If I misunderstand your concern, please do not hesitate to let me know.
    I want to double confirm whether all account or some special account contain this domain experience this question, how about internal and external mail flow?
    If this issue only occur on some special recipient, it indicate that target domain may be configured to reject your message, I recommend to contact its administrator to change the setting.
    Otherwise, please try to enable protocol log to get more details about this issue. More details about Protocol logging, for your reference:
    https://technet.microsoft.com/en-us/library/aa997624(v=exchg.150).aspx
    Best Regards,
    Allen Wang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Allen Wang
    TechNet Community Support

  • Hello.....after updating to Yosemite, i can't get my exchange mail to work.  It keeps saying can't connect to exchange server and asks for my password.  My mail is still working fine on android phone and ipad2.  Can someone help?

    Hello....after updating to Yosemite my mail isn't working .  Keeps saying can't connect to exchange server and asking for password

    I am having this exact same problem with my gmail account. Hopefully someone will have a remedy.

  • Can someone help with my Mail not working with my Microsoft Exchange server?

    I am trying to set up my Mail account. I am using the Microsoft Exchange server. I've been using Entourage, but wanted to switch to using the Mac's Mail. I used the same settings I had with Entourage, but with Mac Mail I'm getting this error: MFEWSErrorDomain error 56. From some of the other posts I saw, it seems as though no one has any answers, but I figured I'd ask anyway.

    There is no single cause of this problem and hence no single solution. There are several suggestions in this thread, if you haven't come across it, one of which might help:
    https://discussions.apple.com/thread/3953623?start=0&tstart=0
    Regards.

Maybe you are looking for

  • Post Subcontracting PO using IDOC WMMBID02

    Hello friends, I am trying to use IDOC WMMBID02 (Function module L_IDOC_INPUT_WMMBXY) for posting GR for subcontracting Purchase order. Error message I am getting is "Out Of the required quantity of material U252309XBC , 0.028 THD remain(s) open". He

  • How to get  meta data of business objects  in BOR

    i need to get all the meta data information of  business objects present in BOR. for example purchase order BUS2012 1.  I need to get for example  the attributes information how to get it? 2. if  business object contains further child business object

  • Problem in FM

    Hi, I have created a Function Module, and from the function module i am calling a report program thru "SUBMIT" command. now in the 'submit' command i add the addition 'exporting list to memory and return'. after that i read the contents of the list u

  • How to convert LongRaw to String when querying using DB Adapter?

    Hi All, How do we use a DB Adapter to query on LONG Raw data? Is there a way to implicitly convert data to a string before returning the resultSet? JDev: 11.1.1.4 Regards.

  • I have 2 IPADS and I want to switch them. How do I do that?

    I have 2 IPADS and one is larger than the other.  I would like to swap the info on them.  How do I go about doing that?