3rd Party Patching

Looking for some compare and contrast from people familiar with 3rd Party Patching venders.  I have been running our ConfigManager Environment for 3 years now after migrating from a really bad Competing Product (Client Automation).  My Information
Assurance group has recently decided that we are not reactive enough or fast enough with third party patch so management is considering 3rd Party Patching addons suchs as Skavlik and Solar Winds Patch manager or other competing Products like IBM Endpoint Manager
(BigFix) and Dell KACE.
So my question is if you have used any of these;
what was the Catalog like, and how well did the patches preform?
What was the cost (guestiment)
Anything special that you liked (or didn't like ) about the product?
I'm trying to build a good/competitive case and make a well informed decision, I'm attempting to download and play with as many of these as I can, but as I'm sure most of you know... It takes time which is something we lack a great deal of.
Thanks in advanced for any input and/or opinions!

I used this one before: "VMware vCenter Protect Update Catalog" (formely known as Shavlik)
Most customers however choose to deploy monthly MSP files to update products instead of using SCUP functionality. Reason will be probably complexity and license costs.
Within SCUP you can add catalogs (vendors), approve patches, and synchronize them to SCCM. After that you can use Automatic deployment rules (or manually approval once again) to deploy them to endpoints. Nice thing is that 3rd party patches will be available
in SCCM. Bad thing is you have another console for approving updates. Customers wants to have less consoles as possible.
My blogs: Henk's blog | Follow Me on:
Twitter | View My Profile on:
LinkedIn

Similar Messages

  • Patch 9211869 3RD PARTY CHECKWRITER ATTACHMENT NUMBERS NOT CORRECT WHEN MUL

    Hi:
    I have created an XML Third Party Check report that is based on the queries found in the seeded Oracle PAYUSGAR.rdf 115.24 check report. The patch 9211869 fixed an issue in the standard report where multiple checks for the same employee to the same payee for the same amount were NOT printing the correct garnishment reference number. I have reviewed the report code but have not been able to fix this same issue through XML.
    My queries will produce all of the correct data except the 2nd duplicate (same employee to the same payee for the same amount) prints the reference number from the 1st element rather than the 2nd. Does anyone know how the check data is tied to the elements through the tables?
    My example is:
    Person: Max Doe Check: 1234 Paid to: California Agency Check Amount: 121.00 Pre_payment_id: 766297 Ref # 4567
    Person: Max Doe Check: 1234 Paid to: California Agency Check Amount: 121.00 Pre_payment_id: 766302 Ref # 657AA
    (Ref # 657AA prints on the second check as Ref # 4567)
    The query from the report is:
    SELECT peev.screen_entry_value garn_ref_no
    ,:check_amount
    ,TO_CHAR(pay_us_payment_pkg.get_trx_date(
    :business_group_id,
    :ppa_payroll_action_id,
    NULL,
    :ppa_payroll_id,
    :ppa_consolidation_set_id,
    :ppa_org_payment_method_id,
    :ppa_effective_date,
    :ppa_date_earned,
    :ppa_override_date,
    ppp.pre_payment_id,
    ppa.effective_date
    ),'DD-MON-YYYY') payment_date
    ,TO_CHAR(ppa.date_earned, 'DD-MON-YYYY')
    ,prr_att.run_result_id
    ,peef.entry_information2 -- FIPS code
    ,peef.entry_information3 -- Medical Indicator
    ,paa.assignment_action_id
    ,pet.element_type_id
    FROM pay_element_entry_values_f peev,
    pay_input_values_f piv_att,
    pay_element_entries_f peef,
    pay_run_results prr_att,
    pay_run_results prr_pay,
    pay_payroll_actions ppa,
    pay_assignment_actions paa,
    pay_action_interlocks pai,
    pay_pre_payments ppp,
    pay_input_values_f piv_pay,
    pay_run_result_values prrv_att,
    pay_run_result_values prrv_pay,
    pay_element_types_f pet,
    pay_element_types_f pet_calc,
    pay_element_classifications pec
    WHERE ROUND(ppp.VALUE ,2) = :check_amount
    AND ppp.pre_payment_id = :pre_payment_id
    AND ppp.assignment_action_id = pai.locking_action_id
    AND pai.locked_action_id = paa.assignment_action_id
    AND ppa.payroll_action_id = paa.payroll_action_id
    AND ppa.action_type IN ('R', 'Q')
    AND ((paa.source_action_id IS NOT NULL AND ppa.run_type_id IS NOT NULL) OR
    (paa.source_action_id IS NULL AND ppa.run_type_id IS NULL))
    AND ppp.personal_payment_method_id = peef.personal_payment_method_id
    AND peef.assignment_id = paa.assignment_id
    AND ppa.date_earned BETWEEN peev.effective_start_date
    AND peev.effective_end_date
    AND ppa.date_earned BETWEEN peef.effective_start_date
    AND peef.effective_end_date
    AND piv_att.input_value_id = peev.input_value_id
    AND UPPER(piv_att.NAME) = 'ATTACHMENT NUMBER'
    AND ppa.effective_Date BETWEEN piv_att.effective_start_date
    AND piv_att.effective_end_date
    AND piv_att.input_value_id = prrv_att.input_value_id
    AND prrv_att.result_value = peev.screen_entry_value
    AND prrv_att.run_result_id = prr_att.run_result_id
    AND paa.assignment_Action_id = prr_att.assignment_Action_id
    AND prr_att.element_type_id = peef.element_type_id
    AND peef.element_type_id = pet.element_type_id
    AND pet.classification_id = pec.classification_id
    AND pec.classification_name = 'Involuntary Deductions'
    AND pec.legislation_code = 'US'
    AND pec.business_group_id IS NULL
    AND fnd_number.canonical_to_number(pet.element_information5) = pet_calc.element_type_id
    AND pet_calc.element_name LIKE pet.element_name || '%Calculator'
    AND pet_calc.element_type_id = piv_pay.element_type_id
    AND NVL(ppa.date_earned, ppa.effective_date) BETWEEN piv_pay.effective_start_date AND piv_pay.effective_end_date
    AND piv_pay.input_value_id = prrv_pay.input_value_id
    AND UPPER(piv_pay.NAME) = 'PAY VALUE'
    AND fnd_number.number_to_canonical(ppp.VALUE) = prrv_pay.result_value
    AND prr_pay.run_result_id = prrv_pay.run_result_id
    AND prr_pay.assignment_action_id = paa.assignment_action_id
    AND prr_pay.element_type_id = pet_calc.element_type_id
    ORDER BY prr_att.run_result_id;
    Somehow, Oracle has fixed this in the rdf but I have not been able to figure out how exactly. This is a function call in the report but they are passing the check amount and the prepayment_id. Regardless of which pre_payment_id is sent in, 2 rows are returned.
    If anyone has any thoughts, please let me know. This is the final tweak that is stopping our go-live with this.
    Thanks, RL

    Hi,
    Has this been resolved. I'm investigating ways to develop this report as the current CheckWriter(XML) does not work for 3rd party. Please let me know, if it worked for you.
    Thank you,
    Radha
    [email protected]

  • 3rd Party Application Vulnerability Patching-Automating and Best Practices-HELP!

    Using Kaspersky Security Center Version 10.1.249I have been tasked to come up with a process to manage our Microsoft workstations and Servers to patch 3rd party Vulnerabilities (WSUS is managing the Microsoft side).New to the KSC interface since i have inherited the install but was wondering if i could request some remedial assistance almost to the point of step by step on how I can automate the approval, download and install of "Critical" Vulnerabilites.I understand that everything is a "task" in KSC but I am not finding anything online and i Prefer the assistance of my spiceworks colleagues over calling support.I was playing around today with individual pc's in our IT group but it only worked after I MANUALLY approved the critical severity (kl)update under software updates.Requirements:Currently we scan for vulnerabilities once a...
    This topic first appeared in the Spiceworks Community

    I recommend finding out exactly why they would need administrative privileges and find GPO settings that would work for your organization. If they only need to install Drivers lets say, then only give them privileges to do that. 
    I personally work in the IT Department (Army of two) in an environment that has hundreds of users. They program, manufacture, and design various products and we are not flooded with requests. No user has administrative privileges aside from the us two in
    the IT Department. This allows us to better control the environment.
    By allowing your users to have administrative privileges, they will always have the capabilities to "Override" your policies for at least the computers they have administrative privileges.
    Of course, each environment is different and should be considered differently when setting up users rights and privileges. To perform their daily functions, ask yourself what administrative privileges do they need? Maybe only allow them those privileges
    through GPO.

  • What is Oracle's recommendation of enabling a 3rd Party application for Online Patching? Is this a requirement with EBS R12.2 or is this something that can be done in phases for e.g.:

    Hello -
    My Oracle Partner account uses Oracle EBS, Fusion Apps and is in the process of migrating from 10g to 11g;  forwarding their question here -
    What is Oracle’s recommendation of enabling a 3rd
    Party application for Online Patching? Is this a requirement with EBS R12.2 or
    is this something that can be done in phases for e.g.
    Phase 1: Oracle EBS utilizes Online patching while
    the 3rd Party application does not leverage edition based
    redefinition for Online patching
    Phase 2: 3rd Party application is modified
    to leverage edition based redefinition Online patching mechanism.
    I would appreciate any insight/recommendations you may have
    regarding Online patching for EBS 12.2.

    This seems to be related to EBS an may be better answered in the EBS forums as this forum is dedicated to Fusion.
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • SCCM Software Updates (and SCUP) vs. Application Management for 3rd Party Application Patching

    Hi,
    We're getting ready to tackle the phenomena known as Java patching, and I was wondering if I could get your personal preference; SCCM Software Updates (and SCUP) vs. Application Management for 3rd Party Application Patching?
    I probably should give a little background on my environment; It's a university atmosphere, so unless it's policy, you have to ask nicely...can't tell people to do things they don't want to; multiple version of required versions of Java for what ever reason,
    which need to be identified, grouped together, and then upgrade as much as possible without breaking their old applications.
    I was thinking that Application Management probably made more sense where it is more robust, especially for removing multiple installs of Java on a single system, but Software Updates/SCUP looks like it was built for this type of patching, so I'm a bit confused
    why SCCM would have two components which essentially did the same thing.
    Your thoughts?
    Thanks,
    Bill

    For Java version management specifically you can already achieve a lot by using the Application Model in CM12.
    You can define supersedence between the different versions, just make sure to opt for uninstall of the older version when defining it.

  • 3rd party database patching....

    DBA’s - Say you support a companies Oracle database estate, perhaps 60 large Oracle Databases. Some of these Databases relate to 3rd party information systems developed by another 3rd party. Oracle release say 5 new security patches to patch known vulnerabilities in a specific version of Oracle. This 3rd party says “we only support the application when it is running on a specific patch set”, which one can assume is a patch level/set that they know their application runs fine on. When tested on a new version of Oracle and the app is found to run fine, they will then install the patches.
    Your 3rd party pen testers come in, run their vulnerability scanner and a big RED finding comes up in their report saying “x missing patches on this oracle database”. Do your auditors accept that by anyone installing these patches may cause performance issues in the operation of the application? Is it acceptable to have a vulnerable system in your environment? Is the fact the database is internal behind perimeter defences a saving grace, but what if the un-patched vulnerability could be exploited through the apps public facing front end? I have never seen many audits/pen tests saying “Just apply the security patch where you can and it wont affect the availability/operation of the app”, “its always patch asap or you have a vulnerable system”, with little leeway for this kind of thing.
    What’s your views? Any happy medium that will satisfy your security manager or security auditors / or any practical work around?

    N Gasparotto wrote:
    Patches (one-off, CPU/PSU) are fixing known issues. Quarterly delivered for CPU/PSUs, whereas patchset are much bigger (they can introduced new features as well) and are considered as an upgrade when applying.
    Whereas the seconds can change the core, the firsts are generally very specific and should not make any differences on application level. Those ones are also known to fix security issues and should be applied on regular basis onto your production database, it has, of course, to be done after tests.
    Nicolas.So let me confirm so I understand this to a level.
    Security "patches" are released quarterly and address security issues - and should always be applied in a timely manner after testing, and should not affect the app.
    Whereas "patchsets" are essentially upgrades and are released a lot less frequently (assumption), but may very well affect the app
    The security related patches are the quarterly released, and are referrerd to as CPU's as opposed to patched sets.
    Is CPU critical patch update and PSU patch set update? And PSU dont address security at all, just functional bugs?

  • How do I get my 3rd party instruments to show up in my Logic Pro instrument library?

    I have purchased and downloaded orchestra instrument libraries from Albion. How do I get them to show up in my instrument library so they can be used?

    Hi
    If you mean the Spitfire Albion series (?) these run within Kontakt.
    Most 3rd party plugins do not directly support the Logic Library, so you would need to manually load in the plugin and any setting within the plug itself.
    You can then save that as a "Logic" Setting or Patch, which will show up in the Library.
    There is a large collection of Logic Settings for many 3rd party plugs over at LogicProHelp.com
    CCT

  • Upgrade to Windows 8.1 Pro Update 1 and it killed all my 3rd party drivers

    Hoping someone can help - my PC upgraded Windows 8.1 Pro (fresh install a few months ago) with the 'Update 1 patch' which was made available a few days ago.  It was done via Windows Update - I let it do its thing for about 15 minutes, restart etc.
    Once the machine restarted, I noticed the following:
    - no network connection
    - no sound
    - no working camera
    I went to the device manager and see a stack of 3rd-party devices with exclamation marks, all stating code 28 (the drivers for this device are not installed).  I go to each device and try to update the drivers - it looks like its going to work and then
    gives the error "The system cannot find the file specified".
    I do some googling and find the setupapi.dev.log.  The log for every device with a problem reads like this:
    >>>  [Device Install (DiShowUpdateDevice) - HDAUDIO\FUNC_01&VEN_10EC&DEV_0900&SUBSYS_1043859D&REV_1000\4&83A6FBB&0&0001]
    >>>  Section start 2014/04/12 01:23:46.588
          cmd: "C:\Windows\system32\mmc.exe" C:\Windows\system32\devmgmt.msc
         dvi: {DIF_UPDATEDRIVER_UI} 01:23:46.608
         dvi:      No class installer for 'Audio Device on High Definition Audio Bus'
         dvi:      Default installer: Enter 01:23:46.647
         dvi:      Default installer: Exit
         dvi: {DIF_UPDATEDRIVER_UI - exit(0xe000020e)} 01:23:46.686
         ndv: {Update Driver Software Wizard for HDAUDIO\FUNC_01&VEN_10EC&DEV_0900&SUBSYS_1043859D&REV_1000\4&83A6FBB&0&0001}
    !!!  ndv:      Driver package import failed for device.
    !!!  ndv:      Error 2: The system cannot find the file specified.
         ndv:      Installing NULL driver.
         dvi:      {Plug and Play Service: Device Install for HDAUDIO\FUNC_01&VEN_10EC&DEV_0900&SUBSYS_1043859D&REV_1000\4&83A6FBB&0&0001}
    !    ndv:           Installing NULL driver!
         dvi:           {DIF_ALLOW_INSTALL} 01:23:48.883
         dvi:                No class installer for 'Audio Device on High Definition Audio Bus'
         dvi:                No CoInstallers found
         dvi:                Default installer: Enter 01:23:48.883
         dvi:                Default installer: Exit
         dvi:           {DIF_ALLOW_INSTALL - exit(0xe000020e)} 01:23:48.884
         dvi:           {DIF_REGISTER_COINSTALLERS} 01:23:48.884
         dvi:                No class installer for 'Audio Device on High Definition Audio Bus'
         dvi:                Default installer: Enter 01:23:48.885
         dvi:                Default installer: Exit
         dvi:           {DIF_REGISTER_COINSTALLERS - exit(0x00000000)} 01:23:48.885
         dvi:           {DIF_INSTALLDEVICE} 01:23:48.885
         dvi:                No class installer for 'Audio Device on High Definition Audio Bus'
         dvi:                No CoInstallers found
         dvi:                Default installer: Enter 01:23:48.886
    !    dvi:                     Installing NULL driver!
         dvi:                     Install Null Driver: Removing device sub-tree. 01:23:48.887
         dvi:                     Install Null Driver: Removing device sub-tree completed. 01:23:48.890
         dvi:                     Install Null Driver: Restarting device. 01:23:48.892
         dvi:                     Install Null Driver: Restarting device completed. 01:23:48.892
         dvi:                     Install Device: Starting device. 01:23:48.892
         dvi:                     Install Device: Starting device completed. 01:23:48.893
         dvi:                Default installer: Exit
         dvi:           {DIF_INSTALLDEVICE - exit(0x00000000)} 01:23:48.894
         ump:      {Plug and Play Service: Device Install exit(00000000)}
         ndv: {Update Driver Software Wizard exit(00000002)}
    <<<  Section end 2014/04/12 01:23:50.286
    <<<  [Exit status: FAILURE(0x00000002)]
     It seems like 'update 1' as crapped all over my driver store.
    What can I do to fix this - I have tried a raft of things such as pnputil commands to add the driver INFs manually (they fail saying 'element not found'), but still I am stuck without sound, network and camera.
    This will be the last time I let Microsoft update automatically install - it will now be 100% manual, and done after a few weeks to ensure there aren't bugs.

    espero y te sirva este link :)
    http://blogs.itpro.es/octaviordz/2014/04/05/actualizar-de-windows-8-1-2012r2-a-windows-8-1-ws2012r2-update-con-script-de-powershell/
    Freelance-IT http://www.freelance-it.com.mx

  • Our converted eCourses often freeze when launched from our new 3rd party hosted LMS...

    We have recently purchased a new externally hosted LMS system (Silkroad's GreenLight) and we have a 3rd party taking our older authorware courses (which are working) and updating/converting them using Adobe Captivate 5.5.  Once these are done and uploaded into the LMS system, users are finding sporadic freezing at launch of the converted courses.  In some cases we are using a Riverbed solution to compress content so that network performance is not an issue.  With the various components involved in this situation. we are having a hard time troubleshooting and narrowing down the problem as it is so inconsistent.  I noticed a blog http://helpx.adobe.com/captivate/kb/projects-published-captivate-5-lms.html suggesting a fix and we tried this with one user it worked with another it did not.  Our environment consist of XP (and some Win7), Adobe Flash Player 10+, and IE8 or 9.  Can anyone tell us what the proposed template fix described in the blog is actually doing?  Or if you've experienced this problem and have another fix we could try?  Any help is appreciated....Getting desperate.  Thanks!

    I believe the patches offered in that post were to address an issue that sometimes occurs with Resume Data bookmarking in certain LMSs. 
    If you are currently using Resume Data bookmarking, try disabling it by checking the box in LMS Customisation dialog to Never Send Resume Data.  If that resolves your issue, you at least know what is causing it.
    In cases where there are a large number of variables, the only way to diagnose the issue may be to remove as many variables as possible first. Then when you finally get to a stable version that does not misbehave, you then re-introduce the other components to find the one/s that re-introduce the issue.
    So, in your case, you may need to look at how your developers are 'converting' the authorware content in Captivate.  Make sure they recreate everything using Captivate components, and insert the images via the approved menus etc.  I'd also temporarily avoid using this Riverbed compression solution until you have established the cause of your issue.  It may be interferring with something.

  • Cookies turned off and cleared, but 3rd party cookies are still being shared after Firefox v16.0.1 update

    after firefox updated from v15.0.1 to v16.0.1 on Friday (10/19/12), collusion v0.22 shows 3rd party cookies being shared, and a lot of them. I have firefox in "always use private browsing mode", with cookies not allowed, in addition there are no entries in "exception" or in "show cookies". The check boxes for cookies and 3rd party cookies are NOT checked.
    This behavior never happened before the update!
    I re-installed v15.0.1, but it is still happening.
    Rana full sys scan with the latest Norton Security, which found nothing. Tried a few others too, so I'm semi-certain that my system is not infected.
    System: Acer 5251-1245 with windows 7 (current patch levels up to date).
    What changed with v16.0.1 update? Did Collusion change?
    why are 3rd party cookies being shared, and how is it doing it?
    Is there a way to check to see if other browsers have the same issues? e.g. chrome, explorer (yuck!), safari, etc....
    I've really liked Firefox, but I am afraid to use it, especially to shop online or any financial stuff (banks, credit card payments, etc.).
    Maybe I was better off in blissful ignorance before installing collusion earlier this year, but I only ever saw the 3rd party cookie sharing when I had "cookies" turned on without turning on "Accept third-party cookies".
    Again, what changed?

    only add-on extensions are "Collusion v0.22" and "Adblock Plus Pop-up Addon v0.4".
    The issue never happened until Friday 10/19/12 after the Firefox v16.0.1 update, and was noticed by me on Saturday while using the Firefox to check my work schedule (which sets only its cookie and does not share, but it did and got me worried).
    Still wondering if Collusion updated too, and now I'm seeing new behavior.
    I do not want to share cookies, which is why I turn them off, and never turn on "share third party cookies".
    Do I need to stop using Firefox? :(

  • Wildcards in 3rd party script

    I am trying to adapt a 3rd party calendar script for
    operation on my PHP
    site. I'm guessing that the script was writted for use with
    Access or
    something besides MySQL since it uses "*" as a wildcard in
    the SQL (which I
    can fix). But it also uses that wildcard in the body, e.g.,
    if (($val['day'] == $cellValue) && (($val['month']
    == $this->month) ||
    ($val['month'] == '*')) && (($val['year'] ==
    $this->year) || ($val['year']
    == '*'))) {
    How do I patch that - or do I even need to?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================

    Oh - I see. I thought it was a rather strange usage myself!
    Hmmm....
    OK - I'm going to have to look harder to see why I'm getting
    an error here -
    http://development.bayleys.com/test-calendar.php
    The referenced line is contained in this block -
    <?php
    class CreateQCalendarArray {
    var $daysInMonth;
    var $weeksInMonth;
    var $firstDay;
    var $week;
    var $month;
    var $year;
    var $counter;
    function CreateQCalendarArray($month, $year) {
    $this->month = $month;
    $this->year = $year;
    $this->week = array();
    $this->daysInMonth =
    date("t",mktime(0,0,0,$month,1,$year));
    // get first day of the month
    $this->firstDay = date("w",
    mktime(0,0,0,$month,1,$year));
    $tempDays = $this->firstDay + $this->daysInMonth;
    $this->weeksInMonth = ceil($tempDays/7);
    $this->fillArray();
    function fillArray() {
    // create a 2-d array
    for($j=0;$j<$this->weeksInMonth;$j++) {
    for($i=0;$i<7;$i++) {
    $counter++;
    $this->week[$j][$i] = $counter;
    // offset the days
    $this->week[$j][$i] -= $this->firstDay;
    if (($this->week[$j][$i] < 1) ||
    ($this->week[$j][$i] >
    $this->daysInMonth)) {
    $this->week[$j][$i] = "";
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "David Powers" <[email protected]> wrote in message
    news:[email protected]...
    > Murray *ACE* wrote:
    >> So, the "*" syntax is correct in PHP?
    >
    > No. I'm just commenting that the conditional statment is
    rather
    > meaningless. If * means anything, the condition boils
    down to this in
    > plain language:
    >
    > If the day is the same as the submitted value AND the
    month is either this
    > month or any other month AND the year is this year or
    any other year.
    >
    > If any month and any year are acceptable, all that's
    being checked is
    > whether the day is the same as $cellValue.
    >
    > --
    > David Powers, Adobe Community Expert
    > Author, "The Essential Guide to Dreamweaver CS3"
    (friends of ED)
    > Author, "PHP Solutions" (friends of ED)
    >
    http://foundationphp.com/

  • Third party patches for XP

    Hi,
    we have a big amount of XP machines. From April we suppose to receive XP patches from forest level IT.
    So I have no choice, but connect to upstream server. I don't like this idea because of loosing full control of my clean WSUS.
    My intention is to ask patches when available from top level WSUS admin for publishing them through my WSUS.
    I never used publishing of third party patches.
    Please point me to procedure for doing that. What should be the format of the patch file?
    Thanks.
    "When you hit a wrong note it's the next note that makes it good or bad". Miles Davis

    Hi pob579,
    You really should consider to change your XP computers for more recent computers (With Windows 7 or 8).
    You can update third-party applications using Wsus, but you won't be able to patch Microsoft products.
    You can use some useful softwares to patch 3rd party apps :
    - Free Applications (open source) :
              - Local Update Publisher (http://localupdatepubl.sourceforge.net/fr/index.html)
              - Wsus Package Publisher (http://wsuspackagepublisher.codeplex.com/)
    - Commercial Applications :
              - Patch Manager from Solarwinds (http://www.solarwinds.com/solutions/microsoft-wsus-patch-management.aspx)
              - Corporate Software Inspector from Secunia (http://secunia.com/vulnerability_scanning/corporate/help/sfw.csiwsusconfiguration/)
    David COURTEL
    IT Technician
    Wsus Third-Party Softwares Publishing :
    Wsus Package Publisher

  • Photo template 3rd party hosted malbehaviour

    I published to folder for 3rd party hosting. Go to the page that has been done with the photos template. On that particular page i moved the photo grid page a few hundred pixels page-downwards to give room for a large text box that i want to stand first. well it's here http://www.padmehum.de/de/cntnt2a.html
    Please click on an image in the photo grid the cursor will jump to Y = 0 pixel or something like that. It jumps up all the way page-upwards.
    Anyone has a patch for this (mass-replace)?
    I'm also looking for an alternative open source slideshow or photo grid tool that i could do with iWeb widgets. Anything appreciated!

    Isn't there another workaround. Which actually allows me to keep the photo grid i want it to be.
    I thought anyone of the cracks might have a patch or instructions. I'm not exactly sure but it looks to me you have to change something in the photo grid css and js files. If i could replace that 'reset to the top' with actually keep the position you wouldn't even need to create several versions of the css and js considering that you'd had more than one photo grid (and each at a different Y position). But i'm not firm enough in html to know this right away what to look for and what's the command for keeping the position.

  • Download error, while downloading 3rd party software

    Hello all, I'm a newbie to SCCM2012 R2. When I attempt to do a software download for Mozilla, Java etc... i'm getting this error below. I can download MS updates fine, but 3rd party updates. We are using Secunia to publish 3rd part updates to WSUS,
    which works fine. Then I sync SCCM with WSUS and SCCM finds the published 3rd party software, but I can't download it. Any help on this would be greatly appreciated.
     Error: Failed to download content id 16839221. Error: There was an error downloading the software update. (404)
    Package:
     Success: The software updates were placed in the existing package:
    Oracle Java JRE 1.7 updates
    Software updates that will be downloaded from the internet
     Error: Secunia Update Oracle Java JRE 1.6.x / 6.x, version 7.x, Highly Critical
    Errors
    Failed to download content id 16839221. Error: There was an error downloading the software update. (404)
    Language Selection:
    English
    Robert Blakey

    Hi Torsten this is a copy of the patchdownloader.log The windows updates download fine
    Trying to connect to the root\SMS namespace on the CREATIVE89.caii-dc.com machine. Software Updates Patch Downloader 3/30/2015 10:02:57 AM 3768 (0x0EB8)
    Connected to \\CREATIVE89.caii-dc.com\root\SMS Software Updates Patch Downloader 3/30/2015 10:02:57 AM 3768 (0x0EB8)
    Trying to connect to the
    \\CREATIVE89.caii-dc.com\root\sms\site_CA1 namespace on the CREATIVE89.caii-dc.com machine. Software Updates Patch Downloader 3/30/2015 10:02:57 AM 3768 (0x0EB8)
    Connected to \\CREATIVE89.caii-dc.com\root\sms\site_CA1 Software Updates Patch Downloader 3/30/2015 10:02:57 AM 3768 (0x0EB8)
    Download destination = \\CREATIVE89\Mozilla Updates\3a12764b-6be2-4a10-a653-3fd50ea16133.1\57b90fa0-1944-4d17-ae68-552f87224c4c_1.cab . Software Updates Patch Downloader 3/30/2015 10:02:57 AM 3768 (0x0EB8)
    Contentsource =
    http://creative89.caii-dc.com:8530/Content/5D/A35B0E8CB69E351DD329FBC8CB6819BCF4BD2E5D.cab . Software Updates Patch Downloader 3/30/2015 10:02:57 AM 3768 (0x0EB8)
    Downloading content for ContentID = 16839222,  FileName = 57b90fa0-1944-4d17-ae68-552f87224c4c_1.cab. Software Updates Patch Downloader 3/30/2015 10:02:57 AM 3768 (0x0EB8)
    HttpSendRequest failed HTTP_STATUS_NOT_FOUND Software Updates Patch Downloader 3/30/2015 10:02:57 AM 5452 (0x154C)
    Download
    http://creative89.caii-dc.com:8530/Content/5D/A35B0E8CB69E351DD329FBC8CB6819BCF4BD2E5D.cab to C:\Users\RobertB\AppData\Local\Temp\CAB1909.tmp returns 404 Software Updates Patch Downloader 3/30/2015 10:02:57 AM 5452 (0x154C)
    ERROR: DownloadContentFiles() failed with hr=0x80070194 Software Updates Patch Downloader 3/30/2015 10:02:57 AM 3768 (0x0EB8)
    Trying to connect to the root\SMS namespace on the CREATIVE89.caii-dc.com machine. Software Updates Patch Downloader 3/30/2015 10:10:54 AM 5916 (0x171C)
    Connected to \\CREATIVE89.caii-dc.com\root\SMS Software Updates Patch Downloader 3/30/2015 10:10:54 AM 5916 (0x171C)
    Trying to connect to the
    \\CREATIVE89.caii-dc.com\root\sms\site_CA1 namespace on the CREATIVE89.caii-dc.com machine. Software Updates Patch Downloader 3/30/2015 10:10:54 AM 5916 (0x171C)
    Connected to \\CREATIVE89.caii-dc.com\root\sms\site_CA1 Software Updates Patch Downloader 3/30/2015 10:10:54 AM 5916 (0x171C)
    Download destination = \\CREATIVE89\Mozilla Updates\3a12764b-6be2-4a10-a653-3fd50ea16133.1\57b90fa0-1944-4d17-ae68-552f87224c4c_1.cab . Software Updates Patch Downloader 3/30/2015 10:10:54 AM 5916 (0x171C)
    Contentsource =
    http://creative89.caii-dc.com:8530/Content/5D/A35B0E8CB69E351DD329FBC8CB6819BCF4BD2E5D.cab . Software Updates Patch Downloader 3/30/2015 10:10:54 AM 5916 (0x171C)
    Downloading content for ContentID = 16839222,  FileName = 57b90fa0-1944-4d17-ae68-552f87224c4c_1.cab. Software Updates Patch Downloader 3/30/2015 10:10:54 AM 5916 (0x171C)
    HttpSendRequest failed HTTP_STATUS_NOT_FOUND Software Updates Patch Downloader 3/30/2015 10:10:54 AM 6608 (0x19D0)
    Download
    http://creative89.caii-dc.com:8530/Content/5D/A35B0E8CB69E351DD329FBC8CB6819BCF4BD2E5D.cab to C:\Users\RobertB\AppData\Local\Temp\CAB60BB.tmp returns 404 Software Updates Patch Downloader 3/30/2015 10:10:54 AM 6608 (0x19D0)
    ERROR: DownloadContentFiles() failed with hr=0x80070194 Software Updates Patch Downloader 3/30/2015 10:10:54 AM 5916 (0x171C)
    Trying to connect to the root\SMS namespace on the CREATIVE89.caii-dc.com machine. Software Updates Patch Downloader 3/30/2015 10:50:50 AM 2688 (0x0A80)
    Connected to \\CREATIVE89.caii-dc.com\root\SMS Software Updates Patch Downloader 3/30/2015 10:50:50 AM 2688 (0x0A80)
    Trying to connect to the
    \\CREATIVE89.caii-dc.com\root\sms\site_CA1 namespace on the CREATIVE89.caii-dc.com machine. Software Updates Patch Downloader 3/30/2015 10:50:50 AM 2688 (0x0A80)
    Connected to \\CREATIVE89.caii-dc.com\root\sms\site_CA1 Software Updates Patch Downloader 3/30/2015 10:50:50 AM 2688 (0x0A80)
    Download destination = \\CREATIVE89\8.1 Win updates\0e72e1b1-c8f8-418d-9b44-74de05c57a52.1\windows8-rt-kb3019215-x86.cab . Software Updates Patch Downloader 3/30/2015 10:50:50 AM 2688 (0x0A80)
    Contentsource =
    http://wsus.ds.download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windows8-rt-kb3019215-x86_0f3c80c98fab7bba3adbce8ed3d77e5ee8fefb49.cab . Software Updates Patch Downloader 3/30/2015 10:50:50 AM 2688 (0x0A80)
    Downloading content for ContentID = 16836962,  FileName = windows8-rt-kb3019215-x86.cab. Software Updates Patch Downloader 3/30/2015 10:50:50 AM 2688 (0x0A80)
    Download
    http://wsus.ds.download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windows8-rt-kb3019215-x86_0f3c80c98fab7bba3adbce8ed3d77e5ee8fefb49.cab in progress: 18 percent complete Software Updates Patch Downloader 3/30/2015 10:50:51 AM 2788
    (0x0AE4)
    Download
    http://wsus.ds.download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windows8-rt-kb3019215-x86_0f3c80c98fab7bba3adbce8ed3d77e5ee8fefb49.cab in progress: 36 percent complete Software Updates Patch Downloader 3/30/2015 10:50:51 AM 2788
    (0x0AE4)
    Download
    http://wsus.ds.download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windows8-rt-kb3019215-x86_0f3c80c98fab7bba3adbce8ed3d77e5ee8fefb49.cab in progress: 54 percent complete Software Updates Patch Downloader 3/30/2015 10:50:51 AM 2788
    (0x0AE4)
    Download
    http://wsus.ds.download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windows8-rt-kb3019215-x86_0f3c80c98fab7bba3adbce8ed3d77e5ee8fefb49.cab in progress: 72 percent complete Software Updates Patch Downloader 3/30/2015 10:50:51 AM 2788
    (0x0AE4)
    Download
    http://wsus.ds.download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windows8-rt-kb3019215-x86_0f3c80c98fab7bba3adbce8ed3d77e5ee8fefb49.cab in progress: 90 percent complete Software Updates Patch Downloader 3/30/2015 10:50:51 AM 2788
    (0x0AE4)
    Download
    http://wsus.ds.download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windows8-rt-kb3019215-x86_0f3c80c98fab7bba3adbce8ed3d77e5ee8fefb49.cab to C:\Users\RobertB\AppData\Local\Temp\CABF04B.tmp returns 0 Software Updates Patch Downloader 3/30/2015
    10:50:51 AM 2788 (0x0AE4)
    Checking machine config Software Updates Patch Downloader 3/30/2015 10:50:51 AM 2788 (0x0AE4)
    Cert revocation check is disabled so cert revocation list will not be checked. Software Updates Patch Downloader 3/30/2015 10:50:51 AM 2788 (0x0AE4)
    To enable cert revocation check use: UpdDwnldCfg.exe /checkrevocation Software Updates Patch Downloader 3/30/2015 10:50:51 AM 2788 (0x0AE4)
    Successfully moved C:\Users\RobertB\AppData\Local\Temp\CABF04B.tmp to
    \\CREATIVE89\8.1 Win updates\0e72e1b1-c8f8-418d-9b44-74de05c57a52.1\windows8-rt-kb3019215-x86.cab Software Updates Patch Downloader 3/30/2015 10:50:51 AM 2788 (0x0AE4)
    Renaming \\CREATIVE89\8.1 Win updates\0e72e1b1-c8f8-418d-9b44-74de05c57a52.1 to
    \\CREATIVE89\8.1 Win updates\0e72e1b1-c8f8-418d-9b44-74de05c57a52 Software Updates Patch Downloader 3/30/2015 10:50:51 AM 2688 (0x0A80)
    Successfully moved \\CREATIVE89\8.1 Win updates\0e72e1b1-c8f8-418d-9b44-74de05c57a52.1 to
    \\CREATIVE89\8.1 Win updates\0e72e1b1-c8f8-418d-9b44-74de05c57a52 Software Updates Patch Downloader 3/30/2015 10:50:51 AM 2688 (0x0A80)
    Trying to connect to the root\SMS namespace on the CREATIVE89.caii-dc.com machine. Software Updates Patch Downloader 3/30/2015 11:57:36 AM 2796 (0x0AEC)
    Connected to \\CREATIVE89.caii-dc.com\root\SMS Software Updates Patch Downloader 3/30/2015 11:57:36 AM 2796 (0x0AEC)
    Trying to connect to the
    \\CREATIVE89.caii-dc.com\root\sms\site_CA1 namespace on the CREATIVE89.caii-dc.com machine. Software Updates Patch Downloader 3/30/2015 11:57:36 AM 2796 (0x0AEC)
    Connected to \\CREATIVE89.caii-dc.com\root\sms\site_CA1 Software Updates Patch Downloader 3/30/2015 11:57:36 AM 2796 (0x0AEC)
    Download destination =
    \\CREATIVE89\Sources\62a992e5-21f8-4a12-87de-5a1f40af7463.1\061262a2-099d-4738-bf03-59f1fb058654_1.cab . Software Updates Patch Downloader 3/30/2015 11:57:36 AM 2796 (0x0AEC)
    Contentsource =
    http://creative89.caii-dc.com:8530/Content/32/81BCEE814FC34C22DEB96D38DB361A3C89AD8732.cab . Software Updates Patch Downloader 3/30/2015 11:57:36 AM 2796 (0x0AEC)
    Downloading content for ContentID = 16839221,  FileName = 061262a2-099d-4738-bf03-59f1fb058654_1.cab. Software Updates Patch Downloader 3/30/2015 11:57:36 AM 2796 (0x0AEC)
    HttpSendRequest failed HTTP_STATUS_NOT_FOUND Software Updates Patch Downloader 3/30/2015 11:57:36 AM 3504 (0x0DB0)
    Download
    http://creative89.caii-dc.com:8530/Content/32/81BCEE814FC34C22DEB96D38DB361A3C89AD8732.cab to C:\Users\RobertB\AppData\Local\Temp\CABF64.tmp returns 404 Software Updates Patch Downloader 3/30/2015 11:57:36 AM 3504 (0x0DB0)
    ERROR: DownloadContentFiles() failed with hr=0x80070194 Software Updates Patch Downloader 3/30/2015 11:57:36 AM 2796 (0x0AEC)
    Robert Blakey

  • 3rd party storage: AoE/Coraid integration

    #### LONG POST 1/3 ####
    Hi,
    We are working on AoE/Coraid (3rd party storage driver) integration within Oracle VM 3.x, we think that will be of use for the community and we'll love to share our work.
    But we discovered some issues and hope to have some help via this forum.
    So, to let you know how far we are and the current issue we have :
    1/ Our AoE RPM package is done (using SDK 3.0.2, waiting for 3.0.3 to be release) :
    # uname -a
    Linux ovm1 2.6.32.21-41xen #1 SMP Fri Sep 9 00:47:51 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux
    # rpm -qa | grep aoe
    aoe-6-78
    2/ Our AoE init script is activated on boot and work as expected :
    # aoe-version
    aoetools:     32
    installed aoe driver:     78
    running aoe driver:     78
    # aoe-stat
    e66.3 2000.398GB eth1 1024 up
    ** First issue SOLVED :
    But ovs-agent complain each time we try to discover a server using Oracle Manager (running version 3.0.3 in case it may have an impact?) :
    [2012-01-19 03:11:39 30488] DEBUG (OVSCommons:124) discover_server: ()
    [2012-01-19 03:11:39 30488] WARNING (host:443) cannot get core api version: [Errno 2] No such file or directory: '/usr/lib/python2.4/site-packages/version.properties'
    [2012-01-19 03:11:39 30488] DEBUG (OVSCommons:132) discover_server: call completed.
    [2012-01-19 03:11:40 30504] DEBUG (OVSCommons:124) discover_hardware: ()
    [2012-01-19 03:11:40 30504] ERROR (OVSCommons:143) catch_error: ERROR 0 @ 244 find_aoe_disks() Problems extracting AOE disk info
    Traceback (most recent call last):
    File "/usr/lib64/ovs-storage-utils/storage_tech/st_ATAoverEthernet.py", line 178, in find_aoe_disks
    stdout_LIST, stderr_LIST, exitStatus, deltaTime = vi_utils.vi_exe_sync( vi_errorAndLog_obj, [ 'ata_id', '--export', aoe_devPath ], 10 )
    File "/usr/lib64/ovs-storage-utils/vi_utils/vi_process.py", line 615, in vi_exe_sync
    theChild     = VI_Process_OBJ( vi_errorAndLog_obj, False, args, relativeTimeoutInSecs, inputData_LIST )
    File "/usr/lib64/ovs-storage-utils/vi_utils/vi_process.py", line 106, in __init__
    ,     0 )                    # creationflags               :: Windows only CreateProcess flag
    File "/usr/lib64/python2.4/subprocess.py", line 550, in __init__
    errread, errwrite)
    File "/usr/lib64/python2.4/subprocess.py", line 1000, in executechild
    raise child_exception
    OSError: [Errno 2] No such file or directory
    Runtime errors occured [1]
    Traceback (most recent call last):
    File "/opt/ovs-agent-3.0/OVSCommons.py", line 141, in wrapper
    return func(*args)
    File "/opt/ovs-agent-3.0/OVSDiscoverHardware.py", line 81, in discover_hardware
    raise Exception(scsi_logmsg)
    Exception: ERROR 0 @ 244 find_aoe_disks() Problems extracting AOE disk info
    Traceback (most recent call last):
    File "/usr/lib64/ovs-storage-utils/storage_tech/st_ATAoverEthernet.py", line 178, in find_aoe_disks
    stdout_LIST, stderr_LIST, exitStatus, deltaTime = vi_utils.vi_exe_sync( vi_errorAndLog_obj, [ 'ata_id', '--export', aoe_devPath ], 10 )
    File "/usr/lib64/ovs-storage-utils/vi_utils/vi_process.py", line 615, in vi_exe_sync
    theChild     = VI_Process_OBJ( vi_errorAndLog_obj, False, args, relativeTimeoutInSecs, inputData_LIST )
    File "/usr/lib64/ovs-storage-utils/vi_utils/vi_process.py", line 106, in __init__
    ,     0 )                    # creationflags               :: Windows only CreateProcess flag
    File "/usr/lib64/python2.4/subprocess.py", line 550, in __init__
    errread, errwrite)
    File "/usr/lib64/python2.4/subprocess.py", line 1000, in executechild
    raise child_exception
    OSError: [Errno 2] No such file or directory
    Runtime errors occured [1]
    We just discovered the st_ATAoverEthernet.py but it look like it is not able to see the available AoE LUNs.
    Is the script author (Mr Joshua Nicholas) working for Oracle ???
    We just fixed the issue above in file /usr/lib64/ovs-storage-utils/storage_tech/st_ATAoverEthernet.py :
    the subprocess call the "ata_id" but this program isn't in PATH !
    To test, we did this patch :
    diff -upr /usr/lib64/ovs-storage-utils/storage_tech/st_ATAoverEthernet.py.orig /usr/lib64/ovs-storage-utils/storage_tech/st_ATAoverEthernet.py
    # diff -upr st_ATAoverEthernet.py.orig st_ATAoverEthernet.py
    --- st_ATAoverEthernet.py.orig 2012-01-19 16:23:04.000000000 +0100
    +++ st_ATAoverEthernet.py 2012-01-19 11:30:45.000000000 +0100
    @@ -175,7 +175,7 @@ def find_aoe_disks( vi_errorAndLog_obj,
    aoe_disk_interface = aoe_stat_line_components[2]
    aoe_disk_interface_status = aoe_stat_line_components[4]
    - stdout_LIST, stderr_LIST, exitStatus, deltaTime = vi_utils.vi_exe_sync( vi_errorAndLog_obj, [ 'ata_id', '--export', aoe_devPath ], 10 )
    + stdout_LIST, stderr_LIST, exitStatus, deltaTime = vi_utils.vi_exe_sync( vi_errorAndLog_obj, [ '/lib/udev/ata_id', '--export', aoe_devPath ], 10 )
    serial_cmpldRegEx = re.compile( '^ID_SERIAL=\s*' )
    rev_cmpldRegEx = re.compile( '^ID_REVISION=\s*' )
    It works, so finaly, we rollback to the last version of st_ATAoverEthernet.py and just (re)created the symlink : /sbin/ata_id -> /lib/udev/ata_id
    No more error messages in /var/log/ovs-agent.log as you can see :
    [2012-01-19 16:27:05 2607] DEBUG (OVSCommons:124) discover_server: ()
    [2012-01-19 16:27:05 2607] WARNING (host:443) cannot get core api version: [Errno 2] No such file or directory: '/usr/lib/python2.4/site-packages/version.properties'
    [2012-01-19 16:27:05 2607] DEBUG (OVSCommons:132) discover_server: call completed.
    [2012-01-19 16:27:06 2623] DEBUG (OVSCommons:124) discover_hardware: ()
    [2012-01-19 16:27:06 2623] DEBUG (OVSCommons:132) discover_hardware: call completed.
    [2012-01-19 16:27:07 2672] DEBUG (OVSCommons:124) discover_network: ()
    [2012-01-19 16:27:07 2672] DEBUG (OVSCommons:132) discover_network: call completed.
    [2012-01-19 16:27:08 2673] DEBUG (OVSCommons:124) discover_storage_plugins: ()
    [2012-01-19 16:27:08 2673] DEBUG (OVSCommons:132) discover_storage_plugins: call completed.
    [2012-01-19 16:27:08 2674] DEBUG (OVSCommons:124) discover_physical_luns: ('',)
    [2012-01-19 16:27:08 2674] DEBUG (OVSCommons:132) discover_physical_luns: call completed.
    1/2 CONTINUE ON THE SECOND POST
    Edited by: 904919 on Jan 19, 2012 7:04 PM

    3/3 END OF THE POST
    Write Methods Invoked
    Class=InternalJobDbImpl vessel_id=6511 method=addTransactionIdentifier accessLevel=6
    Class=DiscoverManagerDbImpl vessel_id=165 method=discoverServer accessLevel=6
    Class=InternalJobDbImpl vessel_id=6511 method=setCompletedStep accessLevel=6
    Class=InternalJobDbImpl vessel_id=6511 method=setAssociatedHandles accessLevel=6
    Class=InternalJobDbImpl vessel_id=6511 method=setContext accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setName accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setFoundryContext accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=onPersistableCreate accessLevel=6
    Class=HashMapDbImpl vessel_id=6528 method=remove accessLevel=6
    Class=LocalStorageInitiatorDbImpl vessel_id=6529 method=setName accessLevel=6
    Class=LocalStorageInitiatorDbImpl vessel_id=6529 method=setFoundryContext accessLevel=6
    Class=LocalStorageInitiatorDbImpl vessel_id=6529 method=onPersistableCreate accessLevel=6
    Class=LocalStorageInitiatorDbImpl vessel_id=6529 method=setLifecycleState accessLevel=6
    Class=LocalStorageInitiatorDbImpl vessel_id=6529 method=setRollbackLifecycleState accessLevel=6
    Class=InternalPortDbImpl vessel_id=6535 method=setName accessLevel=6
    Class=InternalPortDbImpl vessel_id=6535 method=setFoundryContext accessLevel=6
    Class=InternalPortDbImpl vessel_id=6535 method=onPersistableCreate accessLevel=6
    Class=PortDownEventDbImpl vessel_id=6541 method=notify accessLevel=6
    Class=InternalPortDbImpl vessel_id=6535 method=setLifecycleState accessLevel=6
    Class=InternalPortDbImpl vessel_id=6535 method=setRollbackLifecycleState accessLevel=6
    Class=InternalPortDbImpl vessel_id=6535 method=setNumber accessLevel=6
    Class=InternalPortDbImpl vessel_id=6535 method=setServer accessLevel=6
    Class=RootStatisticLogDbImpl vessel_id=117 method=createStatisticSubjectLog accessLevel=6
    Class=StatisticSubjectLogDbImpl vessel_id=6542 method=setStatisticSubject accessLevel=6
    Class=StatisticSubjectLogDbImpl vessel_id=6542 method=createAllStatisticTypeLogs accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6544 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6546 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6548 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6550 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6552 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6554 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6556 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6558 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6560 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6562 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6564 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6566 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6568 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6570 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6572 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6574 method=setType accessLevel=6
    Class=StatisticTypeLogDbImpl vessel_id=6576 method=setType accessLevel=6
    Class=ServerStoppedEventDbImpl vessel_id=6578 method=notify accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setLifecycleState accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setRollbackLifecycleState accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setType accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setEncodedAgentPassword accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setManagementInternetProtocolAddress accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setAgentVersion accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setBootGeneration accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setRpmVersion accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setOvmVersion accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setHostKernelRelease accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setHostKernelVersion accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setHostname accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setManagerUuid accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setPythonBindingVersion accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=createHypervisor accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=setName accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=setFoundryContext accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=onPersistableCreate accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=setLifecycleState accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=setRollbackLifecycleState accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=setServer accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=setCompiler accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=setCompiledBy accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=setCompileDomain accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=setCompiledDate accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=setVersion accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=clearCapabilities accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=addCapability accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=addCapability accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=addCapability accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=addCapability accessLevel=6
    Class=XenHypervisorDbImpl vessel_id=6581 method=addCapability accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=removeAllNtpServers accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=addNtpServer accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=addNtpServer accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=addNtpServer accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setStatisticInterval accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=lock accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setProductName accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setManufacturer accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setProductSerialNumber accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setSimpleName accessLevel=6
    Class=InternalPortDbImpl vessel_id=6535 method=setSimpleName accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setMemory accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setProcessorSpeed accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setNoExecuteFlag accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setNumberOfThreadsPerCore accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setNumberOfProcessorSockets accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setNumberOfCoresPerProcessorSocket accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setNumberOfProcessorCores accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setNumberOfEnabledProcessorCores accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setNumberOfPopulatedProcessorSockets accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=createProcessor accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setName accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setFoundryContext accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=onPersistableCreate accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setLifecycleState accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setRollbackLifecycleState accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=createProcessor accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setName accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setFoundryContext accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=onPersistableCreate accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setLifecycleState accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setRollbackLifecycleState accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=createProcessor accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setName accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setFoundryContext accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=onPersistableCreate accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setLifecycleState accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setRollbackLifecycleState accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=createProcessor accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setName accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setFoundryContext accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=onPersistableCreate accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setLifecycleState accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setRollbackLifecycleState accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setBIOSReleaseDate accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setBIOSVendor accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setBIOSVersion accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setFamily accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setManufacturer accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setLevelOneCacheSize accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setLevelTwoCacheSize accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setLevelThreeCacheSize accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setFamily accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setManufacturer accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setLevelOneCacheSize accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setLevelTwoCacheSize accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setLevelThreeCacheSize accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setFamily accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setManufacturer accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setLevelOneCacheSize accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setLevelTwoCacheSize accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setLevelThreeCacheSize accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setFamily accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setManufacturer accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setLevelOneCacheSize accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setLevelTwoCacheSize accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setLevelThreeCacheSize accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setFlags accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setModelName accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setVendorId accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setCpuFamily accessLevel=6
    Class=ProcessorDbImpl vessel_id=6587 method=setCpuModel accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setFlags accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setModelName accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setVendorId accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setCpuFamily accessLevel=6
    Class=ProcessorDbImpl vessel_id=6593 method=setCpuModel accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setFlags accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setModelName accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setVendorId accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setCpuFamily accessLevel=6
    Class=ProcessorDbImpl vessel_id=6598 method=setCpuModel accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setFlags accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setModelName accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setVendorId accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setCpuFamily accessLevel=6
    Class=ProcessorDbImpl vessel_id=6603 method=setCpuModel accessLevel=6
    Class=CpuCompatibilityGroupDbImpl vessel_id=6608 method=setName accessLevel=6
    Class=CpuCompatibilityGroupDbImpl vessel_id=6608 method=setFoundryContext accessLevel=6
    Class=CpuCompatibilityGroupDbImpl vessel_id=6608 method=onPersistableCreate accessLevel=6
    Class=CpuCompatibilityGroupDbImpl vessel_id=6608 method=setLifecycleState accessLevel=6
    Class=CpuCompatibilityGroupDbImpl vessel_id=6608 method=setRollbackLifecycleState accessLevel=6
    Class=CpuCompatibilityGroupDbImpl vessel_id=6608 method=setSimpleName accessLevel=6
    Class=CpuCompatibilityGroupDbImpl vessel_id=6608 method=addServer accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setCpuCompatibilityGroup accessLevel=6
    Class=CpuCompatibilityGroupDbImpl vessel_id=6608 method=addServer accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=createStorageInitiator accessLevel=6
    Class=IscsiStorageInitiatorDbImpl vessel_id=6613 method=setName accessLevel=6
    Class=IscsiStorageInitiatorDbImpl vessel_id=6613 method=setFoundryContext accessLevel=6
    Class=IscsiStorageInitiatorDbImpl vessel_id=6613 method=onPersistableCreate accessLevel=6
    Class=IscsiStorageInitiatorDbImpl vessel_id=6613 method=setLifecycleState accessLevel=6
    Class=IscsiStorageInitiatorDbImpl vessel_id=6613 method=setRollbackLifecycleState accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=lock accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=createNetworkPort accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=setName accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=setFoundryContext accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=onPersistableCreate accessLevel=6
    Class=PortDownEventDbImpl vessel_id=6625 method=notify accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=setLifecycleState accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=setRollbackLifecycleState accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=setSimpleName accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=setNumber accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=setServer accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=setInterfaceName accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=setMediaAccessControlAddress accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=setMediaTransferUnit accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=setDetails accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=createNetworkPort accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6627 method=setName accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6627 method=setFoundryContext accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6627 method=onPersistableCreate accessLevel=6
    Class=PortDownEventDbImpl vessel_id=6632 method=notify accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6627 method=setLifecycleState accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6627 method=setRollbackLifecycleState accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6627 method=setSimpleName accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6627 method=setNumber accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6627 method=setServer accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6627 method=setInterfaceName accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6627 method=setMediaAccessControlAddress accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6627 method=setMediaTransferUnit accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6627 method=setDetails accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=createNetworkPort accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setName accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setFoundryContext accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=onPersistableCreate accessLevel=6
    Class=PortDownEventDbImpl vessel_id=6641 method=notify accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setLifecycleState accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setRollbackLifecycleState accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setSimpleName accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setNumber accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setServer accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=addJobOperation accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setInterfaceName accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setInternetProtocolAddress accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setNetmask accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setAddressType accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=addEthernetPort accessLevel=6
    Class=EthernetPortDbImpl vessel_id=6619 method=setBondPort accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setMediaAccessControlAddress accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=setManagementMediaAccessControlAddress accessLevel=6
    Class=EthernetNetworkDbImpl vessel_id=2837 method=addNetworkPort accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setNetworkPortGroup accessLevel=6
    Class=BondPortDbImpl vessel_id=6634 method=setJobAsset accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=lock accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=addPlugin accessLevel=6
    Class=FileSystemPluginDbImpl vessel_id=2878 method=addServer accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=addPlugin accessLevel=6
    Class=StorageArrayPluginDbImpl vessel_id=2843 method=addServer accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=addPlugin accessLevel=6
    Class=FileSystemPluginDbImpl vessel_id=2872 method=addServer accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=createLocalFileServer accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=setName accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=setFoundryContext accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=onPersistableCreate accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=setLifecycleState accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=setRollbackLifecycleState accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=setStoragePlugin accessLevel=6
    Class=FileSystemPluginDbImpl vessel_id=2878 method=addStorageServer accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=setAdminHostname accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=setAdminUsername accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=setAdminPassword accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=setSimpleName accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=setServer accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=setSimpleName accessLevel=6
    Class=LocalFileServerDbImpl vessel_id=6644 method=setValidated accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=lock accessLevel=6
    Class=ServerDbImpl vessel_id=6521 method=createLocalStorageArray accessLevel=6
    Class=LocalStorageArrayDbImpl vessel_id=6649 method=setName accessLevel=6
    Class=LocalStorageArrayDbImpl vessel_id=6649 method=setFoundryContext accessLevel=6
    Class=LocalStorageArrayDbImpl vessel_id=6649 method=onPersistableCreate accessLevel=6
    Class=LocalStorageArrayDbImpl vessel_id=6649 method=setLifecycleState accessLevel=6
    Class=LocalStorageArrayDbImpl vessel_id=6649 method=setRollbackLifecycleState accessLevel=6
    Class=LocalStorageArrayDbImpl vessel_id=6649 method=setStoragePlugin accessLevel=6
    Class=StorageArrayPluginDbImpl vessel_id=2843 method=addStorageServer accessLevel=6
    Class=LocalStorageArrayDbImpl vessel_id=6649 method=setValidated accessLevel=6
    Class=LocalStorageArrayDbImpl vessel_id=6649 method=setSimpleName accessLevel=6
    Class=LocalStorageArrayDbImpl vessel_id=6649 method=createVolumeGroup accessLevel=6
    Class=VolumeGroupDbImpl vessel_id=6655 method=setName accessLevel=6
    Class=VolumeGroupDbImpl vessel_id=6655 method=setFoundryContext accessLevel=6
    Class=VolumeGroupDbImpl vessel_id=6655 method=onPersistableCreate accessLevel=6
    Class=VolumeGroupDbImpl vessel_id=6655 method=setLifecycleState accessLevel=6
    Class=VolumeGroupDbImpl vessel_id=6655 method=setRollbackLifecycleState accessLevel=6
    Class=VolumeGroupDbImpl vessel_id=6655 method=setStorageArray accessLevel=6
    Class=VolumeGroupDbImpl vessel_id=6655 method=setSimpleName accessLevel=6
    Class=StorageElementDbImpl vessel_id=6660 method=setName accessLevel=6
    Class=StorageElementDbImpl vessel_id=6660 method=setFoundryContext accessLevel=6
    Class=StorageElementDbImpl vessel_id=6660 method=onPersistableCreate accessLevel=6
    Class=StorageElementDbImpl vessel_id=6660 method=setLifecycleState accessLevel=6
    Class=StorageElementDbImpl vessel_id=6660 method=setRollbackLifecycleState accessLevel=6
    Class=StorageElementDbImpl vessel_id=6660 method=setPage83Id accessLevel=6
    Class=StorageElementDbImpl vessel_id=6660 method=setVolumeGroup accessLevel=6
    Class=VolumeGroupDbImpl vessel_id=2856 method=addStorageElement accessLevel=6
    Class=StorageElementDbImpl vessel_id=6660 method=setVendor accessLevel=6
    Class=StorageElementDbImpl vessel_id=6660 method=setUserFriendlyName accessLevel=6
    Class=StorageElementDbImpl vessel_id=6660 method=setSimpleName accessLevel=6
    Class=StorageElementDbImpl vessel_id=6660 method=setSize accessLevel=6
    Class=StorageElementDbImpl vessel_id=6660 method=setStorageElementType accessLevel=6
    Class=InternalJobDbImpl vessel_id=6511 method=setFailedOperation accessLevel=6
    Class=DiscoverManagerDbImpl vessel_id=165 method=nextJobOperation accessLevel=6
    Completed Step: ROLLBACK
    Job failed commit (internal) due to OVMAPI_6055E Discover target: ovm1, Discover failed with error: java.lang.NullPointerException
    at com.oracle.ovm.mgr.discover.ovm.ServerPhysicalLunDiscoverHandler.sanAddMissingStoragePath(ServerPhysicalLunDiscoverHandler.java:371)
    at com.oracle.ovm.mgr.discover.ovm.ServerPhysicalLunDiscoverHandler.sanDiskProcess(ServerPhysicalLunDiscoverHandler.java:243)
    at com.oracle.ovm.mgr.discover.ovm.ServerPhysicalLunDiscoverHandler.process(ServerPhysicalLunDiscoverHandler.java:195)
    at com.oracle.ovm.mgr.discover.ovm.DiscoverHandler.execute(DiscoverHandler.java:55)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.handleDiscover(DiscoverEngine.java:442)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.handleDiscover(DiscoverEngine.java:427)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.handleDiscover(DiscoverEngine.java:412)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.handleDefaultDiscover(DiscoverEngine.java:381)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.discoverNewServer(DiscoverEngine.java:360)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.discoverServer(DiscoverEngine.java:272)
    at com.oracle.ovm.mgr.op.manager.DiscoverManagerServerDiscover.action(DiscoverManagerServerDiscover.java:48)
    at com.oracle.ovm.mgr.api.job.JobEngine.operationActioner(JobEngine.java:193)
    at com.oracle.ovm.mgr.api.job.JobEngine.objectActioner(JobEngine.java:264)
    at com.oracle.ovm.mgr.api.job.InternalJobDbImpl.objectCommitter(InternalJobDbImpl.java:1090)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:247)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:207)
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:136)
    at com.oracle.odof.command.InvokeMethodCommand.process(InvokeMethodCommand.java:100)
    at com.oracle.odof.core.BasicWork.processCommand(BasicWork.java:81)
    at com.oracle.odof.core.TransactionManager.processCommand(TransactionManager.java:751)
    at com.oracle.odof.core.WorkflowManager.processCommand(WorkflowManager.java:401)
    at com.oracle.odof.core.WorkflowManager.processWork(WorkflowManager.java:459)
    at com.oracle.odof.io.AbstractClient.run(AbstractClient.java:42)
    at java.lang.Thread.run(Thread.java:662)
    Thu Jan 19 16:35:04 CET 2012
    com.oracle.ovm.mgr.api.exception.FailedOperationException: OVMAPI_6055E Discover target: ovm1, Discover failed with error: java.lang.NullPointerException
    at com.oracle.ovm.mgr.discover.ovm.ServerPhysicalLunDiscoverHandler.sanAddMissingStoragePath(ServerPhysicalLunDiscoverHandler.java:371)
    at com.oracle.ovm.mgr.discover.ovm.ServerPhysicalLunDiscoverHandler.sanDiskProcess(ServerPhysicalLunDiscoverHandler.java:243)
    at com.oracle.ovm.mgr.discover.ovm.ServerPhysicalLunDiscoverHandler.process(ServerPhysicalLunDiscoverHandler.java:195)
    at com.oracle.ovm.mgr.discover.ovm.DiscoverHandler.execute(DiscoverHandler.java:55)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.handleDiscover(DiscoverEngine.java:442)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.handleDiscover(DiscoverEngine.java:427)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.handleDiscover(DiscoverEngine.java:412)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.handleDefaultDiscover(DiscoverEngine.java:381)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.discoverNewServer(DiscoverEngine.java:360)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.discoverServer(DiscoverEngine.java:272)
    at com.oracle.ovm.mgr.op.manager.DiscoverManagerServerDiscover.action(DiscoverManagerServerDiscover.java:48)
    at com.oracle.ovm.mgr.api.job.JobEngine.operationActioner(JobEngine.java:193)
    at com.oracle.ovm.mgr.api.job.JobEngine.objectActioner(JobEngine.java:264)
    at com.oracle.ovm.mgr.api.job.InternalJobDbImpl.objectCommitter(InternalJobDbImpl.java:1090)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:247)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:207)
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:136)
    at com.oracle.odof.command.InvokeMethodCommand.process(InvokeMethodCommand.java:100)
    at com.oracle.odof.core.BasicWork.processCommand(BasicWork.java:81)
    at com.oracle.odof.core.TransactionManager.processCommand(TransactionManager.java:751)
    at com.oracle.odof.core.WorkflowManager.processCommand(WorkflowManager.java:401)
    at com.oracle.odof.core.WorkflowManager.processWork(WorkflowManager.java:459)
    at com.oracle.odof.io.AbstractClient.run(AbstractClient.java:42)
    at java.lang.Thread.run(Thread.java:662)
    Thu Jan 19 16:35:04 CET 2012
    at com.oracle.ovm.mgr.discover.DiscoverEngine.handleDiscover(DiscoverEngine.java:457)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.handleDiscover(DiscoverEngine.java:427)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.handleDiscover(DiscoverEngine.java:412)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.handleDefaultDiscover(DiscoverEngine.java:381)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.discoverNewServer(DiscoverEngine.java:360)
    at com.oracle.ovm.mgr.discover.DiscoverEngine.discoverServer(DiscoverEngine.java:272)
    at com.oracle.ovm.mgr.op.manager.DiscoverManagerServerDiscover.action(DiscoverManagerServerDiscover.java:48)
    at com.oracle.ovm.mgr.api.job.JobEngine.operationActioner(JobEngine.java:193)
    at com.oracle.ovm.mgr.api.job.JobEngine.objectActioner(JobEngine.java:264)
    at com.oracle.ovm.mgr.api.job.InternalJobDbImpl.objectCommitter(InternalJobDbImpl.java:1090)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:247)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:207)
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:136)
    at com.oracle.odof.command.InvokeMethodCommand.process(InvokeMethodCommand.java:100)
    at com.oracle.odof.core.BasicWork.processCommand(BasicWork.java:81)
    at com.oracle.odof.core.TransactionManager.processCommand(TransactionManager.java:751)
    at com.oracle.odof.core.WorkflowManager.processCommand(WorkflowManager.java:401)
    at com.oracle.odof.core.WorkflowManager.processWork(WorkflowManager.java:459)
    at com.oracle.odof.io.AbstractClient.run(AbstractClient.java:42)
    at java.lang.Thread.run(Thread.java:662)
    End of Job
    If anyone have any suggestions... ?
    Thank you,
    Yacine

Maybe you are looking for