Connector Exchange 2013 for IOM 9102 BP 20

Hello

Currently, we have IOM 9102 BP 20 and an exchange (version of the Microsoft Exchange Connector 9.1.1.5) connector in place to support Exchange 2010. Oracle certifies that used connector supports the exchange of 2013?

Help, please...

Thanks in advance

Certified check article in Exchange Connector documentation deployment configurations. You will get the answer to your question.

Thank you

Patricia

Tags: Fusion Middleware

Similar Questions

  • IOM 9102 BP18

    Can you one please send the links for IOM 9102 BP18 (release notes, documentation of matrix and oracle Certification)


    Thank you

    Published by: user9133416 on June 7, 2012 18:24

    Sign in Metalink and look for Patch no: 13116984 for notes version and all documentation, if any. For more information look at 9.1.0.2 documentation. Accreditation again seek 9.1.0.2 matrix certification and the release of the BP notes.

    -Marie

  • Browse IOM 9102 BP11 taken in charge.

    IOM has support IE7?
    IE7 is compatible for IOM 9102
    I have a problem when I customize end date on manage user page.

    Yes.

    See also this http://www.oracle.com/technetwork/middleware/ias/downloads/idm-certification-101401-083012.html#SEC28

  • Test Oracle Internet Directory Connector for IOM

    Hello

    I'm testing the running test cases available in the Oracle Internet Directory Connector for IOM, but I'm not because it seems that the current version of this connector does not have the java class tcUtilTestOID as described in the documentation. This class should be at the level of the test\troubleshoot\scripts directory, but there are only files of orders with test cases.

    Can anyone confirm this or give me this class file?

    Thanks in advance.

    This is the code. Include in your jar file personalized with the same name. You will be done I guess:

    import com.thortech.util.logging.Logger;
    import com.thortech.xl.integration.OID.util.tcUtilLDAPOperations;
    import java. IO;
    import java.util.Properties;
    Import javax.naming.directory.BasicAttribute;
    Import javax.naming.directory.BasicAttributes;

    public class tcUtilTestOID
    {

    private static String CONFIG_FILEPATH = "global.properties."

    public tcUtilTestOID()
    {
    }

    Public Shared Sub main (string args [])
    {
    tcUtilLDAPOperations ldapOp = null;
    Logger logger = Logger.getLogger ("TEST_USER_PROVISION");
    logger.info("**********************************");
    Logger.info ("*" + args [0]);
    Try
    {
    FileInputStream file = null;
    Try
    {
    ConfigFile = new FileInputStream (CONFIG_FILEPATH);
    }
    catch (FileNotFoundException fe)
    {
    Logger.Error ("could not find the configuration file (" + CONFIG_FILEPATH + "" ")" ");
    fe.printStackTrace ();
    }
    Prp properties = new Properties ();
    Try
    {
    PRP. Load ("ConfigFile");
    }
    catch (IOException IE)
    {
    Logger.Error ("unable to load the configuration file (" + CONFIG_FILEPATH + "" ")" ");
    ie.printStackTrace ();
    }
    String serverName = prp.getProperty ("serverName");
    String portNo = prp.getProperty ("portNo");
    String rootContext = prp.getProperty ("rootContext");
    String principalDN = prp.getProperty ("principalDN");
    String principalPass = prp.getProperty ("principalPassword");
    Boolean sslFlag = "true".equalsIgnoreCase (prp.getProperty ("sslFlag"));
    Logger.info ("the server name =" + serverName);
    Logger.info ("portNo =" + portNo);
    Logger.info ("rootContext =" + rootContext);
    Logger.info ("principalDN =" + principalDN);
    Logger.info ("sslFlag =" + sslFlag);
    Logger.info("===\n");
    ldapOp = new tcUtilLDAPOperations (serverName portNo, rootContext, principalDN, principalPass, sslFlag);
    String ldapUserDNPrefix = "cn".
    String ldapObjectClass = "objectclass";
    String ldapUserObjectClass = "inetOrgPerson";
    String ldapFirstName = "givenName";
    String ldapLastName = "sn."
    String ldapCommonName = "cn".
    String ldapPassword = 'userPassword ';
    String containerDN = prp.getProperty ("containerDN");
    Logger.info ("containerDN =" + containerDN);
    Logger.info ("UserOperation selected =" + args [0]);
    If (args [0] .equalsIgnoreCase ("createUser"))
    {
    Logger.info ("CREATE USER CALLED");
    String createUserFName = prp.getProperty ("createUser.firstName");
    String createUserLName = prp.getProperty ("createUser.lastName");
    String createUserUserDN = prp.getProperty ("createUser.userDN");
    String createUserUserPass = prp.getProperty ("createUser.userPassword");
    Logger.info ("createUser.firstName =" + createUserFName);
    Logger.info ("createUser.lastName =" + createUserLName);
    Logger.info ("createUser.userDN =" + createUserUserDN);
    Logger.info ("createUser.userPassword =" + createUserUserPass + "\n\n");
    BasicAttributes basicattributes = new BasicAttributes (true);
    BasicAttributes.put (new BasicAttribute (ldapObjectClass, ldapUserObjectClass));
    BasicAttributes.put (new BasicAttribute (ldapFirstName, createUserFName));
    BasicAttributes.put (new BasicAttribute (ldapLastName, createUserLName));
    BasicAttributes.put (new BasicAttribute (ldapCommonName, createUserFName + "" + createUserLName));
    BasicAttributes.put (new BasicAttribute (ldapPassword, createUserUserPass));
    ldapOp.connectToLDAP ();
    userCreated Boolean = ldapOp.createObject (ldapUserDNPrefix + "=" + createUserUserDN + "," + containerDN, basicattributes);
    ldapOp.disconnectFromLDAP ();
    If (userCreated)
    {
    Logger.info ("\t >" + createUserUserDN + "-USER_CREATION_SUCCESSFUL");
    } else
    {
    Logger.info ("\t >" + createUserUserDN + "-USER_CREATION_FAILED");
    }
    } else
    if(args[0].) Equals ("ModifyUser"))
    {
    Logger.info ("EDIT USER CALLED");
    String modifyUserUserDN = prp.getProperty ("modifyUser.userDN");
    String modifyUserParamName = prp.getProperty ("modifyUser.paramName");
    String modifyUserParamValue = prp.getProperty ("modifyUser.paramValue");
    Logger.info ("modifyUser.userDN =" + modifyUserUserDN);
    Logger.info ("modifyUser.paramName =" + modifyUserParamName);
    Logger.info ("modifyUser.paramValue =" + modifyUserParamValue);
    ldapOp.connectToLDAP ();
    BasicAttributes basicattributes = new BasicAttributes (true);
    BasicAttributes.put (new BasicAttribute (modifyUserParamName, modifyUserParamValue));
    Boolean isUserModified = ldapOp.modifyAttributesReplace (ldapUserDNPrefix + "=" + modifyUserUserDN + "," + containerDN, basicattributes);
    ldapOp.disconnectFromLDAP ();
    If (isUserModified)
    {
    Logger.info ("\t >" + modifyUserUserDN + "-USER_UPDATE_SUCCESSFUL");
    } else
    {
    Logger.info ("\t >" + modifyUserUserDN + "-USER_UPDATE_FAILED");
    }
    } else
    if(args[0].) Equals ("deleteUser"))
    {
    Logger.info ("DELETE USER CALLED");
    String deleteUserUserDN = prp.getProperty ("deleteUser.userDN");
    Logger.info ("deleteUser.userDN =" + deleteUserUserDN);
    ldapOp.connectToLDAP ();
    Boolean isUserDeleted = ldapOp.deleteObject (ldapUserDNPrefix + "=" + deleteUserUserDN + "," + containerDN);
    ldapOp.disconnectFromLDAP ();
    If (isUserDeleted)
    {
    Logger.info ("\t >" + deleteUserUserDN + "-USER_DELETION_SUCCESSFUL");
    } else
    {
    Logger.info ("\t >" + deleteUserUserDN + "-USER_DELETION_FAILED");
    }
    }
    }
    catch (Exception e1)
    {
    E1. PrintStackTrace();
    return;
    }
    }

    }

    Thank you

    Sunny

  • Distribution group Exchange 2013 allow limited external sender does not... Help, please

    Hi all

    We have a problems with restriction of Distribution Microsoft Exchange 2013 group. We had put the delivery management for external sender specific permit under the distribution group, however email outsider (not to allowed list) can still send to the distribution group.

    Please advise

    Hello

    Your question is beyond the scope of this community.

    I suggest that repost you your Question in Exchange for TechNet Forums.

    https://social.technet.Microsoft.com/forums/Office/en-us/home?category=ExchangeServer

    Or here:

    https://social.technet.Microsoft.com/forums/Exchange/en-us/home?Forum=exchangesvrgeneral

    See you soon

  • Problem of outlook MAPI and Exchange 2013 configuration - IMAP

    Hello

    We have installed and configured Exchange 2013 and configured system requirements

    We use the email id unique in several profiles, we can set up, but it will ask for the password again and again

    Exampale: 1) * address email is removed from the privacy * * 2) address email is removed from the privacy * * 3) address email is removed from the privacy * these 3 accounts I have to configure in 3 unique profile (MAPI or IMAP) machine but it is asking password often, so I would like to know that several account several profile is recommended or not? If recommended please if anyone knows resolution please send an email to * address email is removed from the privacy * or * address email is removed from the privacy *

    Kind regards

    Sahana Fernandes.

    Hello

    Your question is beyond the scope of this community.

    I suggest that repost you your Question in Exchange for TechNet Forums.

    https://social.technet.Microsoft.com/forums/Office/en-us/home?category=ExchangeServer

    Or here:

    https://social.technet.Microsoft.com/forums/Exchange/en-us/home?Forum=exchangesvrgeneral

    See you soon.

  • Exchange 2013 RTM upgrade to cu9

    We are almost new with Exchange 2013 and we are running on the RTM version. I understand the list of updates is available already for 2013 Exchange in a form of CU (cumulative updates). If I'm not mistaken it is already in its 9th CU. My question is, is it possible to update our Exchange 2013 GTR cu9 directly without going through the previous CUs? If so, we would be grateful if you could provide us with a quick guide for the upgrade. Thank you very much!

    Hello

    Your question is beyond the scope of this community.

    I suggest that repost you your Question in Exchange for TechNet Forums.

    https://social.technet.Microsoft.com/forums/Exchange/en-us/home?category=ExchangeServer

    Or here:

    https://social.technet.Microsoft.com/forums/Exchange/en-us/home?Forum=exchangesvrgeneral

    TechNet forums:

    https://social.technet.Microsoft.com/forums/en-us/home

    Or MSDN Forums:

    https://social.msdn.Microsoft.com/forums/en-us/home

    See you soon.

  • Error Code 80072f8f: windows update fails. Outlook2010 auto config account Exchange 2013 fails 'no available encrypted connection '.

    The user's mobile final has all of a sudden a problem. Windows 7 Pro.

    Disconnects account Exchange 2013 in Outlook2010 cannot connect......

    .. Windows Update fails with error Code 80072f8f... A cert security problem?

    ----

    The user did issue out-of-the-blue (update) about self-configuring. I don't know how he responded.

    So we see that Outlook cannot connect to the Exchange Server... error codes include:

    "There is a problem with the proxy server's security certificate"

    "Outlook cannot connect to the server proxy [rackspace] mex06.emailsrvr.com".

    (Error code 080000000) »

    .. Thus, there seems to be a problem with the security on this computer certificates.

    I have no idea where to start to fix this...

    Rackspace, bravely suggested that I remove the mail profile and create a new...

    The create new e-mail account (exchange 2013) breaks down... same error...

    All hosted no more thoughts.

    Hello

    Thanks for posting your query on the Microsoft Community.

    According to the description, I understand that you are getting an error code.

    I suggest you to refer to the Microsoft Help Article below and check if that helps.

    As you've found Windows Update fails with error Code 80072f8f.
    http://Windows.Microsoft.com/en-us/Windows/Windows-Update-error-80072F8F#1TC=Windows-7

    You can also check out the article below.

    https://social.technet.microsoft.com/Forums/office/en-US/0b7ebeab-ca31-4379-a489-16fdad34d550/intermittent-proxy-error-there-is-a-problem-with-the-proxy-servers-security-certificate-outlook?forum=exchangesvrclients

    Hope this information helps. Please let us know if you need any other help with Windows in the future. We will be happy to help you.

  • ASA VPN client and OWA Exchange/2013

    Hi all... quick question ASA...

    Does anyone know the status of support for OWA Exchange 2013 and the ASA webvpn client access?

    I know that the ASA has a model for 2010... It works with 2013? Is there is the 2013 model in the pipeline for the ASA?

    Thank you!

    Hi Paul,.

    There is an improvement (CSCul27869) that opens to Exchange 2013 be supported with ASA.

    CSCul27869
    It is an enhancement request to add support for OWA 2013 with webvpn.
    https://Tools.Cisco.com/bugsearch/bug/CSCul27869/?reffering_site=dumpcr

    Kind regards
    Dinesh Moudgil

    PS Please rate helpful messages.

  • Advanced POS 5.8.1 Exchange 2013 RegisterAgent error

    Hello

    In our test environment, I installed agent of POS on Exchange 2013 vm without any problems. Then, because he had some problems on the virtual computer exchange, I decided to install another Exchange with /reprise switch and removed the old one. This new exchange server works well with the same characteristics (name, ip etc.) with the former, but now I can not install Agent of POS.

    I already tried ip and domain name during installation if this should not be a problem. It seems that POS retain the former agent of information somewhere, even if it is not installed on the new server...

    Any help appreciated.

    Thank you

    You could try deleting the customer record exist for Exchange in the POS device and then reinstall the agent on the Exchange Server.

    Here are the steps I used:

    Connect to the VDP Advanced device as root

    View customers by entering customer mccli see the--recursive = true

    Delete the registered customer by entering mccli, deletion of the client - area = / clients/VDPApps--name=vmname.companyname.com

  • Hyperic 5.8.4 does support Exchange 2013?

    The Hyperic 5.8.4 doc says it supports until 2010, but when I look in the Hyperic 5.8.4 metric models has a model for 2013?

    When I install the 5.8.4 Hyperic agent on a server Exchange 2013, it does not automatically discovered Exchange?

    Any thoughts?

    Thank you

    -Matt

    Hello

    Please take a look at my post - 2013 Exchange support

    In a few words to monitor Exchange 2013 you must:

    1. Run agent hyperic service windows as a domain user.
    2. Domain user; should have all the relevant permissions that I described in my post

    If you have another one please problem run the following command from the hyperic agent directory and attach created debug.log

    java-jar.\bundles\agent-x86-64-win-X.X.X\pdk\lib\hq-PDK-X.X.X.jar Pei Exchange - Dplugins.include = exchange - Dlog m discover debug = > c:\debub.log

    Good luck

  • I have a Apple Watch Black sport 42 "perfect condition and I was wondering if I could exchange it for a sport Apple Watch Gold

    So I have a Apple Watch Black sport 42 "perfect state, it has no scratches or bumps in the body and it was given to me as a gift that I actually wanted the Apple Watch sport or not Apple Watch edition. And I was wondering if I could bring to the apple store and exchange it for a different color (I know that color is not a big deal, but it really bother me haha) and I have the receipt for the Apple Watch

    You will need to check with Apple to see if they will do it - we are here all users, then stop at your nearest store to find out.

  • Upgrading Exchange 2013 standard to enterprise

    Hi all

    One of my servers Exchange 2013 (OS 2012) is set to standard, and I like to upgrade to enterprise edition. Standard server is limited me 5 database that can be created when I upgrade the company will lose the database which are mounted? and what is the easiest way to get there?

    Kelly

    Hello

    Please post your question in TechNet forums to help Exchange 2013 to upgrade to the Enterprise edition.

    https://social.technet.Microsoft.com/forums/Exchange/en-us/home

  • Export Exchange 2007 Journal rules and import them into Exchange 2013

    Hello

    I need to export our Journal of exchange rules 2007 and then import them into exchange 2013, this 'http://technet.microsoft.com/en-gb/library/ee633488%28v=exchg.141%29.aspx' page said how it was possible, but I don't have the export-Jou... option in exchange 2007.

    Any help will be greatfull.

    Thank you

    William

    Post in the Forums of Exchange Server:
    http://social.technet.Microsoft.com/forums/Exchange/en-us/home?category=exchangeserve

  • Bug with Exchange 2013 CU6

    Hello

    I installed Exchange 2013 SP1 and some users take pop account set up in their outlook 2010 client, pop accounts are configured to put new messages in their Inbox to exchange letters. Given that mail upgrade Exchange received pop account cannot be answered or forwarded as it makes its appearance as unsent mail, it's exactly the same problem encountered by several users with office 365:

    http://answers.Microsoft.com/en-us/Office/Forum/office_2013_release-Outlook/Office-365-Outlook-2013-POP3-emails-received/9432c4a9-9df3-43C1-9D1D-bb9f0dac1126

    Today I upgraded to CU6, and the problem is still there...

    Can someone help me?

    You would be best served posting in the TechNet forums rather than the forums of consumer-level (these).

    Or contact Microsoft directly with the issue.

Maybe you are looking for

  • Problems of subsequent update on Portege M400 and W7

    I did a clean install of Windows 7 64 bit on my Portege M400 and it looks particularly pretty good. However, I do not have a utility to map the buttons (including the one that indicates the landscape/portrait orientation has changed). Who would be on

  • G62: Bios HP G62 - off System 58276485

    I bought a laptop from old friends and use it as a HTPC. I want to access the bios to change the settings of shared memory for the video card, but he doesn't know the password. After 3 attempts I get - 58276485 system disabled. Can someone help me? I

  • Lenovo warranty is transferable?

    I bought a W530 a month ago. However, my wife has a new laptop of Lenovo for work, leaving us with old seat T500 do nothing. The T500 really would make me very well (too felt my needs when ordering). Trying to weigh the pros and cons; could sell T500

  • I have two os on my hard drive.

    I have two os than xp professional and home edition installed on my hard drive. And I have two partitions on my hard drive. My home edition version does not work so I want to remove it how know I that on which the partition is installed home edition

  • my updates are not proceed with the installation even if it is powered. I've had a wndows XP SP2

    my updates are not proceed with the installation even if it is powered. I've had a wndows XP SP2