OIM 11g - Modification of GTC Connector not working

Hi,
We're using OIM 11.1.1.5.2, with the 9.1.0.5 Database Application Tables connector.
Sometime ago we created the connector from the OIM advanced administrative console to run Full Reconciliation, because at that moment the users table did not have a field with the timestamp of the update for each user. Now, we're using a date field that was unused before as the modification date field, we even created a trigger on the target database to make sure all modifications are recorded.
We went to the OIM advance administrative console again, manage connector, searched for our connector, then "Edit Parameters" and changed the "Timestamp Attribute" attribute to the date field, and we changed "Reconciliation Type" to "Incremental" on the same page. After that we saved the changes and the compilation of the connector ended without errors. I'm pretty sure it was modified because i had to re attach all prepopulate adapters and create are custom process task...
The problem is, we ran the reconciliation after that, and it still runs the full recon. OIM still generates events for all users. Is there anything else we should do to change the reconciliation type? Are there any files needed to be edited or any table or lookup to make sure it changed? I couldn't find the place were the reconciliation query is kept for this connector.
Thanks.

Anyone's got any idea? I'll be happy with finding out which table or xml on the mds keeps the connector parameters, i know it has to get it somewhere because i doubt it is hardcoded on the jar when i create the connector.
But i still can't find the place were they're stored, and even though i can see the timestamp attribute on the edit connector page, when i run the recon, the incrementalReconAttribute is null.
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/initialize - Data: driver - Value: oracle.jdbc.driver.OracleDriver
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/initialize - Data: url - Value: jdbc:oracle:thin:@idmgr11g:1521:mrdb
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/initialize - Data: username - Value: test1
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/initialize - Data: password - Value: *******
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/initialize - Data: customizedQueries - Value:
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/initialize - Data: useNativeQuery - Value: false
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/initialize - Data: parentContainerName - Value: TEST1
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/convertCSVToArraylist entered.
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/convertCSVToArraylist: providerParams: TEST2
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/convertCSVToArraylist left.
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/initialize - Data: childContainerTableNames - Value: [TEST2]
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/initialize - Data: parentContainerUniqueKey - Value:
*APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/initialize - Data: incrementalReconAttribute - Value:*
APP: oim#11.1.1.3.0] [SRC_METHOD: debug] Class/Method: DBReconTransportProvider/initialize - Data: dbDateFormat - Value: yyyy/MM/dd HH:mm:ss z

Similar Messages

  • OIM 11g R1: Usr Process Triggers Not Working on Concurrent Calls

    Version: 11.1.1.5.7
    I am making two API calls to change a user's password.
    The first call uses the ADMIN to generates a random password for a user.
    The second call uses the user to change his/her own password.
    I am getting an issue where one of the calls does not kickoff the Usr Process Trigger.
    This happens like 1 in 15 tries.
    Is this a bug or am i missing sometime?
    Given below is the test code.
    import java.util.Hashtable;
    import java.util.Random;
    import java.util.logging.Logger;
    import oracle.core.ojdl.logging.ODLLogger;
    import oracle.iam.identity.usermgmt.api.UserManager;
    import oracle.iam.platform.OIMClient;
    import oracle.iam.selfservice.self.selfmgmt.api.AuthenticatedSelfService;
    public class Test
        public static final Logger logger = ODLLogger.getLogger(Test.class.getName());
        public static void main(String args[]) throws Exception
            String authwlConfigPath = "/home/oracle/Oracle/Middleware/Oracle_IDM1/designconsole/config/authwl.conf";
            System.setProperty("java.security.auth.login.config", authwlConfigPath);
            String ctxFactory = "weblogic.jndi.WLInitialContextFactory";
            String serverURL = "t3://localhost:14000";
            Hashtable env = new Hashtable();
            env.put(OIMClient.JAVA_NAMING_PROVIDER_URL, serverURL);
            env.put(OIMClient.JAVA_NAMING_FACTORY_INITIAL, ctxFactory);
            OIMClient oimClient = new OIMClient(env);
            OIMClient userOimClient = new OIMClient(env);
            //Admin changes User Password
            oimClient.login("xelsysadm", "Password1".toCharArray());
            UserManager usrMgrOps = oimClient.getService(UserManager.class);
            String generatedPassword = "a" + generateRandomUserPassword(30);
            System.out.println("Generated Password: " + generatedPassword);
            usrMgrOps.changePassword("tstark", generatedPassword.toCharArray(), true);
            //User changes their own Password
            userOimClient.login("tstark", generatedPassword.toCharArray());
            String myPassword = "Password20";
            AuthenticatedSelfService authOps = userOimClient.getService(AuthenticatedSelfService.class);
            authOps.changePassword(generatedPassword.toCharArray(), myPassword.toCharArray() , myPassword.toCharArray());
            System.out.println("My Password: " + myPassword);
            oimClient.logout();
            userOimClient.logout();
        public static String generateRandomUserPassword(int length){
            if(length < 1)
                throw new IllegalArgumentException("length < 1: " + length);
            char[] characters = new char[62];
            char[] randomUserPassword = new char[length];
            Random random = new Random();
            for (int i = 0; i < 10; ++i)
                  characters[i] = (char) ('0' + i);
            for (int i = 10; i < 36; ++i)
              characters[i] = (char) ('a' + i - 10);
            for (int i = 36; i < 62; ++i)
              characters[i] = (char) ('A' + i - 36);
            for (int i = 0; i < randomUserPassword.length; ++i)
                randomUserPassword[i] = characters[random.nextInt(characters.length)];
            return new String(randomUserPassword);

    Set the "Off-line" flag to true in your "Change User Password" process task.

  • OIM 11g can't get default reports working

    Hello,
    OIM 11g and BI publisher 11g here. They are installed on different machines, so they do not share anything at all.
    I want to make the standard OIM reports work into BI Publisher, so i installed BI publisher (alone), created user xelsysadm (given role XMLP_ADMIN ) and copied the reports to the Publisher server.
    first question: where am i required to put them? the path the developers guide says does not exist, and if i create it, BI Publisher simply ignores it. So i put the whole stuff in user_projects/domains/bifoundation_domain/config/bipublisher/repository/Reports/OIMreports/ which appears to be the same folder where BI sample reports are.
    Now BI Publisher recognizes the folder structure, but the folders are empty and don't show the reports in the Publisher Catalog.
    second question: i am having a really hard time understanding which logfile should i look at to track BI Publisher application errors. I guess it's user_projects/domains/bifoundation_domain/servers/bi_server1/logs/bipublisher/bipublisher.log but i would like having it confirmed
    I am trying to follow the OIM 11g developers guide and the BI guides, but it is not really helpful, any advice would be really appreciated
    thx in advance
    Alex

    solved, look here
    Re: OIM 11g and BI Publisher Reports

  • OIM 11g-configure SoD so that it works for direct provisioning of the roles

    Dear All,
    page 23-3 of Developer's Guide (OIM 11g) provides information regarding configuration of the SoD for Direct provisioning of the resources. How to configure SoD so that it works for direct provisioning of the roles?
    Thank you for your time
    Maria

    Rajiv,
    I did not find the documentation regarding this. But I hoped I will.
    In my project we assign roles directlly, not resources.
    I suspect the integration with Role Manager is required in this case. SoD module in OIA should be used then.
    Maria

  • Receive Connectors not working correctly - using random connectors.

    I'm having a problem that I thought was DNS related, but I've since flushed the DNS.
    What happens is when I try to relay off a Hub server, it always tries to use any random Receive connector, even though my client is explicitly in the Relay connector list.
    When I telnet to the HT by hostname on 25, it opens a random receive connector. If I continue to /flush and telnet over and over, it cycles through all the connectors (default, Relay explicit and the others that block the connection).
    When I telnet directly to the IP of the Relay connector, it works perfectly.
    What would cause the server or client to not use the correct explicit connector all the time?

    When you test this - I'm assuming you are coming in from a specific remote IP. What RC should this be hitting?
    To troubleshoot this I like to change the banner on all of them so it says "Helo - Connector 1"  "Helo - Connector" or something else meaningful like this.
    Also enable verbose SMTP send receive logging on all receive connectors.  What's in there?
    Cheers,
    Rhoderick
    Microsoft Senior Exchange PFE
    Blog:
    http://blogs.technet.com/rmilne 
    Twitter:   LinkedIn:
      Facebook:
      XING:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Audio line out port (Apple iPad Dock Connector) not working Iphone 4 os 4.2

    For my new iphone4, the audio line out port (Apple iPad Dock Connector)is not working. Both using a cable to mini jack (3,5 mm) or in dockingstation.
    I'm using OS 4.2.
    IS this a bug?
    Thanks
    Hans

    I just came back from the Apple store.  My iPhone4 DOES have a working line out when plugged into a Apple name brand dock connector.   I don't know why my SendStation refuses to work only with the iPhone4 yet works with iPods, etc..
    Solution? I'm buying an Apple iPod dock connector for home and will try to find something with line out for the car - Apple says they do not make one.

  • 3rg gen ipod dock connector not working with new imac on leopard 10.5.1

    Recently found that my 3rd gen ipod is not working properly when i connect it using its dock. itunes just freezes and comes out with some "disk insertion error". however, when i don't use the dock and connect the ipod to the imac directly using its own firewire cable, everything is ok and working properly.
    it seems to be the ipod dock that is the problem. but am wondering why wouldn't it work? any ideas? I'd still like to be able to use the ipod dock...
    thanks.

    ipodaid.page.tl go there, he got my iPod fixed.

  • Oracle Service Bus 11g omit-xml-declaration="yes" not working in XSL-T

    I have the requirement of removing the XML header from xsl output.
    eg: <?xml version="1.0" encoding="UTF-8" ?> this part has to removed
    I tried using the following in XSLT:
    <xsl:output indent="yes" omit-xml-declaration="yes" />.
    It seems to work in all online xml compilers. It does not work in work in OSB.
    I posted the message in a JMS Queue and it contains the xml header.
    Is this a work around for this issue?

    I'm pretty sure XSLT has nothing to do with that PI.
    After all, XSLT in OSB doesn't format text, it generates an XmlObject. The formatting (including adding the <?xml?> PI) are done by other parts of the engine. Probably the XmlBeans serializator.
    The only option I see is to serialize the XML, then cut off everything until first ?>.
    Why would you need that, I wonder? May be there is a better way.
    Vlad @ genericparallel.com

  • Remedy connector not working with OIM 9.1.0.2

    Hi,
    I am using the OIM connector, BMC Remedy User Management 9.0.4.12 with OIM 9.1.0.2 BP18 on Weblogic 10.3.2
    I have followed the connecter documentation at "http://docs.oracle.com/cd/E11223_01/doc.904/e10422/deploy.htm#BGBIFBHG".
    The connecter is installed successfully. The dependency files are placed in the directories as per section 2.3 of the above note. And the Communication between Remedy server and OIM is not SSL.
    When I run the schedule task for “Remedy Lookup Reconciliation”, I get the error. I have checked that all the dependencies are in the correct location and the path variables are set properly:
    DEBUG,29 Feb 2012 15:03:28,092,[XELLERATE.SERVER],Class/Method: SchedulerTaskLocater /removeLocalTask entered.
    DEBUG,29 Feb 2012 15:03:28,092,[XELLERATE.SERVER],Class/Method: SchedulerTaskLocater /removeLocalTask left.
    Exception in thread "QuartzWorkerThread-0" java.lang.NoClassDefFoundError: Could not initialize class com.remedy.arsys.api.Proxy
    at com.remedy.arsys.api.DefaultProxyManager.getProxy(DefaultProxyManager.java:60)
    at com.remedy.arsys.api.Util.ARSetServerPort(Util.java:1461)
    at com.thortech.xl.schedule.hostAccess.ReconcileBMCLookUp.connect(Unknown Source)
    at com.thortech.xl.schedule.hostAccess.ReconcileBMCLookUp.getLookUpData(Unknown Source)
    at com.thortech.xl.schedule.hostAccess.ReconcileBMCLookUp.execute(Unknown Source)
    at com.thortech.xl.scheduler.tasks.SchedulerBaseTask.run(Unknown Source)
    at com.thortech.xl.scheduler.core.quartz.QuartzWrapper$TaskExecutionAction.run(Unknown Source)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.security.Security.runAs(Security.java:41)
    at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(Unknown Source)
    at com.thortech.xl.scheduler.core.quartz.QuartzWrapper.execute(Unknown Source)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:178)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:477)
    DEBUG,29 Feb 2012 15:03:56,337,[XELLERATE.SCHEDULER],Loading Scheduled task class com.thortech.xl.scheduler.core.quartz.QuartzWrapperusing ADP classloader
    DEBUG,29 Feb 2012 15:03:56,337,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader entered.
    Let me know if you have an idea on what maybe going wrong here..
    Thanks.

    As per given bug it is looking for jars which is missing
    have you install connector using deployment manager?? if yes it copy required jars at target location. verify if not there copy jars in Scheduled Task folder.
    Check the document if any external jars required and same put at ThirdParty folder

  • OIM 11g R2 Post Event Handler not trigerred

    Hi,
    I have developed the event handler that request resources on user load into OIM (its a GTC load). I can see that:
    1. event handler is registered in "PLUGINS" table,
    2. appearing in em
    3. see the following under /dms/spy
    PostEventRequestResourceCreate company.com oim_server1:14000 active, threads 0 oim_server1
    avg, msecs 1.67
    completed, ops 3
    maxActive, threads 1
    maxTime, msecs 3
    minTime, msecs 1
    time, msecs 5
    As per the 11g R2 doc, I have included eventhandlers.xml as part of META-INF folder of my pluign zip -I did not import it into MDS as it was not mentioned in the doc (as it was mentioned in the case of 11g R1).
    I have updated the lib of the plugin zip with the custom class jar.
    I have few SOPs in my Eventhandler which are not getting printed and hence events are not triggered.
    Is there anything that I am missing here?
    Thanks

    HashMap eventDataHashMap = bulkOrchestration.getInterEventData();
    Identity[] currentUserStates = (Identity[]) eventDataHashMap.get("CURRENT_USER");
    You can loop through the same way you are through the bulkParameters and pull the database from there.
    -Kevin

  • Upgraded to 11g and now Apex_email is not working

    Hi,
    This weekend we just upgraded our db to 11g and it appears that apex_email will not send out email.
    Prior to upgrading it worked just fine.
    Does anyone have any suggestions as to what I might have forgotten?
    Thanks in advance
    Wayne Cole

    I guess you need to authorize the database user performing the operation, because the security model in oracle 11g has changed:
    http://localhost/oradocs/ora111/network.111/b28531/authorization.htm#DBSEG40012
    This is necessary because package apex_mail is built on top of other HTTP related packages.
    Flavio
    http://oraclequirks.blogspot.com

  • OIM 11g R2 -AD Provisioning -Connector Server side Error

    Hi,
    Following error is thrown on the connector server side when we attempt to provision an AD resource:
    11/15/2012 7:28:50 PM <VERBOSE>: Class-> ActiveDirectoryConnector, Method -> TranslateObjectClass, Message -> Returning the object class: ObjectClass: __ACCOUNT__ and exiting the method
    11/15/2012 7:28:50 PM <INFORMATION>: Class-> ActiveDirectoryConnector, Method -> Create, Message -> Committing the changes and creating the directory entry.
    11/15/2012 7:28:50 PM <ERROR>: Class-> ActiveDirectoryConnector Method -> Create, Message -> Encountered Excetion: Access is denied.
    11/15/2012 7:28:50 PM <ERROR>: Class-> ActiveDirectoryConnector Method -> Create, Message -> Stack Trace: at System.DirectoryServices.Interop.UnsafeNativeMethods.IAds.SetInfo()
         at System.DirectoryServices.DirectoryEntry.CommitChanges()
         at Org.IdentityConnectors.ActiveDirectory.ActiveDirectoryConnector.Create(ObjectClass oclass, ICollection`1 attributes, OperationOptions options) in c:\ADE\aime_oimcp\idc\bundles\dotnet\ActiveDirectory\ActiveDirectoryConnector\ActiveDirectoryConnector.cs:line 256
         ConnectorServer.exe Error: 0 : Org.IdentityConnectors.Framework.Common.Exceptions.ConnectorException: Access is denied.
         at Org.IdentityConnectors.ActiveDirectory.ActiveDirectoryConnector.Create(ObjectClass oclass, ICollection`1 attributes, OperationOptions options) in c:\ADE\aime_oimcp\idc\bundles\dotnet\ActiveDirectory\ActiveDirectoryConnector\ActiveDirectoryConnector.cs:line 368
         at Org.IdentityConnectors.Framework.Impl.Api.Local.Operations.CreateImpl.Create(ObjectClass oclass, ICollection`1 attributes, OperationOptions options) in c:\ADE\aime_icf\icf\framework\dotnet\FrameworkInternal\ApiLocalOperations.cs:line 388
         at Org.IdentityConnectors.Framework.Impl.Api.Local.Operations.ConnectorAPIOperationRunnerProxy.Invoke(Object proxy, MethodInfo method, Object[] args) in c:\ADE\aime_icf\icf\framework\dotnet\FrameworkInternal\ApiLocalOperations.cs:line 244
         at ___proxy1.Create(ObjectClass , ICollection`1 , OperationOptions )
         at Org.IdentityConnectors.Framework.Impl.Server.ConnectionProcessor.ProcessOperationRequest(OperationRequest request) in c:\ADE\aime_icf\icf\framework\dotnet\FrameworkInternal\Server.cs:line 609
    Am i missing any connector side configurations here?
    Thanks

    please perform these tests,
    1- check if the reconciliation is working with the same user provided in the connector configurations?
    2- check if the user reconciled can be updated modified through the IDM Admin console?
    after this
    check that you are providing the proper OU for the user to be provisioned?
    check the the Resource History and see where it is failing maybe some required information is missing.
    have you applied the patch 14190610 for AD connector?

  • SCSM's Allowed List for SCOM CI Connector not working as expected

    Hi Everyone,
    We're running into some unexpected behavior with the SCOM CI Connector, wondering if anyone can shed some light on it.  Our requirement is to ensure Distributed Applications are not sync'd from SCOM to SCSM (hence, they don't show up in the "All
    Business Services" view).  We have only two MPs in SCOM/SCSM that sync Distributed Applications, both of which are for SharePoint monitoring.
    We have the 2 SharePoint MP's in both SCSM and SCOM.  We've configured the SCOM CI Connector to select the 2 SharePoint MP's for synchronization.
    Now, we thought all we'd need to do to ensure the SharePoint Distributed Applications no longer sync from SCOM to SCSM is remove the "System.Service" class from the Allowed List of classes for SCOM CI -- which we did, however, they continue to
    sync.
    After a fair amount of back and forth trying to figure out how we need to configure the Allowed List of classes for the SCOM CI Connector to ensure the DA's aren't sync'd any more, we finally removed ALL classes from the Allowed List.  Surely, this
    will stop the sync we thought -- however, after having deleted the SharePoint Business Service CI's, removing ALL classes from the Allowed List, and then rerunning the SCOM CI Connector, the Distributed Applications associated with the SharePoint MP's STILL
    come over.
    Is there something I'm missing here?
    Thanks!

    Hi -- can anyone provide any feedback for me on this one?
    Thanks!

  • SCOM Connected Management Group to SCSM Connector not working

    Hi
    We have successfully connected 3 management groups using Connected Management Group . I can see the alerts from all the 3 MG in one console. I also configured SCSM connector and connected to the local Management where the other 2 are connected . I can successfully
    forward the alerts from that MG which is registered in SCSM , but when I try to forward the alerts from the other 2 mg I get the below message on the respective Management servers . Is connected management group supported in SCSM . Or am I missing any step
    need 
    Log Name:      Operations Manager
    Source:        DataAccessLayer
    Date:          11/4/2014 4:58:20 PM
    Event ID:      33333
    Task Category: None
    Level:         Warning
    Keywords:      Classic
    User:          N/A
    Computer:      server
    Description:
    Data Access Layer rejected retry on SqlError:
     Request: AlertUpdate -- (AlertId=c89b3ebc-2e45-47e9-a6d8-e96c05b787f3), (BaseManagedEntityId=9f8aa0d1-1b31-d133-e66a-a91830a42405), (ResolutionState=0), (Owner=), (CustomField1=), (CustomField2=), (CustomField3=), (CustomField4=), (CustomField5=), (CustomField6=),
    (CustomField7=), (CustomField8=), (CustomField9=), (CustomField10=), (Comments=Alert modified by user), (TimeLastModified=10/14/2014 5:28:11 AM), (ModifiedBy=xx\xxxx), (TicketId=), (ConnectorId=a680dc76-2fc2-429d-b6dd-d1a851e9bd8f), (ModifyingConnectorId=),
    (TfsWorkItemId=), (TfsWorkItemOwner=), (RETURN_VALUE=1)
     Class: 16
     Number: 547
     Message: The UPDATE statement conflicted with the FOREIGN KEY constraint "FK_Alert_ConnectorId". The conflict occurred in database "OperationsManager", table "dbo.Connector", column 'ConnectorId'.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="DataAccessLayer" />
        <EventID Qualifiers="32768">33333</EventID>
        <Level>3</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-11-05T00:58:20.000000000Z" />
        <EventRecordID>35534</EventRecordID>
        <Channel>Operations Manager</Channel>
        <Computer>server</Computer>
        <Security />
      </System>
      <EventData>
        <Data>AlertUpdate -- (AlertId=c89b3ebc-2e45-47e9-a6d8-e96c05b787f3), (BaseManagedEntityId=9f8aa0d1-1b31-d133-e66a-a91830a42405), (ResolutionState=0), (Owner=), (CustomField1=), (CustomField2=), (CustomField3=), (CustomField4=), (CustomField5=),
    (CustomField6=), (CustomField7=), (CustomField8=), (CustomField9=), (CustomField10=), (Comments=Alert modified by user), (TimeLastModified=10/14/2014 5:28:11 AM), (ModifiedBy=FAREAST\v-sanaug), (TicketId=), (ConnectorId=a680dc76-2fc2-429d-b6dd-d1a851e9bd8f),
    (ModifyingConnectorId=), (TfsWorkItemId=), (TfsWorkItemOwner=), (RETURN_VALUE=1)</Data>
        <Data>16</Data>
        <Data>547</Data>
        <Data>The UPDATE statement conflicted with the FOREIGN KEY constraint "FK_Alert_ConnectorId". The conflict occurred in database "OperationsManager", table "dbo.Connector", column 'ConnectorId'.</Data>
      </EventData>
    </Event>

    For Fix error 33333, you can refer below links
    http://opsmgradmin.blogspot.com/2011/05/scom-event-id-33333-in-scom-from-source.html
    http://blogs.technet.com/b/smsandmom/archive/2008/03/13/opsmgr-2007-dataaccesslayer-event-id-33333-with-should-not-generate-data-about-this-managed-object.aspx
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    Mai Ali | My blog: Technical | Twitter:
    Mai Ali

  • Download for latest Jdeveloper 11g Technology Preview - 3 :link not working

    Hi,
    I tried downloading the latest Jdev 11g Tech Preview - 3 from the link mentioned on the site : "Download Oracle JDeveloper 11g Technology Preview 3 - Java EE, SOA and WebCenter Development". But the page always times out.
    Is there an issue from my side here or someone else also facing the same problem ?
    Regards,
    Arun
    Message was edited by:
    Arun R

    Hi,
    Figured that the problem was because I was using Mozilla Firefox. It works with IE. ( But what about browser neutrality? ;) )

Maybe you are looking for