Calendar Connectivity with Microsoft Exchange Server

Hi Everybody,
We want to use Calendar scheduling activity of Micrsoft Exchange Server in NW Portal Version 7 SP9. However we are stuck up with the following problem.
The Scenario is like:
1)The IIS Server and MS Exchange Server are in same domain.
2)MSX-A component has been /copied installed on IIS Server 5.
3)DLL registered.
4)We are using MS Oultook 2003 and Exchange Server 2003.
5)An IIS website has been created following the guidelines from a PDF document( Its wihtout SSO).
6)Logon Locally permissions given to all users.
When the CDO Version test is executed the common error "Microsoft Outlook not configured for Corporate/Work group access. Reconfigure MS Outlook and try again" is thrown.
As per the information from sdn only MS Outlook 2000 needs to be configured for this.
When the Data Retrieval test is executed an error message "CDO MAPI_E_NOT_INITIALIZED(80040605)" is shown.
Please share your views on this situation.
Suresh Yadav

If I were you, I would create an OSS customer message for this.
Maybe a quick fix though... Have you installed Outlook 2003 on the same server as IIS is running on?  Have you run outlook at least once and connected it to your Exchange server, setting it as the default mail client?
Also, there is a note about what to do for exchange transports when you do a portal patch.  Applying those steps might be a good idea even if you have not done an upgrade.
Good Luck.
Regards,
Graham.

Similar Messages

  • After lion 10.7.3 update messed my mac had to restore from time machine now Outlook won't connect with microsoft exchange, any idea?

    after lion 10.7.3 update messed my mac had to restore from time machine now Outlook won't connect with microsoft exchange, any idea?

    I've had a similar problem.  On my first boot up after installing 10.7.4,  Firefox would not open.  Crashed every time.  Safari was not affected.  I have no idea if it was related to the flash plugin, but I did install a the latest version of that a couple of weeks ago. 
    Here's what fixed it: a second boot up.

  • UCM certified with Microsoft Exchange Server ??

    Hi,
    Is UCM certified with Microsoft Exchange Server ? how can we integrate UCM with Microsoft Exchange Server as we have Desktop Integration Suite to integrate with MS Outlook..
    Thanks,
    NL

    As for the link to the manual, for 10g it's here (I believe for 11g it will be similar if not the same): http://download.oracle.com/docs/cd/E10316_01/cs/cs_doc_10/documentation/admin/managing_system_10en.pdf
    It also mentions that SMTP protocol is used. Therefore, you will need to know the SMTP address of your Exchange Server.
    As for who uses it, I believe it is the majority or at least a significant part of the clients' installed base. Note that it is one of the most widespread email servers.

  • Oracle HRMS Integration with Microsoft Exchange Server 2007

    I would like to know if it is possible to integrate Oracle HRMS 11.5.10.x with Microsoft Exchange Server 2007 using Microsoft Identity Lifecycle Management (ILM) 2007?
    Has anyone ever come across something like this and successfully achieved it? Does anyone know of a step-by-step guide (or forum discussion) to achieve this?
    Response(s) will be highly appreciated.

    hi,
    We actually implemented integration of SAP with microsoft exchange server. It is not necessary for server and IIS to be in the same machine.
    regards,
    Ganesh.N

  • Groupware integration  with microsoft exchange server

    I have a query regarding Groupware integration with microsoft exchange server.whether we require IIS server and microsoft exchange server on the same machine for groupware integration.or they can be on different machines.
    thanks,
    Pramod

    hi,
    We actually implemented integration of SAP with microsoft exchange server. It is not necessary for server and IIS to be in the same machine.
    regards,
    Ganesh.N

  • 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.

  • Syncing ACT contacts while on automatic wireless syncing with Microsoft Exchange Server?

    Does anyone know if this is possible? At the moment, my company is automatically performing a wireless sync between Outlook contacts and their Blackberry Curve 8330 devices. However, employees that travel also need their ACT contacts on their phone. I've researched CompanionLink and know that I can get the ACT contacts directly onto the Blackberry that way, but, the problem arises where the ACT contacts will end up syncing back to the Exchange server -- which we don't want. We want to keep the automatic syncing with Outlook, but periodically we want to do a one-way ACT transfer onto our Blackberries, without having those extra (approximately 5,000) contacts go back into Outlook. Is there an easy way to categorize/separate Outlook and ACT? Any ideas or workarounds?

    flashman181 wrote:
    I am trying to sync my Outlook 2007 with my palm Treo Pro but keep getting the same error - server could not be reached Error code
    80072ee2. This is probably a basic question but the server you enter into the Microsoft Exchange settings in active sync is the mail server you have in Outlook 2007? eg mail.internode.on.net. I don't need to do anything to outlook 2007 to "activate" Microsoft Exchange.
    I'm looking at the Internode setup guides and it looks as though you have a POP server. In that case, if you want to sync directly to the server, you would want to set it up for POP/SMTP rather than for Microsoft Exchange Server. Does that help?
    If you do not want to sync over the air and instead want to sync only by USB/Bluetooth to your PC, I think that works quite differently. I don't have any experience with that.
    (Edit: Changed link style so it was more obvious.)
    Message Edited by Jeffro on 05-27-2009 07:05 PM

  • HT4972 has anyone had issues syncing with microsoft exchange server since upgrading to ios 5.1.1

    Has anyone had issues syncing with microsoft exchange since updating to ios 5.1.1

    No bug I'm using exchange at work I've updated a couple of people here and it's working. 
    Your IT guy can't fix this for you?   This problem usually is due to the exchange server not recogonizing your account.   You have the right server and domain entered?

  • With Microsoft exchange server, leave messages UNREAD even if read on blackberry?

    We are having issues that seems complicated but I'm sure there's a solution..
    Sometime while at a restaurant or waiting for a light, I get a message on the blackberry  but I can't fix the problem right a way or it can wait until I'm back at the office to be fixed, now when I get back to the office, I open Microsoft outlook 2003, (running off Microsoft exchange server)  the message downloads into my inbox, but tagged as read.
    Here is my question:
    If I read a message on my blackberry, how do I leave the message unread on the exchange server? I have the MIKE (Telus) or Nextel if you prefer 8350i but I also have 9 other blackberry curve 8330 with the same problem.
    Is there a way , an option leave unread on the server until downloaded to INBOX?
    Any help would be appreciated.
    Alain

    is this via BIS or BES?
    If you disable reconcile on BES you can achive what you want.
    Messages Options - Email reconciliation -
    wireless reconcile = no
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • How to set Iphone 4s to sync with Microsoft Exchange server 2003?

    I am unable to set up my Microsoft Exchange Server with my Iphone 4s.  The exchange server is 2003 with Service Pack 2 installed.
    I have gone through the steps, but I get a box entitled “Exchange Account”saying “Unable to verify account information”.

    Hello,
    Seems you are not using an Exchange server account, please refer to the following link and try to set the out of Office notices with POP3, IMAP, and Outlook.com accounts:
    http://office.microsoft.com/en-us/outlook-help/send-out-of-office-notices-with-pop3-imap-and-outlook-com-accounts-HA010248748.aspx
    Best Regards,
    Steve Fan
    TechNet Community Support

  • Emails for Current Day are not sync with Microsoft Exchange server

    I have bought a Z1 and configured my microsoft exchange server email on it. All is working well. However it is only showing emails till yesterday. I have tried all sync settings including automatic, all, one day and all others but still it is not showing emails for current day. I have also tried all sort options but still no improvement.
    The same setting are working perfectly fine on my Samsung Galaxy Note 2. What is the issue and how to fix it? Please make sure i have purchased a new phone and would use the stock email app and no third party email app. 
    Already there is a downgrade in Z1 stock email app. It is not supporting formatted signatures and formatted outgoing emails. Which is now very common on all phones of its price and class. 
    What is Sony doing on its phones? i do not understand.
    Please let me know how to fix my issue of most recent emails sync.

    http://office.microsoft.com/en-us/support/set-up-email-on-an-android-phone-or-tablet-HA102823196.asp...
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Why do I get the message  "cannot get mail" when trying to connect to microsoft exchange server.

    Why do I get the message "cannot get mail" when trying to connect to ms exchange server?

    Hard to say. Has it ever worked? Maybe your account has mobile e-mail disabled. Maybe ActiveSync isn't set up properly on the server. maybe the correct ports are not open on the corporate firewall.
    You will have to talk to your IT department.

  • I can't connect with microsoft exchange

    Just got a new MacBook Air....trying to connect to the Microsoft Exchange system in the office.  Works fine for both my iPhone and iPad but not working for this MacBook Air...

    Hey there ovillamil,
    If you are having issues connecting with your Microsoft Exchange account, take a look at the resources below for troubleshooting steps:
    OS X Mail: Using Microsoft Exchange (EWS) accounts - Apple Support
    https://support.apple.com/en-us/HT201951
    iCloud: Microsoft Exchange behavior with iCloud - Apple Support
    https://support.apple.com/en-is/HT202375
    Microsoft Exchange may require additional configuration in order to allow communication with certain devices. Consult with your IT manager or Administrator of your Exchange server for further questions about your Exchange setup. 
    Regards,
    - Judy

  • IPad Calendar sync with Microsoft Exchange problem

    I use Microsoft Exchange to sync my Google Calendars with my iPad & iPhone. I have a work, personal & business calendar. On my iPhone it sync all three calendars, but on my iPad it only sync my personal calendar. What can I do to fix this, if anything or does there need to be a software update?

    Go to m.google.com/sync and set which calendars you wish to show up. Nothing broken.

  • Cannot connected with google exchange server after iphone replacement

    Today I replaced my iPhone 5 because of some issues, but after I restored my iPhone I found that the iPhone could not connect to the google exchange server. The alert "Cannot get mail - the connection to the server failed" will be shown.
    I am 100% sure the setting is correct & work. It is because I have been used this setting many many years and this is 100% work fine on my iPad 2, 6.1.2 (same version). I have tried to delete my account re-add the account many many times reboot and reboot airmode etc, I could use the simple Gmail one but I really need Exchange service.
    Please help, it really make me crazy

    My understanding is that as of Jan 30th Google no longer supports Exchange for free Gmail accounts (see http://www.zdnet.com/google-drops-exchange-activesync-support-for-free-email-acc ounts-7000008836/).

Maybe you are looking for

  • Can't be heard when making calls

    When making or receiving a call, I can hear the individual on the line but they cannot hear me at all. I started having this problem a few months ago, but it was very irregular.  In the last two weeks it has become a more consistent issue.  Has anyon

  • Airport on Macbook Pro says connected to network but there's no Internet

    I have a relatively new unibody Macbook Pro. I used to be at school where my Airport worked perfectly but now that I've set up my own router in my apartment it doesn't seem to connect properly. I'm using a Belkin N+ router and my roommate's PC works

  • Photoshop files in FCE - Cannot Open Project

    I have a series of Photoshop files (RGB with about 10 layers a piece). I am able to import a file into FCE HD and move the layers around as tracks - everything works great. I save the file, and close. When I try to re-open the file, I get the dreaded

  • Modelling of 'clean down' orders in APO PP/DS

    I am using APO PP/DS V7. What is the best way of modelling 'clean down' orders in PP/DS? Thanks for any advice...

  • Several films in the same area?

    Is it no longer possible to put several movies on the same surface and controlling these movies with buttons? Movie thumbnail disappear yet. The film remains so that it covers the movie below. Using Acrobat Pro 9.It is all nor choose I do not want th