PayLoad Extension OIM 11.1.1.5.0 + BP03

Hi All,
I have an OIM 11g environment in place which uses SOA for processing requests. By default, when a request is routed to SOA by OIM, some data is sent in the payload by OIM. I want to add some additional data in the payload using Java APIs to prevent logging in OIM from bpel process and then get required data. This code will reside in OIM server and will intercept the payload before it is sent to SOA and add additional attributes to it.
I have followed following blog post http://bbagaria.blogspot.in/2011/08/how-to-extend-payload-from-oim-to-soa.html to get the details. Here, OtherDetails node has been used to add additional data in the payload.
Question: There is only one data element available in this node which can hold only one additional value. How can I add additional data elements here to pass more data in the payload? What other options are available to achieve this requirement?
Thnx

You can add multiple OtherDetails which will convert to an array in SOA payload.
OtherDetails otherDetails = process.getOtherDetails();
List<Detailtype> detailtypesList = otherDetails.getDataElement();
Detailtype detailtype1 = new Detailtype();
detailtype1.setName("name1");
detailtype1.setValue("value1")
detailtypesList.add(detailtype1);
Detailtype detailtype2 = new Detailtype();
detailtype2.setName("name2");
detailtype2.setValue("value2")
detailtypesList.add(detailtype2);
process.setOtherDetails(otherDetails);Just a note of caution here, don't make the payload too big or you might have performance issue.
-Bikash
Edited by: Bikash Bagaria on Jul 21, 2012 3:44 AM

Similar Messages

  • Request Payload OtherDetails -OIM 11g R2

    Hi,
    I have followed link to set data element in paylod:
    http://bbagaria.blogspot.com/2011/08/how-to-extend-payload-from-oim-to-soa.html
    I had a requirement of showing up 3 attributes on request which i have set like:
    detailtype.setName(“Custom Attribute1”);
    detailtype.setValue(“Custom VALUE1”);
    detailtype.setName(“Custom Attribute2”);
    detailtype.setValue(“Custom VALUE2”);
    detailtype.setName(“Custom Attribute3”);
    detailtype.setValue(“Custom VALUE3”);
    detailtypesList.add(detailtype);
    payload.setOtherDetails(otherDetails);
    Now what should i do inorder to retrieve in Task Title section of approval task? All I can see in my configuration under OtherDetails section is Name and Value -should I manually create these custom Attributes/values in approval task and redeploy the composite or is there any way to retrieve them during run time on task Title?
    Thanks

    Hi ,
    Thanks for your reply .. I am able to understand the scenario what you are trying to explain .. I tried to do the same ...but in my scenario ,this is the problem that I am facing ..
    1)When a user modifies only his First Name then it works fine and gets auto approved .
    2)When a user modifies only his Last Name then it works fine and goes for approval and waits till it gets approved.
    3)Now the problem is when a user modifies both his First Name and Last Name and submits as a single request , how to handle this ? In this case the First Name should get committed and the Last Name should not get committed .. But he has submitted only a single request .. so how to handle this scenario ?How to divide a single request into two to commit one attribute and not commit another one ?

  • OIM 11.1.1.5.0 + BP03 Integration with BI Publisher 11.1.1.5.0

    Folks,
    Has anyone been successful in integrating BIP 11.1.1.5.0 with OIM 11g? I have recently integrated BIP 11g with OIM11g for reporting. After doing all the necessary configurations as mentioned in the OIM 11g developers guide and BP03 read me document, I am able to see the reports structure in BIP. Also I could execute few of the reports like Access Policy details, Role membership etc. .
    But none of the user reports are working. It always shows up a blank screen and no activity in logs either. I’m pretty sure that I have configured that BIP user properly and he has all the rights to execute the reports, in fact I have assigned all the available functional roles to the BIP user.
    Has anyone of you faced such an issue earlier?
    Appreciate your support!
    Thanks
    Sid

    Hi Sidharth,
    Instaed of BIP 11.1.1.5.0, go for BIP 10g, as it is certified with OIM 11.1.1.5. We integrated BIP 10g successfully.
    Hope this helps
    BI Publisher 11g Integration with OIM 11.1.1.5.0 + BP03
    Regards
    Kumar

  • Wierd Issue In Approval Policy OIM 11.1.1.5.0 BP03

    Folks,
    We are facing a very weird issue in our dev env . We have developed approval workflow for Assign role request type .
    Here's what we have done .
    - Template level is auto -approved (via checkbox)
    - Request level approval policy (No rules) is created and is auto - approve (tried with both via check box and defaultAutoApproval SoA composite)
    - Operational level policy (Rule = Role Name = ABC) is created and SOA composite is assgined .
    Now, whenever we raise a request , request level approval is never auto approved , intead the approval task is assigned to xelsysadm always ???
    Any clues ??
    Thanks
    Sid

    Hi,
    As you said there is no rule created for request level approval policy if so, default policy gets evaluated for request level and hence default approval process gets triggered.
    to suppress this default approval policy and approval process to trigger, you need to create rules for your request level policy and make it auto approval.
    Regards,
    Raghav.

  • Adding extra fields to the SOA composite from OIM

    Hi All
    I want to to add extra fields to the input XML file to custom SOA approval composite.
    Where I suppose to control the parameter going from the OIM request to the SOA composite ?
    Thanks
    Edited by: 599647 on Jan 27, 2012 9:28 AM

    http://bbagaria.blogspot.com/2011/08/how-to-extend-payload-from-oim-to-soa.html
    -Bikash

  • OIM 11.1.1.5 BP2 Roles removed from users automatically

    Hi All,
    We are using OIM 11.1.1.5 BP02 and facing issues with event handlers, role membership and access policy. We have a custom post create user handler and a custom user post update event handler. We are creating users through trusted reconcilication by using EBS Employee Recon connector and provisioning users to AD & Exchange by using the 11.1.1.5 ICF connectors.
    The issue we are seeing is with the Roles of the users, the behavior we are seeing is that, on user creates through trusted recon, the users are getting roles correctly and then the resources are assigned correctly, but after sometime, the roles are removed from the user. We donot have 'Revoke if no longer applies' on the access policy and thus the resources are appearing fine for the user, but we donot want roles to be removed from the user since the rule membership rules criteria is still holding good for the user.
    We are seeing this issue only with trusted reconcilication and not when we create users through the UI. Our custom event handlers have the same logic for both the execute methods; with the difference that the bulk execute method is working on the array of identities received from trusted recon while the normal execute method working on just one identity through the UI.
    We are doing complex computation in the event handlers (& setting multiple fields of the user) and are forced to use UserManager API to set the fields in the create user handler (Following article: 1469286.1); this we believe is effecting the ordering of the custom event handler and the OOTB Role ChangeCalculator event handler.
    We have already checked the bugs(14075985 & 14221435) and wanted to confirm if we are hitting the same and/or how can we debug this more. We have already checked the UPA_USR table but that does not tell us as to why the role is revoked from the user.
    Anyone faced similar issue?
    Thanks,
    Bikash

    The patch we were given was 14226386, also called 11.1.1.5.2AK. The readme has the following overview:
    This patch addresses the concurrency issues encountered in 11g R1 PS1 as described below
    1. Unlike in OIM 11g R1 PS1, when a user's role membership changes policy evaluation doesn't
         kick off immediately. Instead the user is flagged for policy evaluation in the future.
         'Evaluate User Policies' scheduled task then triggers policy evaluation for such users.
         The scheduled task ensures that there is only one policy evaluation for a user at any
         given time. So, duplicate accounts or entitlements wouldn't be provisioned to a user.
         With this fix, access policy based provisioning events will be triggered only when
         'Evaluate User Policies' scheduled task runs. Hence, the frequency of this scheduled
         task needs to be tuned for the customer's deployment. The recommendation is to set it to
         10 minutes.
         In addition to binary changes, this fix involves data model and metadata changes as
         described below.
    2. In a custom event handler, use Platform.getServiceForEventHandler() instead of
    Platform.getService() to get a handle to a Service available in OIM before making an API
         call. This ensures that the API completes in its entirety (including any post processing)
         when it returns. Also, this brings in predicability in the order of execution of OIM
         events on the same entity created from one another.
    3. When trusted source reconciliation brings in multiple events on the same user these events
    are processed by OIM sequentially.
    But since then BP03 and BP04 have been released, I would suggest you find out if BP04 has resolved this from support before applying anything.
    -Kevin

  • BIP - OIM 11g

    Hi ,
    Can anyone tell me whether BIP 11.1.1.6.0 is supported with OIM 11.1.1.5.0 + BP03 or not ?

    I don't think that's a supported configuration . We also recently had same versioning issue . I would suggest you to go through the read me of BP 03 bundle patch .
    It talks about the supported version of BIP with OIM 11g BP03 .
    I hope this helps .
    Regards
    Suren

  • Updates from OIM to Lotus Notes via Lotus User policy

    Hi Guys,
    OIM - Version 11.1.1.5 (Bp03)
    Lotus Notes connector -v 11.1.1.5
    Connector Server - v11.1.1.5
    Currently we execute a trusted recon from AD to OIM to create and update users. We have the Lotus Notes connector deployed and 'Lotus User' provisioning policy implemented.
    I can create and delete users in Domino via this policy in OIM but I'm having an issue with user updates such as renames from AD, being new to OIM I may be missing a few steps but I believe all the config to manage updates is correct. When we reconcile changes from AD - the OIM user's entry gets updated successfully but their lotus provisioning form/policy doesn't - is this what should happen or should I have to run a target recon? Reading the documentation it seems that the target recon job is not the proper process to update user entries in Domino and should be completed via "provisioning"
    I've confirmed that within the Process definition adpLNUPDATEDUSERINFO is configured for the required fields but is there a trick to this config to trigger updates within the provisioning policy and update the user's lotus provisioning form? If I manually enter the new details in the user's lotus provisioning form - the user's domino entry is updated successfuly.
    Thanks guys,
    Edited by: 955006 on Aug 27, 2012 6:33 PM

    To update user attributes you need to add two process tasks for each attribute in process definition. First tasks is change tasks. It should named like "Change <Attribute name>". This task will use a transfer value adapter. Transfer value adapter will read attribute from user profile whenever that attribute changed and copy it into your process form. Add entry for respective attributes and their change tasks in Lookup.USR_PROCESS_TRIGGER lookup.
    Second task will be update task. It should be named like "<Attribute Name> updated". This task will use adpLNUPDATEDUSERINFO adapter. Attribute name and its value will be passed as parameter to this adapter which in turn will modify it in your target system.
    Refer here:
    Re: Enabling update for provisioned user in OIM11g
    regards,
    GP

  • How do I view and disable unwanted crap in the CS5 installer

    I'm running the trial installer, and I noticed Adobe has become even more creative with hiding away all its silent-and-utterly-unnecessary payloads. In addition to defining required components in the proxy.xml files like for CS3 and CS4, there's now also a "Media_db.db" SQLite3 database with all payloads and dependencies that needs to be modified... and in the mean time no one bothered to actually fix the installer to offer us ways to not install things we don't want in the slightest.
    To adobe in general: I want to install what *I* want to install, not what you want to install on my computers. I don't want AIR, and Media Player, and your own flavour of a JRE, and... well basically of the 1.5Gb your Photoshop CS5 installer wants me to install, I only need 500Mb (namely: photoshop, cmap, type support, xmp and the required fonts and color profiles). How do I turn the rest of the payloads off?
    Can we get someone who wrote the installer for this -quite frankly wonderful- program on the line so that they can tell us all how we can actually control the install process so that it does NOT install all the stuff Adobe wants to force onto our systems?

    Hello. I’m the engineering manager for the Creative Suite and also responsible for the installation technology.
    There’s lots of topics here, so let me try to address them one at a time.
    First, our guiding principle for CS5 installers was to fix the top call generators for CS4 so that the installer succeeded more frequently. In addition, we made some significant architectural changes to better enable volume deployment scenarios. There is still a long way to go before the installers are perfect; but, gauging from the overall number of customer escalations over the past days since shipping we did succeed at dramatically reducing the number of customer escalations. Volume deployment tools are not yet released and we’ll see if those help volume deployment scenarios shortly. I’m not sure from where you heard the installers were going to be revamped from the bottom up. That’s never been the plan.
    Adobe has become even more creative with hiding away all its silent-and-utterly-unnecessary payloads
    The intent is to make the most common installation scenarios very simple, with a second goal to give the user as much configurability as we safely can. We’re not actually *trying* to hide anything. You can find the list of payloads and their use here:
    http://blogs.adobe.com/OOBE/2010/05/cs5_payloads.html
    The actual way that dependencies are determined is that each product lists its own subcomponents and how strong of a dependency that product has on each subcomponent. Subcomponents that are deemed “Critical” or “Required” do not show up as deselectable. Subcomponents that are “Recommended” or “Optional” do show up as deselectable. It sounds like the root disagreement here is the definition of what payloads should be Critical or Required vs. Recommended or Optional. Here’s the definition of the different dependency levels:
    Critical –The product will not successfully launch without this payload.
    Required - Without this payload the product’s primary functionality will not work as expected. The trick is defining what “primary functionality” means. Each product defines this on their own.
    Recommended – Tertiary functionality does not work if this payload is not deployed.
    Optional – There is no interactivity between the component and the product. Not installing the component should not adversely affect the product.
    For Photoshop CS5, the installer includes six Recommended or Optional payloads: Extension Manager, ExtendScript Toolkit, Device Central, AIR, Media Player, and Fonts Recommended. Deselecting any one of them should result in that component NOT being installed. I just ran the Photoshop CS5 installer on a Windows XP system after deselecting each one of those six components and verified that indeed none of them were installed. (Note, I already had AIR on the system so I cannot really verify that AIR didn’t get installed in this particular install instance.)
    Even deselecting all six leaves almost 1.5 GB to be installed. One could easily argue that many payloads marked as Critical or Required should instead be Recommended, such as Bridge. You have a valid point there.
    The JRE point is an interesting one. In CS4 there were multiple copies (6, if memory serves) of the JRE being installed. Customers (and I) just didn’t know about it. Many different products just included the JRE as part of their product folder. In fact, Dreamweaver still does this today. We’ve pulled the other copies into one common payload. So now there are only two copies of the JRE being installed, the common one and the Dreamweaver one. The reason we tried to reduce the number of JREs installed is to reduce the cost in disk space to the customer as well as be able to more adequately address security vulnerabilities if one should occur within the JRE. These are all just normal JREs from Sun and haven’t been tweaked in any way; but, we need a known version to ensure the products keep running properly. If we just leverage the system version (on Mac) or a common version across the system (on Win) then we’ve encountered numerous customer escalations when the JRE is updated on that system.
    Bridge in the Suite install case is also interesting. Because Photoshop has a Required dependency on Bridge, if you deselect Bridge with another product but then have Photoshop selected for install then Bridge will still be installed.
    Can we get someone who wrote the installer for this -quite frankly wonderful- program on the line so that they can tell us all how we can actually control the install process so that it does NOT install all the stuff Adobe wants to force onto our systems?
    I’ll try to dig up some instructions. Using the upcoming enterprise deployment toolkit is one method; but, that’s not going to be available for at least a few more weeks. It may take a few days to post instructions since we have to test the instructions before posting them. Note also that the product teams have not tested any configuration where the Critical and Required payloads are not installed, so the products may not function properly.
    When I do get the instructions I’ll post them at this blog:
    http://blogs.adobe.com/OOBE/
    Thanks,
    --Eric ([email protected])

  • JDeveloper Extension for SINGLE CLICK deployment of OIM customizations

    I am not sure most of OIM Developers, System Integrators and Architects aware of this Oracle Asset, hence sharing information.
    In most of the questions posted on forum related to event handler usages Plugin Registration utility and weblogic scripts to import / export meta data files into MDS. There is easy way to deploy OIM 11g even handler plugins , Scheduled Tasks, Request Datasets and Notification Events using OIM Customization Installer JDeveloper Extension.
    Oracle has published Oracle Identity Manager 11g Sample Assets some time back. You can use OIM Customization Installer JDeveloper Extension for SINGLE CLICK deployment of OIM customizations like Event Handlers, Plugins, Scheduled Tasks, Request Datasets and Notification Events.
    You can access and download Oracle Asset using below link,
    http://www.oracle.com/technetwork/middleware/id-mgmt/overview/oim-11g-assets-504842.html
    Thanks,
    Pradeep.

    Pradeep,
    Thanks for sharing this. I have gone through this asset sometime back. This is quite helpful w.r.t deployment but does not have any other added advantage. For example, it does not create the xml's automatically or does not validate them etc. If I remember it right, this plugin was supported till 11.1.1.3 only.
    Appreciate you sharing this as it would surely help folks here.
    -Bikash

  • Filename extension in Payload Swap bean

    Hi Experts
    I have a scenario Proxy to FTPS , where I have to send an excel attachment. I have used payload swap bean in receiver channel and it is working fine as I am now able to see attachment in final destination folder however since the file name is coming from ECC and we are using dynamic configuration in PI to handle this. excel attachment is missing the extention .xls when it is being triggered from ECC and therefore in FTP folder file is getting generated but with no extention.
    I have added the extention .xls (as per the MIME header) in dynamic config and also tried to use concat function to achieve this extention to be added as final name of the file but when I did above adjustments I can see the correct name being generated in Main payload in SAP PI receiver channel monitoring but not in final destination folder, file still looks same as earlier (without any extention) , I believe since I am using payloadswapbean in module whatever I am getting in Mainpayload is being swapped by excel attachment values but not sure why the correct extention is not being shown up at final destination folders.
    Please suggest how can I get the correct file name in destination folder with the help of SAP PI, I know I can do this if ECC will add .xls in attachment name.

    Hi Mohit,
    I have tested the same scenario and it is working with PayloadSwapBean and DynamicConfiguration in the mapping and the file name correctly placed in the target.
    Receiver File CC:
    Dynamic Configuration:
    Target Directory:
    If your file name correctly set in dynamic configuration then the target file will be created correctly.
    Regards,
    Praveen.

  • DIP can't contact OID after OIM domain extension and configuration

    Hello,
    After extending our domain for OIM, configuring and propagating the domain, we are having issues with DIP contacting OID.
    When starting the managed server, wls_ods1, the following error is reported in the .out file:
    <Error> <oracle.dip> <DIP-10013> <Exception
    javax.naming.CommunicationException: simple bind failed: oid.company.com:3131 [Root exception is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target.
    In Enterprise Manager the components Quartz Scheduler and MBeans as down, and under the DIP server properties, when testing the connection, we receive the following error: The connection test could not be performed.The test aborted with the message : Unable to locate the DIP Sync profile mbean - :oracle.idm.integration.sync.config:*:Unable to locate the DIP Sync profile mbean - :oracle.idm.integration.sync.config:*:
    OID is running before attempting to start the managed server. The certs have not changed during this process.
    Please help.
    Thank you.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Check the compatibility matrix. I don't believe you are supposed to run OIM and OID in the same domain.
    Kerry

  • Different Attachment extension(.xls,.txt) in sender mail adapter

    Hi Experts
    Is it possible to use different type of attachment extension (e.g .xls,.txt) in the sender mail adapter?
    My requirement is , the attachment in the mail adapter will be used as the main payload.So I am using PayloadSwapBean adapter module.
    Currently I am using the following module key for .xls attachment and it is working.Configuration for .xls attachment is as follows
    swap.keyName-Content-Disposition
    swap.keyname-Content-Description
    swap.keyName-Content-Type
    swap.keyValue-attachment;filename="MailAttachment-1.xls"
    swap.keyValue-MailAttachment-1
    swap.keyValue-application/vnd.ms-excel.
    Now, the attachment may be .xls or .txt file.
    Now If I want to use .txt atachment then do I need to define all these parameter again and in that case what will be my content type for .txt file.
    Your inputs required
    thanks
    Ayan

    PayloadSwapBean  will only convert the attachment as the main payload.
    Yeah for reading excel file I have a separate custom adapter module.This is not in the scope of my question..
    All I am asking , can .txt as well as .xls attachment be used in the same sender mail adapter.
    If that is possible what will be my content-type for .txt or can I remove content-type and use only content-disposition and content-description so that any type of attachment it can recognise.
    The momment I am specifying  content-type , I am making it particular  that only say .xls attachment , it will identify.
    I hope I make you clear.Inputs required
    Thanks
    Ayan

  • Error updating Dreamweaver and Extension Manager CS6 (Creative Cloud)

    Hello,
    I'm having troubles updating Dreamweaver and Extension Manager CS6 (Creative Cloud) on Macbook Pro with OS version 10.8.2. I get this error codes for both updates U44M1P7.
    The log files are generated.
    Here is an extract (last lines) of the dreamweaver log file (Adobe Dreamweaver CS6 12.2.0 04-16-2013.log):
    04/16/13 10:17:39:997 | [INFO] |  | OOBE | DE |  |  |  | 118619 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:39:997 | [INFO] |  | OOBE | DE |  |  |  | 118619 | Installer Operation: PayloadUninstaller
    04/16/13 10:17:39:997 | [INFO] |  | OOBE | DE |  |  |  | 118619 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:39:997 | [INFO] |  | OOBE | DE |  |  |  | 118619 | Session {A9861095-6F8C-11E2-B313-84E4FE4B0A47} modify request for AdobeCode: {CB894C92-6F8C-11E2-B313-9980D700C45F}
    04/16/13 10:17:40:024 | [INFO] |  | OOBE | DE |  |  |  | 118619 | Effective AdobeCode for: {CB894C92-6F8C-11E2-B313-9980D700C45F} is {CB894C92-6F8C-11E2-B313-9980D700C45F}
    04/16/13 10:17:40:070 | [INFO] |  | OOBE | DE |  |  |  | 118619 | PDB install manipulation failed
    04/16/13 10:17:40:098 | [INFO] |  | OOBE | DE |  |  |  | 118086 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:40:098 | [INFO] |  | OOBE | DE |  |  |  | 118086 | :: END TIMER :: [Payload Operation :{CB894C92-6F8C-11E2-B313-9980D700C45F}] took 101 milliseconds (0.101 seconds) DTR = 39.604 KBPS (0.0386757 MBPS)
    04/16/13 10:17:40:099 | [INFO] |  | OOBE | DE |  |  |  | 118086 | User specified overrideFile:
    04/16/13 10:17:40:101 | [INFO] |  | OOBE | DE |  |  |  | 118086 | The csu inventory was not updated for payload Adobe Dreamweaver CS6_12.2.0_AdobeDreamweaver12de_DELanguagePack 12.2.0.0 {CB894C92-6F8C-11E2-B313-9980D700C45F}, value of local var is -1
    04/16/13 10:17:40:101 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Calling the ROLLBACK custom action code for pre-install for payload Adobe Dreamweaver CS6_12.2.0_AdobeDreamweaver12de_DELanguagePack 12.2.0.0 {CB894C92-6F8C-11E2-B313-9980D700C45F}
    04/16/13 10:17:40:143 | [INFO] |  | OOBE | DE |  |  |  | 118086 | No operation.  We're done:
    04/16/13 10:17:42:147 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Total components installed: 0
    04/16/13 10:17:42:147 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Total components repaired: 0
    04/16/13 10:17:42:147 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Total components removed: 0
    04/16/13 10:17:42:147 | [WARN] |  | OOBE | DE |  |  |  | 118086 | DW050: The following payload errors were found during install:
    04/16/13 10:17:42:147 | [WARN] |  | OOBE | DE |  |  |  | 118086 | DW050:  - Adobe Dreamweaver CS6_12.2.0_AdobeDreamweaver12-mul: Patch already installed
    04/16/13 10:17:42:147 | [WARN] |  | OOBE | DE |  |  |  | 118086 | DW050:  - Adobe Dreamweaver CS6_12.2.0_AdobeDreamweaver12de_DELanguagePack: Install failed
    04/16/13 10:17:42:147 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Call PostSession Custom Hook
    04/16/13 10:17:42:147 | [INFO] |  | OOBE | DE |  |  |  | 118086 | ::START TIMER:: [Post session :{A9861095-6F8C-11E2-B313-84E4FE4B0A47}]
    04/16/13 10:17:42:148 | [INFO] |  | OOBE | DE |  |  |  | 118086 | In ReinstallSessionCloseProc
    04/16/13 10:17:42:148 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Custom action return code: 0
    04/16/13 10:17:42:148 | [INFO] |  | OOBE | DE |  |  |  | 118086 | :: END TIMER :: [Post session :{A9861095-6F8C-11E2-B313-84E4FE4B0A47}] took 0 milliseconds (0 seconds)
    04/16/13 10:17:42:148 | [INFO] |  | OOBE | DE |  |  |  | 118086 | :: END TIMER :: [Total Timer] took 17239 milliseconds (17.239 seconds) DTR = 1.16016 KBPS (0.00113297 MBPS)
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | -------------------------------------- Summary --------------------------------------
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 |  - 0 fatal error(s), 0 error(s)
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | OSX version: 10.8.3 
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 |
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | -------------------------------------------------------------------------------------
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 |
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Exit Code: 7 - Unable to complete Silent workflow.
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | END - Installer Session
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Here is an extract (last lines) of the extension manager log file (Adobe Extension Manager CS6 6.0.5 04-16-2013.log):
    04/16/13 10:17:17:287 | [INFO] |  | OOBE | DE |  |  |  | 117458 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:17:287 | [INFO] |  | OOBE | DE |  |  |  | 117458 | Installer Operation: PayloadUninstaller
    04/16/13 10:17:17:287 | [INFO] |  | OOBE | DE |  |  |  | 117458 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:17:287 | [INFO] |  | OOBE | DE |  |  |  | 117458 | Session {7E13F325-CE11-42B3-BFD8-C15A8296EACB} modify request for AdobeCode: {7E13F325-CE11-42B3-BFD8-C15A8296EACB}
    04/16/13 10:17:17:316 | [INFO] |  | OOBE | DE |  |  |  | 117458 | Effective AdobeCode for: {7E13F325-CE11-42B3-BFD8-C15A8296EACB} is {7E13F325-CE11-42B3-BFD8-C15A8296EACB}
    04/16/13 10:17:17:364 | [INFO] |  | OOBE | DE |  |  |  | 117458 | PDB install manipulation failed
    04/16/13 10:17:17:388 | [INFO] |  | OOBE | DE |  |  |  | 117373 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:17:388 | [INFO] |  | OOBE | DE |  |  |  | 117373 | :: END TIMER :: [Payload Operation :{7E13F325-CE11-42B3-BFD8-C15A8296EACB}] took 102 milliseconds (0.102 seconds)
    04/16/13 10:17:17:389 | [INFO] |  | OOBE | DE |  |  |  | 117373 | User specified overrideFile:
    04/16/13 10:17:17:391 | [INFO] |  | OOBE | DE |  |  |  | 117373 | The csu inventory was not updated for payload Adobe Extension Manager CS6_6.0.5_AdobeExtensionManager6.0All 6.0.5.0 {7E13F325-CE11-42B3-BFD8-C15A8296EACB}, value of local var is -1
    04/16/13 10:17:17:391 | [INFO] |  | OOBE | DE |  |  |  | 117373 | Calling the ROLLBACK custom action code for pre-install for payload Adobe Extension Manager CS6_6.0.5_AdobeExtensionManager6.0All 6.0.5.0 {7E13F325-CE11-42B3-BFD8-C15A8296EACB}
    04/16/13 10:17:17:433 | [INFO] |  | OOBE | DE |  |  |  | 117373 | No operation.  We're done:
    04/16/13 10:17:19:436 | [INFO] |  | OOBE | DE |  |  |  | 117373 | Total components installed: 0
    04/16/13 10:17:19:436 | [INFO] |  | OOBE | DE |  |  |  | 117373 | Total components repaired: 0
    04/16/13 10:17:19:436 | [INFO] |  | OOBE | DE |  |  |  | 117373 | Total components removed: 0
    04/16/13 10:17:19:437 | [WARN] |  | OOBE | DE |  |  |  | 117373 | DW050: The following payload errors were found during install:
    04/16/13 10:17:19:437 | [WARN] |  | OOBE | DE |  |  |  | 117373 | DW050:  - Adobe Extension Manager CS6_6.0.5_AdobeExtensionManager6.0All: Install failed
    04/16/13 10:17:19:437 | [INFO] |  | OOBE | DE |  |  |  | 117373 | Call PostSession Custom Hook
    04/16/13 10:17:19:437 | [INFO] |  | OOBE | DE |  |  |  | 117373 | :: END TIMER :: [Total Timer] took 3213 milliseconds (3.213 seconds) DTR = 4.97977 KBPS (0.00486306 MBPS)
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | -------------------------------------- Summary --------------------------------------
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 |  - 0 fatal error(s), 0 error(s)
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | OSX version: 10.8.3 
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 |
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | -------------------------------------------------------------------------------------
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 |
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | Exit Code: 7 - Unable to complete Silent workflow.
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | END - Installer Session
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Regards
    Jan

    In this log file I can see you are getting Error : U44M1P7 while updating the software
    This Error comes where language packs for software are not installed properly on the machine.
    I would suggest to update Adobe Application manager from
    Windows : http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
    MAC: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4774
    then try to install the update if still you are not able to update software and getting same error then uninstall all the Adobe software selecting remove prefernces.
    After uninstalling the software run the Adobe Cleaner tool(http://www.adobe.com/support/contact/cscleanertool.html) and remove the leftovers.
    Regards,
    Jatin Dembla

  • Unable to start scheduler in OIM 9.1.0.2bp11 Weblo10.3.2

    Hello,
    After doing a REINIT using the scheduler web interface : http://xxxxx:7511/xlScheduler/ with xelsysadm account
    Then, STOP the scheduler and trying to START it without success.
    I have restarted my server, same issue.
    Bellow are my log file details when starting my OIM and after the ############################################# section, the logs when clicking the START button of the scheduler interface :
    Thanks for your help !
    JAVA Memory arguments: -Xms1280m -Xmx1280m -XX:PermSize=128m -XX:MaxPermSize=256m
    WLS Start Mode=Development
    CLASSPATH=:/appl/oim/middleware/patch_wls1032/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/appl/oim/middleware/patch_wls1030/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/appl/oim/middleware/jdk160_14_R27.6.5-32/lib/tools.jar:/appl/oim/middleware/utils/config/10.3/config-launch.jar:/appl/oim/middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/appl/oim/middleware/wlserver_10.3/server/lib/weblogic.jar:/appl/oim/middleware/modules/features/weblogic.server.modules_10.3.2.0.jar:/appl/oim/middleware/wlserver_10.3/server/lib/webservices.jar:/appl/oim/middleware/modules/org.apache.ant_1.7.0/lib/ant-all.jar:/appl/oim/middleware/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar::/appl/oim/middleware/wlserver_10.3/common/eval/pointbase/lib/pbclient57.jar:/appl/oim/middleware/wlserver_10.3/server/lib/xqrl.jar:/appl/oim/product/9.1.0.2/xellerate/ext/jdbcpool-0.99.jar:/appl/oim/product/9.1.0.2/xellerate/ext/xerces.jar:/appl/oim/product/9.1.0.2/xellerate/lib/xlLogger.jar:/appl/oim/product/9.1.0.2/xellerate/ext/log4j-1.2.8.jar:/appl/oim/product/9.1.0.2/xellerate/lib/xlUtils.jar:/appl/oim/product/9.1.0.2/xellerate/lib/xlCrypto.jar:::
    PATH=/appl/oim/middleware/wlserver_10.3/server/bin:/appl/oim/middleware/modules/org.apache.ant_1.7.0/bin:/appl/oim/middleware/jdk160_14_R27.6.5-32/jre/bin:/appl/oim/middleware/jdk160_14_R27.6.5-32/bin:/appl/oim/middleware/wlserver_10.3/server/bin:/appl/oim/middleware/modules/org.apache.ant_1.7.0/bin:/appl/oim/middleware/jdk160_14_R27.6.5-32/jre/bin:/appl/oim/middleware/jdk160_14_R27.6.5-32/bin:/sbin:/usr/sbin:/bin:/usr/bin
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://hostname:port/console *
    starting weblogic with Java version:
    java version "1.6.0_14"
    Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
    Java HotSpot(TM) Client VM (build 14.0-b16, mixed mode)
    Starting WLS with line:
    /appl/oim/middleware/jdk160_14_R27.6.5-32/bin/java -client -Xms1280m -Xmx1280m -XX:PermSize=128m -XX:MaxPermSize=256m -Dweblogic.security.SSL.trustedCAKeyStore=/appl/oim/middleware/wlserver_10.3/server/lib/cacerts -DXL.HomeDir=/appl/oim/product/9.1.0.2/xellerate -Djava.security.auth.login.config=/appl/oim/product/9.1.0.2/xellerate/config/authwl.conf -Dlog4j.configuration=file:/appl/oim/product/9.1.0.2/xellerate/config/log.properties -Djava.awt.headless=true -Xverify:none -da -Dplatform.home=/appl/oim/middleware/wlserver_10.3 -Dwls.home=/appl/oim/middleware/wlserver_10.3/server -Dweblogic.home=/appl/oim/middleware/wlserver_10.3/server -Dweblogic.management.discover=false -Dweblogic.management.server=http://mrs-px-00050:7001 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=/appl/oim/middleware/patch_wls1032/profiles/default/sysext_manifest_classpath:/appl/oim/middleware/patch_wls1030/profiles/default/sysext_manifest_classpath -Dweblogic.Name=px50 -Djava.security.policy=/appl/oim/middleware/wlserver_10.3/server/lib/weblogic.policy weblogic.Server
    <Dec 16, 2010 9:27:44 AM UTC> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    /appl/oim/user_projects/domains/OIM_PREPROD/lib/log4j-1.2.8.jar:/appl/oim/user_projects/domains/OIM_PREPROD/lib/mbeantypes/XL10SecurityProviders.jar:/appl/oim/user_projects/domains/OIM_PREPROD/lib/nexaweb-common.jar>
    <Dec 16, 2010 9:27:44 AM UTC> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 14.0-b16 from Sun Microsystems Inc.>
    <Dec 16, 2010 9:27:45 AM UTC> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.2.0 Tue Oct 20 12:16:15 PDT 2009 1267925 >
    <Dec 16, 2010 9:27:46 AM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Dec 16, 2010 9:27:46 AM UTC> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Dec 16, 2010 9:27:47 AM UTC> <Notice> <LoggingService> <BEA-320400> <The log file /appl/oim/user_projects/domains/OIM_PREPROD/servers/px50/logs/px50.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Dec 16, 2010 9:27:47 AM UTC> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to /appl/oim/user_projects/domains/OIM_PREPROD/servers/px50/logs/px50.log00054. Log messages will continue to be logged in /appl/oim/user_projects/domains/OIM_PREPROD/servers/px50/logs/px50.log.>
    <Dec 16, 2010 9:27:47 AM UTC> <Notice> <Log Management> <BEA-170019> <The server log file /appl/oim/user_projects/domains/OIM_PREPROD/servers/px50/logs/px50.log is opened. All server side log events will be written to this file.>
    log4j:WARN No such property [maxBackupIndex] in org.apache.log4j.DailyRollingFileAppender.
    log4j:WARN No such property [maxBackupIndex] in org.apache.log4j.DailyRollingFileAppender.
    DEBUG,16 Dec 2010 09:28:38,604,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateAuthenticationProviderImpl/initialize entered.
    DEBUG,16 Dec 2010 09:28:38,605,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateAuthenticationProviderImpl/initialize left.
    <Dec 16, 2010 9:28:39 AM UTC> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Dec 16, 2010 9:28:40 AM UTC> <Notice> <LoggingService> <BEA-320400> <The log file /appl/oim/user_projects/domains/OIM_PREPROD/servers/px50/logs/access.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Dec 16, 2010 9:28:40 AM UTC> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to /appl/oim/user_projects/domains/OIM_PREPROD/servers/px50/logs/access.log00172. Log messages will continue to be logged in /appl/oim/user_projects/domains/OIM_PREPROD/servers/px50/logs/access.log.>
    <Dec 16, 2010 9:28:41 AM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Dec 16, 2010 9:28:41 AM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Dec 16, 2010 9:29:05 AM UTC> <Warning> <HTTP> <BEA-101369> <ServletContext@404977[app:Xellerate module:/xlWebApp path:/xlWebApp spec-version:null]: The encoding jsp-descriptor param has been deprecated. Consider declaring the encoding in the jsp-config element (web.xml) or as a page directive (pageEncoding) instead.>
    Loading xalan.jar for XPathAPI.
         Nexaweb Technologies Inc.(C)2000-2004. All Rights Reserved.
         Nexaweb Technologies Inc.
         10 Canal Park
         Cambridge, MA 02141
         Tel: 617.577.8100. Email: [email protected]
    GMS: address is mrs-px-00050:56555
    DEBUG,16 Dec 2010 09:29:14,307,[XELLERATE.SCHEDULER],trigger Misfire instruction : MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_EXISTING_COUNT
    DEBUG,16 Dec 2010 09:29:14,307,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzTrigger left.
    DEBUG,16 Dec 2010 09:29:14,316,[XELLERATE.SCHEDULER],Loading Scheduled task class com.thortech.xl.scheduler.core.quartz.QuartzWrapperusing ADP classloader
    DEBUG,16 Dec 2010 09:29:14,323,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/scheduleJob left.
    DEBUG,16 Dec 2010 09:29:14,323,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/isTaskAlreadyPresent entered.
    DEBUG,16 Dec 2010 09:29:14,325,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/scheduleJob entered.
    DEBUG,16 Dec 2010 09:29:14,325,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzJobDetail entered.
    DEBUG,16 Dec 2010 09:29:14,325,[XELLERATE.SCHEDULER],Creating Quartz Job with job name Manage Reconciliation Events
    DEBUG,16 Dec 2010 09:29:14,325,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getJobClass entered.
    FATAL,16 Dec 2010 09:29:14,353,[SCHEDULER.WEBSTARTUP],Unable to start scheduler : SchedulerBaseTask
    <Dec 16, 2010 9:29:14 AM UTC> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Dec 16, 2010 9:29:14 AM UTC> <Notice> <Cluster> <BEA-000197> <Listening for announcements from cluster using unicast cluster messaging>
    <Dec 16, 2010 9:29:14 AM UTC> <Notice> <Cluster> <BEA-000133> <Waiting to synchronize with other running members of OIM_PREPROD_CLUSTER.>
    <Dec 16, 2010 9:29:46 AM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Dec 16, 2010 9:29:46 AM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Dec 16, 2010 9:29:46 AM UTC> <Notice> <Cluster> <BEA-000162> <Starting "async" replication service with remote cluster address "null">
    <Dec 16, 2010 9:29:46 AM UTC> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 10.0.141.40:7511 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Dec 16, 2010 9:29:46 AM UTC> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on fe80:0:0:0:250:56ff:fea2:6063:7511 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Dec 16, 2010 9:29:46 AM UTC> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on 127.0.0.1:7511 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Dec 16, 2010 9:29:46 AM UTC> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on 0:0:0:0:0:0:0:1:7511 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Dec 16, 2010 9:29:46 AM UTC> <Notice> <WebLogicServer> <BEA-000332> <Started WebLogic Managed Server "px50" for domain "OIM_PREPROD" running in Development Mode>
    <Dec 16, 2010 9:29:49 AM UTC> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Dec 16, 2010 9:29:49 AM UTC> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    DEBUG,16 Dec 2010 15:00:32,106,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateLoginModuleImpl/initialize entered.
    DEBUG,16 Dec 2010 15:00:32,106,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateLoginModuleImpl/initialize left.
    DEBUG,16 Dec 2010 15:00:32,106,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateLoginModuleImpl/login entered.
    DEBUG,16 Dec 2010 15:00:32,106,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateLoginModuleImpl/getCallbacks entered.
    DEBUG,16 Dec 2010 15:00:32,106,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateLoginModuleImpl/getCallbacks left.
    DEBUG,16 Dec 2010 15:00:32,106,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateLoginModuleImpl/getUserName - Data: userName - Value: xelsysadm
    DEBUG,16 Dec 2010 15:00:32,107,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateLoginModuleImpl/getPasswordHave entered.
    DEBUG,16 Dec 2010 15:00:32,107,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateLoginModuleImpl/getPasswordHave left.
    INFO,16 Dec 2010 15:00:32,107,[XELLERATE.ACCOUNTMANAGEMENT],Info Data: userName - Value: xelsysadm
    DEBUG,16 Dec 2010 15:00:32,107,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateLoginModuleImpl/login: Calling Authenticate [Without Java:]
    DEBUG,16 Dec 2010 15:00:32,107,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/connect entered.
    DEBUG,16 Dec 2010 15:00:32,107,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/getPropertyValue entered.
    DEBUG,16 Dec 2010 15:00:32,110,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/closeConnection entered.
    DEBUG,16 Dec 2010 15:00:32,111,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/closeConnection left.
    DEBUG,16 Dec 2010 15:00:32,111,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/getPropertyValue left.
    DEBUG,16 Dec 2010 15:00:32,111,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/getPropertyValue entered.
    DEBUG,16 Dec 2010 15:00:32,113,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/closeConnection entered.
    DEBUG,16 Dec 2010 15:00:32,113,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/closeConnection left.
    DEBUG,16 Dec 2010 15:00:32,113,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/getPropertyValue left.
    DEBUG,16 Dec 2010 15:00:32,115,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/closeConnection entered.
    DEBUG,16 Dec 2010 15:00:32,116,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/closeConnection left.
    DEBUG,16 Dec 2010 15:00:32,116,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/isPasswordExpired entered.
    DEBUG,16 Dec 2010 15:00:32,117,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/closeConnection entered.
    DEBUG,16 Dec 2010 15:00:32,118,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/closeConnection left.
    DEBUG,16 Dec 2010 15:00:32,118,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: Authenticate/connect left.
    DEBUG,16 Dec 2010 15:00:32,118,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XLDBRegistry/getUsersForGroup - Data: userName - Value: xelsysadm
    DEBUG,16 Dec 2010 15:00:32,118,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateLoginModuleImpl/login left.
    DEBUG,16 Dec 2010 15:00:32,118,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateLoginModuleImpl/commit entered.
    DEBUG,16 Dec 2010 15:00:32,118,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: XellerateLoginModuleImpl/commit left.
    DEBUG,16 Dec 2010 15:00:32,118,[XELLERATE.SCHEDULER],Class/Method: SchedulerUtil/getSchedulerUsers entered.
    DEBUG,16 Dec 2010 15:00:32,118,[XELLERATE.SCHEDULER],Class/Method: SchedulerUtil/getSchedulerUsers left.
    DEBUG,16 Dec 2010 15:00:32,118,[XELLERATE.SCHEDULER],Class/Method: SchedulerUtil/getSchedulerProperties entered.
    DEBUG,16 Dec 2010 15:00:32,119,[XELLERATE.SCHEDULER],Class/Method: SchedulerUtil/getSchedulerProperties left.
    DEBUG,16 Dec 2010 15:00:32,119,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getSchedulerInstance entered.
    DEBUG,16 Dec 2010 15:00:32,119,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getSchedulerInstance left.
    DEBUG,16 Dec 2010 15:00:32,119,[XELLERATE.SCHEDULER],Class/Method: SchedulerUtil/getUserTrasaction entered.
    DEBUG,16 Dec 2010 15:00:32,132,[XELLERATE.SCHEDULER],Class/Method: SchedulerUtil/getUserTrasaction left.
    DEBUG,16 Dec 2010 15:00:32,142,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/isTaskAlreadyPresent entered.
    ERROR,16 Dec 2010 15:00:32,142,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/isTaskAlreadyPresent encounter some problems: The Scheduler has been shutdown.
    org.quartz.SchedulerException: The Scheduler has been shutdown.
         at org.quartz.core.QuartzScheduler.validateState(QuartzScheduler.java:498)
         at org.quartz.core.QuartzScheduler.getJobDetail(QuartzScheduler.java:1063)
         at org.quartz.impl.StdScheduler.getJobDetail(StdScheduler.java:485)
         at com.thortech.xl.scheduler.core.quartz.QuartzSchedulerImpl.isTaskAlreadyPresent(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.initializeScheduler(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.startScheduler(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3594)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    DEBUG,16 Dec 2010 15:00:32,144,[XELLERATE.SCHEDULER],LefMethodDebug
    DEBUG,16 Dec 2010 15:00:32,144,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/scheduleJob entered.
    DEBUG,16 Dec 2010 15:00:32,144,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzJobDetail entered.
    DEBUG,16 Dec 2010 15:00:32,144,[XELLERATE.SCHEDULER],Creating Quartz Job with job name ADMINISTRATORS
    DEBUG,16 Dec 2010 15:00:32,144,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getJobClass entered.
    DEBUG,16 Dec 2010 15:00:32,239,[XELLERATE.SCHEDULER],LefMethodDebug
    DEBUG,16 Dec 2010 15:00:32,239,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzJobDetail left.
    DEBUG,16 Dec 2010 15:00:32,239,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzTrigger entered.
    DEBUG,16 Dec 2010 15:00:32,239,[XELLERATE.SCHEDULER],Creating Daily Trigger with StartTime 2009-08-22 15:46:49.0
    DEBUG,16 Dec 2010 15:00:32,243,[XELLERATE.SCHEDULER],triggerFreq : DAILY
    DEBUG,16 Dec 2010 15:00:32,244,[XELLERATE.SCHEDULER],triggerImpl : Trigger 'DEFAULT.ADMINISTRATORS': triggerClass: 'org.quartz.SimpleTrigger isVolatile: false calendar: 'null' misfireInstruction: 0
    DEBUG,16 Dec 2010 15:00:32,244,[XELLERATE.SCHEDULER],trigger Misfire instruction : MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_EXISTING_COUNT
    DEBUG,16 Dec 2010 15:00:32,244,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzTrigger left.
    DEBUG,16 Dec 2010 15:00:32,244,[XELLERATE.SCHEDULER],QuartzSchedulerImpl scheduleJob Exception
    org.quartz.SchedulerException: The Scheduler has been shutdown.
         at org.quartz.core.QuartzScheduler.validateState(QuartzScheduler.java:498)
         at org.quartz.core.QuartzScheduler.addJob(QuartzScheduler.java:635)
         at org.quartz.impl.StdScheduler.addJob(StdScheduler.java:243)
         at com.thortech.xl.scheduler.core.quartz.QuartzSchedulerImpl.scheduleJob(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.initializeScheduler(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.startScheduler(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3594)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    DEBUG,16 Dec 2010 15:00:32,244,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/isTaskAlreadyPresent entered.
    ERROR,16 Dec 2010 15:00:32,244,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/isTaskAlreadyPresent encounter some problems: The Scheduler has been shutdown.
    org.quartz.SchedulerException: The Scheduler has been shutdown.
         at org.quartz.core.QuartzScheduler.validateState(QuartzScheduler.java:498)
         at org.quartz.core.QuartzScheduler.getJobDetail(QuartzScheduler.java:1063)
         at org.quartz.impl.StdScheduler.getJobDetail(StdScheduler.java:485)
         at com.thortech.xl.scheduler.core.quartz.QuartzSchedulerImpl.isTaskAlreadyPresent(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.initializeScheduler(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.startScheduler(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3594)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    DEBUG,16 Dec 2010 15:00:32,245,[XELLERATE.SCHEDULER],LefMethodDebug
    DEBUG,16 Dec 2010 15:00:32,245,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/scheduleJob entered.
    DEBUG,16 Dec 2010 15:00:32,245,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzJobDetail entered.
    DEBUG,16 Dec 2010 15:00:32,245,[XELLERATE.SCHEDULER],Creating Quartz Job with job name RPM Reconciliation
    DEBUG,16 Dec 2010 15:00:32,245,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getJobClass entered.
    DEBUG,16 Dec 2010 15:00:32,246,[XELLERATE.SCHEDULER],LefMethodDebug
    DEBUG,16 Dec 2010 15:00:32,246,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzJobDetail left.
    DEBUG,16 Dec 2010 15:00:32,246,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzTrigger entered.
    DEBUG,16 Dec 2010 15:00:32,246,[XELLERATE.SCHEDULER],Creating Once Trigger with StartTime 2010-12-03 15:30:55.0
    DEBUG,16 Dec 2010 15:00:32,246,[XELLERATE.SCHEDULER],triggerFreq : ONCE
    DEBUG,16 Dec 2010 15:00:32,246,[XELLERATE.SCHEDULER],triggerImpl : Trigger 'DEFAULT.RPM Reconciliation': triggerClass: 'org.quartz.SimpleTrigger isVolatile: false calendar: 'null' misfireInstruction: 0
    DEBUG,16 Dec 2010 15:00:32,246,[XELLERATE.SCHEDULER],trigger Misfire instruction : MISFIRE_INSTRUCTION_RESCHEDULE_NEXT_WITH_EXISTING_COUNT
    DEBUG,16 Dec 2010 15:00:32,246,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzTrigger left.
    DEBUG,16 Dec 2010 15:00:32,246,[XELLERATE.SCHEDULER],QuartzSchedulerImpl scheduleJob Exception
    org.quartz.SchedulerException: The Scheduler has been shutdown.
         at org.quartz.core.QuartzScheduler.validateState(QuartzScheduler.java:498)
         at org.quartz.core.QuartzScheduler.scheduleJob(QuartzScheduler.java:542)
         at org.quartz.impl.StdScheduler.scheduleJob(StdScheduler.java:220)
         at com.thortech.xl.scheduler.core.quartz.QuartzSchedulerImpl.scheduleJob(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.initializeScheduler(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.startScheduler(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3594)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    DEBUG,16 Dec 2010 15:00:32,246,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/isTaskAlreadyPresent entered.
    ERROR,16 Dec 2010 15:00:32,246,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/isTaskAlreadyPresent encounter some problems: The Scheduler has been shutdown.
    org.quartz.SchedulerException: The Scheduler has been shutdown.
         at org.quartz.core.QuartzScheduler.validateState(QuartzScheduler.java:498)
         at org.quartz.core.QuartzScheduler.getJobDetail(QuartzScheduler.java:1063)
         at org.quartz.impl.StdScheduler.getJobDetail(StdScheduler.java:485)
         at com.thortech.xl.scheduler.core.quartz.QuartzSchedulerImpl.isTaskAlreadyPresent(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.initializeScheduler(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.startScheduler(Unknown Source)
         at com.thortech.xl.scheduler.deployment.webapp.SchedulerInitServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3594)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    DEBUG,16 Dec 2010 15:15:17,617,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/scheduleJob entered.
    DEBUG,16 Dec 2010 15:15:17,617,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getQuartzJobDetail entered.
    DEBUG,16 Dec 2010 15:15:17,618,[XELLERATE.SCHEDULER],Creating Quartz Job with job name Manage Reconciliation Events
    DEBUG,16 Dec 2010 15:15:17,618,[XELLERATE.SCHEDULER],Class/Method: QuartzSchedulerImpl/getJobClass entered.
    DEBUG,16 Dec 2010 15:15:17,618,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader entered.
    DEBUG,16 Dec 2010 15:15:17,618,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/getClassLoader left.
    DEBUG,16 Dec 2010 15:15:17,619,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/findClass entered.
    DEBUG,16 Dec 2010 15:15:17,620,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader:findClass - Data: loading class - Value: com.oracle.oim.dictao.cmacgm.utils.tasks.ReconcialiationTask
    DEBUG,16 Dec 2010 15:15:17,622,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader/findClass entered.
    DEBUG,16 Dec 2010 15:15:17,622,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoader:findClass - Data: loading class - Value: SchedulerBaseTask
    FATAL,16 Dec 2010 15:15:17,625,[SCHEDULER.WEBSTARTUP],Unable to start scheduler : SchedulerBaseTask

    Here is the result and we can see the SchedulerBaseTask class
    (px50) [iam10g] /appl/oim/product/9.1.0.2/xellerate/lib > jar tvf xlScheduler.jar
    0 Wed Dec 15 10:13:54 UTC 2010 META-INF/
    925 Wed Dec 15 10:13:52 UTC 2010 META-INF/MANIFEST.MF
    8776 Wed Dec 15 10:13:52 UTC 2010 META-INF/ejb-jar.xml
    2002 Wed Dec 15 10:13:52 UTC 2010 META-INF/weblogic-ejb-jar.xml
    0 Wed Dec 15 10:13:54 UTC 2010 com/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/schedule/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/schedule/tasks/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/beans/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/cluster/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/common/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/core/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/core/quartz/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/data/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/deployment/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/deployment/webapp/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/ejb/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/exception/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/interfaces/
    0 Wed Dec 15 10:13:54 UTC 2010 com/thortech/xl/scheduler/tasks/
    777 Mon Aug 09 22:34:00 UTC 2010 META-INF/ibm-ejb-jar-bnd.xmi
    581 Mon Aug 09 22:34:00 UTC 2010 META-INF/ibm-ejb-jar-ext.xmi
    9887 Mon Aug 09 22:34:00 UTC 2010 META-INF/jboss.xml
    1019 Mon Aug 09 22:34:00 UTC 2010 META-INF/orion-ejb-jar.xml
    2400 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/DeleteOfflineMessages.class
    1163 Mon Aug 09 22:35:00 UTC 2010 com/thortech/xl/schedule/tasks/EntitlementsConstants.class
    22973 Mon Aug 09 22:34:24 UTC 2010 com/thortech/xl/schedule/tasks/GetSODCheckResults.class
    3657 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/InitiateRequestApprovalTask.class
    5229 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/ProcessDeferredReconEvents.class
    3814 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/ProcessOldAuditMessages.class
    4629 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/ReIssueAuditMessage.class
    7221 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/ReSubmitTask.class
    26190 Mon Aug 09 22:34:24 UTC 2010 com/thortech/xl/schedule/tasks/ResubmitUninitiatedApprovalSODChecks.class
    27284 Mon Aug 09 22:34:24 UTC 2010 com/thortech/xl/schedule/tasks/ResubmitUninitiatedProvisioningSODChecks.class
    2330 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcBaseTask.class
    5432 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcEnableDisableEntitlement.class
    12003 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcEntitlementDeltaLoad.class
    15885 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcEntitlementListLoad.class
    23282 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcEntitlementsAssignmentTask.class
    4576 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcLDAPOperations.class
    6053 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcLDAPRecon.class
    2985 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcLDAPUpdate.class
    2205 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcLookupFieldReconciliation.class
    2876 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcRSAImport.class
    4572 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskAttestation.class
    3720 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskBaseReconEvent.class
    2372 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskDeleteOpenTasks.class
    5287 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskDisableRequest.class
    4947 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskEnableRequest.class
    3203 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskEscalation.class
    6799 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskGenRecon.class
    6596 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskGroupPriorityNoGap.class
    4239 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskPasswordExpiration.class
    4246 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskPasswordWarning.class
    5555 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskResubmitReconEvent.class
    2974 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskScheduledDaemon.class
    3346 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskScheduledProvision.class
    5077 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskSubmitAttestationRequets.class
    3953 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskTimedRetry.class
    4345 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskUserOperations.class
    3857 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskUsrDeprovision.class
    5951 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskUsrDisable.class
    3722 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskUsrEnable.class
    896 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskUsrEvaluatePolicies$BucketData.class
    2607 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskUsrEvaluatePolicies$PolicyEvalWorker.class
    5777 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskUsrEvaluatePolicies.class
    3924 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskUsrProvision.class
    3480 Mon Aug 09 22:35:06 UTC 2010 com/thortech/xl/schedule/tasks/tcTskUsrTriggerProvision.class
    5514 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/beans/SchedulerControllerSession.class
    327 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/cluster/ScheduleTaskEventInfo.class
    1331 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/cluster/ScheduleTaskEventListener.class
    5008 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/cluster/SchedulerClusterService.class
    1570 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/cluster/SchedulerTaskLocater.class
    772 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/common/SchedulerConstants.class
    7349 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/common/SchedulerUtil.class
    1225 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/core/Scheduler.class
    635 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/core/SchedulerFactory.class
    1245 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/core/quartz/QuartzSchedulerClassLoaderHelper.class
    19644 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/core/quartz/QuartzSchedulerImpl.class
    1456 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/core/quartz/QuartzTaskListener.class
    1369 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/core/quartz/QuartzTriggerListener.class
    7927 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/core/quartz/QuartzWrapper$TaskExecutionAction.class
    8049 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/core/quartz/QuartzWrapper.class
    1671 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/core/quartz/XLJobStoreCTM.class
    2093 Mon Aug 09 22:34:56 UTC 2010 com/thortech/xl/scheduler/data/TaskDetail.class
    1224 Mon Aug 09 22:34:56 UTC 2010 com/thortech/xl/scheduler/data/TriggerDetail.class
    13200 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/deployment/webapp/SchedulerInitServlet.class
    2500 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/ejb/SchedulerControllerBean.class
    482 Mon Aug 09 22:34:24 UTC 2010 com/thortech/xl/scheduler/exception/SchedulerGenericException.class
    246 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/exception/TaskAlreadyExistsException.class
    344 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/exception/UnableToStopException.class
    1162 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/interfaces/SchedulerController.class
    458 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/interfaces/SchedulerControllerHome.class
    1110 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/interfaces/SchedulerControllerLocal.class
    457 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/interfaces/SchedulerControllerLocalHome.class
    4193 Mon Aug 09 22:34:58 UTC 2010 com/thortech/xl/scheduler/interfaces/SchedulerControllerUtil.class
    1252 Mon Aug 09 22:34:24 UTC 2010 com/thortech/xl/scheduler/tasks/SchedulerBaseTask$XLSchedulerThread.class
    6661 Mon Aug 09 22:34:24 UTC 2010 com/thortech/xl/scheduler/tasks/SchedulerBaseTask.class

Maybe you are looking for