Component memory reclaimation

Hello:
I have a general question about components specifically adding them to containers and removing them from the container.
When I create multiple instances of some custom component and add them to a container and eventually remove all components from the container, my memory is not reclaimed. I'm under the impression that once an object is no longer referenced it's eventually reclaimed; however, I can eventually cause an out of memory error with the code below. Could someone explain what I'm missing (or not understanding in Java)? My comments embedded in the program explain in more detail what I except as far as memory being restored.
import javax.swing.JComponent;
import javax.swing.JPanel;
public class test {
    public class foo extends JComponent {
        public foo() {
            setBounds(0, 0, 10, 10);
    public static void main(String[] args) {
        test t = new test();
        JPanel p = new JPanel(null); // absolute layout
        System.out.println("started");
        // create a bunch of components to see the memory go up
        for(int i = 0; i < 100000; i++)
            p.add(t.new foo());
        System.out.println("created multiple components");
        try {
            Thread.sleep(5000);
            // remove components and reclaim the memory
            // since there are no more hard references (so I think)
            p.removeAll();
            System.out.println("removed");
            // wait to see if the memory is reclaimed (and it isn't)
            Thread.sleep(20000);
        } catch (Exception e) { e.printStackTrace(); }
respectfully,
jjg

First of all, there's a difference between "can be reclaimed" and "will be reclaimed". Java specifies when an item can be reclaimed. But it explicitly states that it provides no guarantees whatsoever when a reclaim-able item will actually be reclaimed. When you say "I'm under the impression that once an object is no longer referenced it's eventually reclaimed" you're actually quite right. But the keyword is eventually. This "eventually" might very well be when the VM terminates.
You can try nudging the garbage collector through System.gc(). Still no hard guarantees though, but it's one step ahead.
Secondly, I'm not quite sure how you're measuring memory usage. Are you using something like windows' task manager? In that case, you shouldn't forget that the memory used by the java.exe process does not reflect the memory used by your program. Even if the VM freed it's internal memory, it might still stay allocated to the java.exe process.

Similar Messages

  • How to configure license file for Memory Leak tool and WL Server 9.2?

    (I posted to general JRockit forum before realizing existence of this forum which is probably more applicable.)
    Here's our problem:
    Running latest version of WL 9.2 MP3 and JRockit Mission Control 3.0.1
    Able to run Mission Control, and connect to the WL Server and to run View Console with no problems.
    I can't get Memory Leak tool to run because it complains about needing a license file.
    First I tried with off the shelf WL 9.2 MP3.
    Get error:
    A license for Memory Leak Detector could not be found on the JRockit at (1.5) weblogic.Server (192).
    Error: Can not find component Memory Leak Detector for JRockit * in the license file. Please check http://www.jrockit.com/license for license updates.
    So I downloaded license file from JRockit download site - wls92.zip. It contains several files, but no clear instructions on what to do with these files. I copied one of these files "LIC-WLSP92.txt" to my JRockit home as C:\bea\JROCKI~1\jre\license.bea
    Tried again. Restarted WL server. Restarted JRockit Mission Control.
    Get error: A license for Memory Leak Detector could not be found on the JRockit at (1.5) weblogic.Server (3052).
    The license file does not exist at: C:\bea\JROCKI~1\jre\license.bea
    Any advise on how to install license or who to contact for help?

    Installed Mission Control 3.0.3.
    Got following message when I attempted to run Memory Leak:
    A license for Memory Leak Detector could not be found on the JRockit at (1.5) weblogic.Server (192).
    Error: Can not find component Memory Leak Detector for JRockit * in the license file.
    Please check http://www.jrockit.com/license for license updates.
    I believe that we're using the latest downloads of WebLogic 9.2.x and JRockit.
    WebLogic is running using 9.2.3 and JRockit build R27.4.0-90_CR358515-94243-1.5.0_12-20080118-1154-windows-ia2
    Contents of C:\bea\jrockit_150_12\jre\license.bea:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <bea-licenses>
    <license-group format="1.0" product="JRockit" release="*">
    </license-group>
    </bea-licenses>
    Could WebLogic be misconfigured?
    Any diagnostics to help figure out the licensing?
    Any other ideas?

  • Why is memory being drained

    Hi There,
    Can anyone tell me why all my RAM is draining away? I have tried the usual tools - repairing disk permissions, restoring from a recovery disk and finally a complete zap of the entire system and a reinstall of all my apps/data. I have tried a variety of memory reclaim apps but the problem still exists. Can anyone give me a clue please?
    When I look at the console window, I notice large numbers of entries like this:
    20/11/2013 17:52:00.225 storeagent[3745]: multibyte ASN1 identifiers are  not supported.
    20/11/2013 17:52:11.312 storeagent[3745]: multibyte ASN1 identifiers are  not supported.
    20/11/2013 17:59:36.929 storeagent[3745]: multibyte ASN1 identifiers are  not supported.
    20/11/2013 18:07:26.840 storeagent[3745]: multibyte ASN1 identifiers are  not supported.
    ... and a few like this...
    20/11/2013 11:39:14.872 mds[51]: (Warning) Volume: vsd:0x7ffab30b9000 Open failed.  failureCount:76 {
        DisabledRecycleCount = 76;
    Could this be part or all of the problem? It seems to get worse with time.
    Any help or advice would be greatly appreciated. Many thanks.
    Ray

    Thanks rkaufmann87.
         I had actually done this but nothing seemed amiss. I have since rechecked and discovered that a package called Knowhow - a web based archive and storage program- is the source of the problem. I have since disabled this and only allow it to backup once a week. I have also contacted the supplier and made them aware of the problem.
    Thanks again for your help,
    Regards,
    Ray

  • Memory leakage after exiting the application

    Q1: after I exit my application (app), is the JVM smart enough to free all the memory that was allocated during the JAVA app's life? I am wondering if stuff will be hanging around in RAM. How do I baseline the memory if other tasks (daemons, etc) may be using memory in the background. I would hope Java has a linked list that can be severed and memory reclaimed.
    Q2: What is the best location to read about how to properly code a java program so it does not leak? I am using Borland Optimizit to make sure all references are GONE. I look at the incoming and outgoing references and see if any exist for my instances.
    Q3: I find myself setting stuff to null. I find myself making things static. Is this legal? Will the garbage collector come get the object SOME DAY as long as all the references are gone. If there is statics that means that at least one instance will always be around, but the other instances should go away.

    Q1: What had me concerned was that I am running my Java application, I have all the incoming and outgoing references GONE due to a hodgepodge of hacker code. After I mucked with the threading, and finally determined you have to null the thread, to get rid of the reference. I still see the objects in memory. This object is about 1500 lines, about 1000 source code.
    I see other objects being collected by the JVM, because we put statics in our finalize to tell us when they are called.
    Thanks migrar (post 1 of 2) for the response. I assume the OS errors you are talking about are an exceptions not caught in my App. I am using an NT box, and yes, I could use the task manager.
    Sylvie, a lesson in OS would be nice, your feedback is quite rewarding. Let me guess your an avid Java coder.

  • Measuring Swing GUI memory consumption

    Hi community,
    First , I beg you for excuse for posting this here and not in the Swing forum. I think the question is not clear GUI question, but a more generic one.
    I have a GUI that seems to consume a lot of memory(i.e. opening several screens causes OutOfMemoryError and data received on network measures to a very small amount (<5%) compared to the total memory shown by Task Manager).
    I would like to take these screens apart to discover which of their parts are heavy so that I can concentrate my efforts on optimizing them. I cannot use ObjectOutputStream serialization since it seems there are lots of classes that do not implement Serializable, so I need some other way of determining component memory sizes. I believe that XMLEncoder serialzation will leed to nowhere because it contains a lot of text describibg properties that cannot be accurately measured.
    What can I use to measure the memory consumption for a given component tree?
    Thank you for your time
    Mike

    Swing related questions should be...
    Umm have you considered the use of a Profiler? I kind of doubt it is the GUI per se but a model or something that is leaking memory. I mean there are lot's of fairly complex GUI's out there that don't have these issues so I suspect there is a very deep or complex structure somewhere that is eating all of the memory.
    But in short I think running in some sort of profiler would be good becuase I also suspect that this may be one of this issues where looking at each component may not help because it's as the whole thing is used at runtime where some complexity comes into play and it dies.
    Try http://www.manageability.org/blog/stuff/open-source-profilers-for-java for a start.

  • IMac - slow to boot, bluetooth not found.

    System:
    iMac 24" (Early 2009) 2.66GHz
    8 GB 1067 MHz DDR3 memory (upgraded from original 4GB with 3rd party memory about 4 years ago)
    Seagate Barracuda ST1000DM003 1TB Disk (upgraded from original 640GB about 2 years ago)
    NVIDIA GeForge 9400
    OS X: 10.10.1
    The issue began about 3 months ago when my mother-in-law had the machine. According to her, the machine became very slow to boot (taking from 20min to over 1 hour) and her wireless mouse was not working. Fortunately she was already using a wired keyboard and had a spare wired mouse, so she was able to use the machine. Other than the slow boot and mouse issue, the system was stable.  We decided to replace her machine in any case, primarily because it's not easily serviceable - especially where she lives (rural Alabama). I took the machine back (it had been mine originally). At that point it was running 10.8.5.
    I observed the following:
    1) The system was, indeed, very slow to boot as she described.
    2) None of the bluetooth devices were working.
    3) The bluetooth device shows as "No information found" in the System Information report
    4) Bluetooth preferences were not visible in system preferences.
    5) Coincident with her first report or problems, the following messages began appearing in the system logs:
    Dec 30 14:25:05 localhost kernel[0]: USBF:    3.195    AppleUSBHubPort::FatalError - Port 3 of Hub at 0x6100000 reported error 0xe00002c0 while doing clearing port feature (1)
    Dec 30 14:25:05 localhost kernel[0]: USBF:    3.195    AppleUSBHubPort::FatalError - Port 1 of Hub at 0x6100000 reported error 0xe00002c0 while doing clearing port feature (1)
    Dec 30 14:25:05 localhost kernel[0]: USBF:    3.206    AppleUSBHubPort::FatalError - Port 2 of Hub at 0x6100000 reported error 0xe00002ed while doing getting port status (4)
    Dec 30 14:25:05 localhost kernel[0]: USBF:    3.206    AppleUSBHubPort::FatalError - Port 2 of Hub at 0x6100000 reported error 0xe00002c0 while doing clearing port feature (2)
    Though she originally had external peripherals attached, all have been removed - the only things plugged into any USB or Firewire port are the keyboard and mouse.
    So, that's how the machine was when I got it back... I have tried the following:
    1) First I tried AHT - booting from the original disks provided with the system (AHT version 3A170). AHT hung while probing system hardware; it just stalled for several hours (I think I let it try overnight, only to return to see no progress). I've tried AHT a couple of times through this ordeal and can never get to the point where I can even initiate the test.
    2) I tried removing the bluetooth preferences file.
    3) I tried resetting NVRAM
    4) I tried resetting SMC
    5) I've booted in verbose mode, but nothing really stood out as clearly (or even vaguely) indicating a problem.
    People did suggest booting in "safe" mode - thought it was never clear what I was supposed to do after that. In any case, an attempt to boot in safe mode caused the machine to just reboot itself. I even set safe mode in the boot-args and sat back and watched as the machine consistently rebooted itself each time... about 7 or 8 times before I got sick of hearing the boot chime. I did have verbose mode turned on in boot-args as well, an each time it rebooted at the same point, while initializing drivers. Interestingly, booting in "normal" mode has never been an issue - save for the exceptional amount of time it takes.
    Since the data on the disk was of no use to me, I created a 10.10.1 install package on a USB stick and installed fresh - verifying and reformatting the hard drive before performing the install. The installation was uneventful (i.e. worked just like it should).
    So, now I am running 10.10.1 and still no Bluetooth. I tried the AHT again and again it gets hung probing the hardware and I can't even initiate the test. I even tried a suggestion from another thread (hold ctl-shift-option and the power button for about 6 sec while the power is off)... that had worked for a number of folks but not for me.
    One other piece of info I just confirmed while writing this, 0x6100000 is the Location ID associated with the BRCM2046 Hub - i.e. the Bluetooth device. Why this shows up as a hub on the USB Bus but the device itself doesn't appear to exist is confusing. I certainly would expect to see this as a USB hub on a correctly functioning system, it's just confusing why it's there when the underlying bluetooth device is not recognized.
    So, I am pretty much convinced it's a hardware issue of some kind - given this is a "spare" Mac that I was simply trying to re-purpose to host a film scanner that requires a FireWire interface, I am not sure how much I want to invest financially in getting this resolved. I have heard that Apple no longer services these machines, but I could be wrong...  As I see it my options are kind of limited:
    1) Take it to a repair facility (even if Apple doesn't work on them, there are at least 2 places near by that do) and pay them $$ just to tell me that it's going to be $$$ fix it.
    2) Get my hands dirty, open this thing up and see if I can fix it.
    I'm leaning towards option 2, but I am really reluctant to go on a fishing expedition. Based on what I have observed, it seems to be a problem with the bluetooth module itself, and as I understand it that is a separate part from the main logic board... which means that I can replace it for about $35 and the cost of the right tools; which all together total about the same amount as the "diagnostic" fee any local repair shop would charge. If it's not that, then it's the logic board and the best price I can find for that puts it in the "not worth the trouble" category anyway. I don't want to rule out some other component - memory, disk drive, or power supply... but any of those, at least to me, seem like the kind of components which would cause more erratic behavior when they fail.
    So, what's my question - simple ... have I missed something here. Before I perform open heart surgery are there any last tricks I can try or is my conclusion that this must be a hardware problem pretty solid?

    If your EHDs are formatted OS X Extended (journaled) and your using them as normal EHDs you don't need all of the WD software installed. The OS can use the disks without it.  Uninstall all of the WD software:
    WDSecurityHelper    Application  (/Applications/WD Security.app/Contents/WDSecurityHelper.app)
    WDDriveUtilityHelper    UNKNOWN  (missing value)
    WDDriveUtilityHelper    Application  (/Applications/WD Drive

  • I get a warning when upgrading SP 14 to SP 15

    I get a warning when I deploy the last service pack from SP 14 to SP 15 for the sap.com/SAP_JTECHS
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[E:\usr\sap\DEP\JC00\SDM\program\log\sdmcl20080620152138.log]/>
    <!PATTERN[sdmcl20080620152138.log]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%24d %s: %m)]/>
    <!ENCODING[Cp1252]/>
    <!LOGHEADER[END]/>
    Jun 20, 2008 10:21:50... Info: -
    Starting validation -
    Jun 20, 2008 10:21:50... Info: Prerequisite error handling strategy: OnPrerequisiteErrorSkipDepending
    Jun 20, 2008 10:21:50... Info: Update strategy: UpdateLowerVersions
    Jun 20, 2008 10:21:50... Info: Starting deployment prerequisites:
    Jun 20, 2008 10:21:51... Info: Loading selected archives...
    Jun 20, 2008 10:21:51... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\ADSSAP15P_1-10003001.SCA'
    Jun 20, 2008 10:22:33... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\CAF15P_1-10003464.SCA'
    Jun 20, 2008 10:22:38... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\CAFKM15_0-10003478.SCA'
    Jun 20, 2008 10:22:39... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\CAFUM15_0-10003472.SCA'
    Jun 20, 2008 10:22:40... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\CORETOOLS15P_1-10003456.SCA'
    Jun 20, 2008 10:22:49... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\EPPSERV15P_2-10003474.SCA'
    Jun 20, 2008 10:23:04... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\EPWDC15_0-10003557.SCA'
    Jun 20, 2008 10:23:06... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\EPBC15_0-10003473.SCA'
    Jun 20, 2008 10:23:07... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\EPBC215P_1-10003489.SCA'
    Jun 20, 2008 10:23:10... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\KMCBC15P_1-10003491.SCA'
    Jun 20, 2008 10:23:12... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\KMCCM15P_1-10003492.SCA'
    Jun 20, 2008 10:23:17... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\KMCCOLL15_0-10003493.SCA'
    Jun 20, 2008 10:23:20... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\KMCUI15_0-20002292.SCA'
    Jun 20, 2008 10:23:21... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\SAPJEE15P_3-10003469.SCA'
    Jun 20, 2008 10:23:25... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\SAPJEECOR15P_3-10003466.SCA'
    Jun 20, 2008 10:23:31... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\SAPJTECHS15P_3-10003467.SCA'
    Jun 20, 2008 10:23:37... Info: Loading archive 'E:\usr\sap\DEP\JC00\SDM\program\temp\UMEADMIN15P_1-10003471.SCA'
    Jun 20, 2008 10:23:39... Info: Selected archives successfully loaded.
    Jun 20, 2008 10:23:54... Info: Actions per selected component:
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/metamodel/lib'/'sap.com'/'MAIN_APL70P15_C'/'1566946'/'0' updates currently deployed development component 'caf/metamodel/lib'/'sap.com'/'MAIN_APL70P14_C'/'1538434'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.netweaver.coll.appl.gw'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'1' will not update currently deployed development component 'com.sap.netweaver.coll.appl.gw'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'sqlmap'/'sap.com'/'SAP AG'/'7.0013.20070703111935.0000'/'1' will not update currently deployed development component 'sqlmap'/'sap.com'/'SAP AG'/'7.0013.20070703111935.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.netweaver.coll.appl.ui.room'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.netweaver.coll.appl.ui.room'/'sap.com'/'SAP AG'/'7.0014.20080604130951.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.netweaver.bc.sf.service'/'sap.com'/'SAP AG'/'7.0015.20080502061636.0000'/'0' updates currently deployed development component 'com.sap.netweaver.bc.sf.service'/'sap.com'/'SAP AG'/'7.0014.20080428124946.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/UI/km/cleanjobadmin'/'sap.com'/'MAIN_APL70VAL_C'/'1497987'/'1' will not update currently deployed development component 'caf/UI/km/cleanjobadmin'/'sap.com'/'MAIN_APL70VAL_C'/'1497987'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.lcr.saprfc'/'sap.com'/'SAP AG'/'7.0013.20070703113613.0000'/'1' will not update currently deployed development component 'com.sap.lcr.saprfc'/'sap.com'/'SAP AG'/'7.0013.20070703113613.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected software component 'CAF'/'sap.com'/'MAIN_APL70P15_C'/'1000.7.00.15.1.20080612074227''/'0' updates currently deployed software component 'CAF'/'sap.com'/'MAIN_APL70P14_C'/'1000.7.00.14.3.20080611160323''/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.engine.cpt.dbschema'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'com.sap.engine.cpt.dbschema'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.connectors.sap.authtrace'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sapportals.connectors.sap.authtrace'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.km.common.domino'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.km.common.domino'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/runtime/connectivity'/'sap.com'/'MAIN_APL70VAL_C'/'1533843'/'1' will not update currently deployed development component 'caf/runtime/connectivity'/'sap.com'/'MAIN_APL70VAL_C'/'1533843'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.aii.util.rb'/'sap.com'/'SAP AG'/'7.0012.20070328121059.0000'/'1' will not update currently deployed development component 'com.sap.aii.util.rb'/'sap.com'/'SAP AG'/'7.0012.20070328121059.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.runtime.admin.log'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.portal.runtime.admin.log'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.appdesigner.pcmobjwiztool'/'sap.com'/'SAP AG'/'7.0011.20070128005913.0000'/'2' will not update currently deployed development component 'com.sap.portal.appdesigner.pcmobjwiztool'/'sap.com'/'SAP AG'/'7.0011.20070128005913.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'DocumentServicesLicenseSupportService'/'com.adobe'/'Adobe Systems'/'800.20080218110307.448744'/'0' updates currently deployed development component 'DocumentServicesLicenseSupportService'/'com.adobe'/'Adobe Systems'/'800.20070624094258.403406'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.genericcreatorapi'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.portal.genericcreatorapi'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/core/dict'/'sap.com'/'MAIN_APL70VAL_C'/'964586'/'2' will not update currently deployed development component 'caf/core/dict'/'sap.com'/'MAIN_APL70VAL_C'/'964586'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/ptn/kmfileselect'/'sap.com'/'MAIN_APL70P15_C'/'1594574'/'0' updates currently deployed development component 'caf/UI/ptn/kmfileselect'/'sap.com'/'MAIN_APL70VAL_C'/'1534060'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/ptn/classification'/'sap.com'/'MAIN_APL70P15_C'/'1594628'/'0' updates currently deployed development component 'caf/UI/ptn/classification'/'sap.com'/'MAIN_APL70P14_C'/'1594627'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'tc/sec/ume/wd/batch'/'sap.com'/'MAIN_APL70VAL_C'/'1557185'/'0' updates currently deployed development component 'tc/sec/ume/wd/batch'/'sap.com'/'MAIN_APL70VAL_C'/'964645'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.connectors.bi.systems'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sapportals.connectors.bi.systems'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.portal.util.threadreporting'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.portal.util.threadreporting'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.sp.portalplugins'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.sp.portalplugins'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'pb_lyt'/'sap.com'/'SAP AG'/'7.0011.20070128005913.0000'/'2' will not update currently deployed development component 'pb_lyt'/'sap.com'/'SAP AG'/'7.0011.20070128005913.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.iviewserver.http'/'sap.com'/'SAP AG'/'7.0013.20070808101344.0000'/'1' will not update currently deployed development component 'com.sapportals.iviewserver.http'/'sap.com'/'SAP AG'/'7.0013.20070808101344.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.builder.pagebuilder'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sapportals.builder.pagebuilder'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.portal.connectors.ws'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.portal.connectors.ws'/'sap.com'/'SAP AG'/'7.0014.20071112134627.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.productivitytools.dsktped'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sapportals.productivitytools.dsktped'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/ptn/reporting'/'sap.com'/'MAIN_APL70P15_C'/'1594559'/'0' updates currently deployed development component 'caf/UI/ptn/reporting'/'sap.com'/'MAIN_APL70VAL_C'/'1534054'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.netweaver.coll.appl.room'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.netweaver.coll.appl.room'/'sap.com'/'SAP AG'/'7.0014.20080604130951.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/ptn/flextree'/'sap.com'/'MAIN_APL70P15_C'/'1594562'/'0' updates currently deployed development component 'caf/UI/ptn/flextree'/'sap.com'/'MAIN_APL70P14_C'/'1594563'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/sec/certrevoc/dbschema'/'sap.com'/'SAP AG'/'7.0012.20070328121416.0000'/'2' will not update currently deployed development component 'tc/sec/certrevoc/dbschema'/'sap.com'/'SAP AG'/'7.0012.20070328121416.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.netweaver.coll.appl.sync.etc'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'1' will not update currently deployed development component 'com.sap.netweaver.coll.appl.sync.etc'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.portal.cnf.ws.ConfigurationWSEar'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.portal.cnf.ws.ConfigurationWSEar'/'sap.com'/'SAP AG'/'7.0014.20071210113331.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'AdobeDocumentServicesEjbClientLibrary'/'com.adobe'/'Adobe Systems'/'800.20080311023336.454270'/'0' updates currently deployed development component 'AdobeDocumentServicesEjbClientLibrary'/'com.adobe'/'Adobe Systems'/'705.20060407121920.289077'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/core/metadata'/'sap.com'/'MAIN_APL70P15_C'/'1566947'/'0' updates currently deployed development component 'caf/core/metadata'/'sap.com'/'MAIN_APL70P14_C'/'1538435'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.portal.pcd.admintools.lockadmin'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.portal.pcd.admintools.lockadmin'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.km.db'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.km.db'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/UI/content/transport'/'sap.com'/'MAIN_APL70VAL_C'/'1220380'/'2' will not update currently deployed development component 'caf/UI/content/transport'/'sap.com'/'MAIN_APL70VAL_C'/'1220380'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/km.ep.kmnotifsvc'/'sap.com'/'MAIN_APL70VAL_C'/'1496944'/'1' will not update currently deployed development component 'caf/km.ep.kmnotifsvc'/'sap.com'/'MAIN_APL70VAL_C'/'1496944'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/sld/data'/'sap.com'/'SAP AG'/'7.0014.20071029095152.0000'/'1' will not update currently deployed development component 'tc/sld/data'/'sap.com'/'SAP AG'/'7.0014.20071029095152.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.portal.pcd.admintools.import'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sap.portal.pcd.admintools.import'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/um/metadata/example'/'sap.com'/'MAIN_APL70VAL_C'/'963657'/'2' will not update currently deployed development component 'caf/um/metadata/example'/'sap.com'/'MAIN_APL70VAL_C'/'963657'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected software component 'EPBC2'/'sap.com'/'SAP AG'/'1000.7.00.15.1.20080526110339''/'0' updates currently deployed software component 'EPBC2'/'sap.com'/'SAP AG'/'1000.7.00.14.4.20080527102951''/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.engine.client'/'sap.com'/'SAP AG'/'7.0015.20080414072358.0000'/'0' updates currently deployed development component 'com.sap.engine.client'/'sap.com'/'SAP AG'/'7.0014.20080307042943.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/bl/txmanager/plb'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'tc/bl/txmanager/plb'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.httpconnectivity'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sapportals.httpconnectivity'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.ip.basecomps'/'sap.com'/'SAP AG'/'700.13.20051202111923.0000'/'1' will not update currently deployed development component 'com.sap.ip.basecomps'/'sap.com'/'SAP AG'/'700.13.20051202111923.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.netweaver.coll.appl.async'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.netweaver.coll.appl.async'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/runtime/security/content'/'sap.com'/'MAIN_APL70VAL_C'/'963383'/'2' will not update currently deployed development component 'caf/runtime/security/content'/'sap.com'/'MAIN_APL70VAL_C'/'963383'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.portaladmin.propeditor'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sapportals.portaladmin.propeditor'/'sap.com'/'SAP AG'/'7.0014.20080422160215.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'tc/sec/vsi/app'/'sap.com'/'SAP AG'/'7.0015.20080418111509.0000'/'0' updates currently deployed development component 'tc/sec/vsi/app'/'sap.com'/'SAP AG'/'7.0014.20080418111356.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'DocumentServicesBinaries2'/'com.adobe'/'Adobe Systems'/'800.20080206135746.174053'/'0' updates currently deployed development component 'DocumentServicesBinaries2'/'com.adobe'/'Adobe Systems'/'800.20070622083539.156209'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'adminadapter'/'sap.com'/'SAP AG'/'7.0015.20080211144510.0000'/'0' updates currently deployed development component 'adminadapter'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.netweaver.bc.logging'/'sap.com'/'SAP AG'/'7.0010.20061024142635.0000'/'2' will not update currently deployed development component 'com.sap.netweaver.bc.logging'/'sap.com'/'SAP AG'/'7.0010.20061024142635.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.connectors.SessionManager'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.portal.connectors.SessionManager'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'endpoint_api'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'endpoint_api'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'servlet_jsp'/'sap.com'/'SAP AG'/'7.0015.20080211144510.0000'/'0' updates currently deployed development component 'servlet_jsp'/'sap.com'/'SAP AG'/'7.0014.20080307042943.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.nw.kmc.readonly.sda'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.nw.kmc.readonly.sda'/'sap.com'/'SAP AG'/'7.0014.20080424140556.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.logviewer620'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.portal.logviewer620'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/km.ep.kmindexsearchsvc'/'sap.com'/'MAIN_APL70VAL_C'/'1533749'/'0' updates currently deployed development component 'caf/km.ep.kmindexsearchsvc'/'sap.com'/'MAIN_APL70P14_C'/'1555491'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'activation'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'activation'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/gp/ui/ptn/docgen'/'sap.com'/'MAIN_APL70VAL_C'/'1534043'/'1' will not update currently deployed development component 'caf/gp/ui/ptn/docgen'/'sap.com'/'MAIN_APL70VAL_C'/'1534043'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.epsolman'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.portal.epsolman'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/com.sap.tmw.clients/_ctsa_manager'/'sap.com'/'SAP AG'/'7.0013.20070717141958.0000'/'1' will not update currently deployed development component 'tc/com.sap.tmw.clients/_ctsa_manager'/'sap.com'/'SAP AG'/'7.0013.20070717141958.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/bw/ear'/'sap.com'/'MAIN_APL70VAL_C'/'1497856'/'1' will not update currently deployed development component 'caf/bw/ear'/'sap.com'/'MAIN_APL70VAL_C'/'1497856'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/ptn/historylog'/'sap.com'/'MAIN_APL70P15_C'/'1594579'/'0' updates currently deployed development component 'caf/UI/ptn/historylog'/'sap.com'/'MAIN_APL70P14_C'/'1594580'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.appdesigner.pageeditor'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sapportals.appdesigner.pageeditor'/'sap.com'/'SAP AG'/'7.0014.20080422160215.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.utilities.analyzer'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sapportals.utilities.analyzer'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected software component 'EP-WDC'/'sap.com'/'SAP AG'/'1000.7.00.15.0.20080218050554''/'0' updates currently deployed software component 'EP-WDC'/'sap.com'/'SAP AG'/'1000.7.00.14.1.20080424063354''/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/ptn/searchbar'/'sap.com'/'MAIN_APL70P15_C'/'1594564'/'0' updates currently deployed development component 'caf/UI/ptn/searchbar'/'sap.com'/'MAIN_APL70P14_C'/'1594566'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.sl.modifiers'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.portal.sl.modifiers'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/um/relgroups/ddic'/'sap.com'/'MAIN_APL70VAL_C'/'963377'/'2' will not update currently deployed development component 'caf/um/relgroups/ddic'/'sap.com'/'MAIN_APL70VAL_C'/'963377'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/UI/servicebrowser'/'sap.com'/'MAIN_APL70VAL_C'/'1534047'/'1' will not update currently deployed development component 'caf/UI/servicebrowser'/'sap.com'/'MAIN_APL70VAL_C'/'1534047'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'tc/kmc/kmc.people.shared/wd_picker'/'sap.com'/'SAP AG'/'7.0015.20080409134203.0000'/'0' updates currently deployed development component 'tc/kmc/kmc.people.shared/wd_picker'/'sap.com'/'SAP AG'/'7.0014.20080617101050.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/sec/destinations/interface'/'sap.com'/'SAP AG'/'7.0012.20070328121335.0000'/'2' will not update currently deployed development component 'tc/sec/destinations/interface'/'sap.com'/'SAP AG'/'7.0012.20070328121335.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.backwardscompatibility'/'sap.com'/'SAP AG'/'7.0012.20070426205038.0000'/'2' will not update currently deployed development component 'com.sapportals.backwardscompatibility'/'sap.com'/'SAP AG'/'7.0012.20070426205038.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/monitoring/api'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'tc/monitoring/api'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'webservices_api'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'1' will not update currently deployed development component 'webservices_api'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected software component 'KMC-BC'/'sap.com'/'SAP AG'/'1000.7.00.15.1.20080502090731''/'0' updates currently deployed software component 'KMC-BC'/'sap.com'/'SAP AG'/'1000.7.00.14.3.20080428150051''/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.builder.portallayouts'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sapportals.builder.portallayouts'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.security.core.sda'/'sap.com'/'SAP AG'/'7.0015.20080521102940.0000'/'0' updates currently deployed development component 'com.sap.security.core.sda'/'sap.com'/'SAP AG'/'7.0014.20080521102846.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.km.acl'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.km.acl'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.km.application'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'1' will not update currently deployed development component 'com.sap.km.application'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'jms'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'jms'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'shell_api'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'shell_api'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/sec/saml/service'/'sap.com'/'SAP AG'/'7.0012.20070328121335.0000'/'2' will not update currently deployed development component 'tc/sec/saml/service'/'sap.com'/'SAP AG'/'7.0012.20070328121335.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/ptn/objectbrowser'/'sap.com'/'MAIN_APL70P15_C'/'1594568'/'0' updates currently deployed development component 'caf/UI/ptn/objectbrowser'/'sap.com'/'MAIN_APL70P14_C'/'1594567'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.admin.util'/'sap.com'/'SAP AG'/'7.0013.20070808101344.0000'/'0' will not update currently deployed development component 'com.sap.portal.admin.util'/'sap.com'/'SAP AG'/'7.0014.20080422160215.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/ptn/objectselector'/'sap.com'/'MAIN_APL70P15_C'/'1594577'/'0' updates currently deployed development component 'caf/UI/ptn/objectselector'/'sap.com'/'MAIN_APL70P14_C'/'1594578'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.netweaver.coll.CollContent'/'sap.com'/'SAP AG'/'7.0013.20070808101344.0000'/'1' will not update currently deployed development component 'com.sap.netweaver.coll.CollContent'/'sap.com'/'SAP AG'/'7.0013.20070808101344.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.appdesigner.frameworkapi'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sapportals.appdesigner.frameworkapi'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'tc/wd/wslib'/'sap.com'/'SAP AG'/'7.0015.20080131100237.0000'/'0' updates currently deployed development component 'tc/wd/wslib'/'sap.com'/'SAP AG'/'7.0013.20070717142021.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.mw.jco'/'sap.com'/'SAP AG'/'7.0015.20080123135518.0000'/'0' updates currently deployed development component 'com.sap.mw.jco'/'sap.com'/'SAP AG'/'7.0014.20071002095850.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.iviewserver.appintegrate'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sapportals.iviewserver.appintegrate'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.iviewserver.wsrp'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sapportals.iviewserver.wsrp'/'sap.com'/'SAP AG'/'7.0014.20071112134627.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.netweaver.coll.appl.ui.async'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.netweaver.coll.appl.ui.async'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.supportplatformSDA'/'sap.com'/'SAP AG'/'7.0012.20070328121655.0000'/'1' will not update currently deployed development component 'com.sapportals.supportplatformSDA'/'sap.com'/'SAP AG'/'7.0012.20070328121655.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.utilities.portalspider'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sapportals.utilities.portalspider'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'tc/kmc/bc.rf.ws/rfws/ear'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'tc/kmc/bc.rf.ws/rfws/ear'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.common'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sapportals.common'/'sap.com'/'SAP AG'/'7.0014.20080422160215.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/bizc/lib'/'sap.com'/'SAP AG'/'7.0013.20060719102130.0000'/'1' will not update currently deployed development component 'tc/bizc/lib'/'sap.com'/'SAP AG'/'7.0013.20060719102130.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/sec/ume/wd/concheck'/'sap.com'/'MAIN_APL70VAL_C'/'1219716'/'1' will not update currently deployed development component 'tc/sec/ume/wd/concheck'/'sap.com'/'MAIN_APL70VAL_C'/'1219716'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.lm.persistence.monitoring'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'com.sap.lm.persistence.monitoring'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/mp/mmr/adapter/ear'/'sap.com'/'MAIN_APL70VAL_C'/'1220148'/'2' will not update currently deployed development component 'caf/mp/mmr/adapter/ear'/'sap.com'/'MAIN_APL70VAL_C'/'1220148'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/di/scm/cts_adapter'/'sap.com'/'SAP AG'/'7.0014.20071029094759.0000'/'1' will not update currently deployed development component 'tc/di/scm/cts_adapter'/'sap.com'/'SAP AG'/'7.0014.20071029094759.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/ptn/propedit'/'sap.com'/'MAIN_APL70P15_C'/'1594619'/'0' updates currently deployed development component 'caf/UI/ptn/propedit'/'sap.com'/'MAIN_APL70P14_C'/'1594618'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'security'/'sap.com'/'SAP AG'/'7.0015.20080211144510.0000'/'0' updates currently deployed development component 'security'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/sec/secstorefs'/'sap.com'/'SAP AG'/'7.0012.20070328121335.0000'/'2' will not update currently deployed development component 'tc/sec/secstorefs'/'sap.com'/'SAP AG'/'7.0012.20070328121335.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.pb.services'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.portal.pb.services'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/ni'/'sap.com'/'SAP AG'/'7.0013.20060210155918.0000'/'1' will not update currently deployed development component 'tc/ni'/'sap.com'/'SAP AG'/'7.0013.20060210155918.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.km.trex.ui'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.km.trex.ui'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.builder.defaultlayouts'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sapportals.builder.defaultlayouts'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'naming'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'1' will not update currently deployed development component 'naming'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.netweaver.coll.appl.sync'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.netweaver.coll.appl.sync'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.rprof.remoteProfile'/'sap.com'/'SAP AG'/'7.0013.20070328121706.0000'/'1' will not update currently deployed development component 'com.sap.rprof.remoteProfile'/'sap.com'/'SAP AG'/'7.0013.20070328121706.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/um/metadata/api'/'sap.com'/'MAIN_APL70VAL_C'/'1496398'/'1' will not update currently deployed development component 'caf/um/metadata/api'/'sap.com'/'MAIN_APL70VAL_C'/'1496398'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.pcd.zorkservice'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.portal.pcd.zorkservice'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.dqe.dbschema'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.dqe.dbschema'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/sec/ume/wd/umeadmin'/'sap.com'/'MAIN_APL70VAL_C'/'1219838'/'1' will not update currently deployed development component 'tc/sec/ume/wd/umeadmin'/'sap.com'/'MAIN_APL70VAL_C'/'1219838'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'XMLFormService'/'com.adobe'/'Adobe Systems'/'800.20080310103129.448310'/'0' updates currently deployed development component 'XMLFormService'/'com.adobe'/'Adobe Systems'/'800.20070628123504.401486'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.portaladmin.wizframework'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sapportals.portaladmin.wizframework'/'sap.com'/'SAP AG'/'7.0014.20080422160215.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/tc/dictionary'/'sap.com'/'MAIN_APL70VAL_C'/'963672'/'2' will not update currently deployed development component 'caf/tc/dictionary'/'sap.com'/'MAIN_APL70VAL_C'/'963672'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.prt.application.monitor'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sapportals.prt.application.monitor'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.strucfilterservice'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.portal.strucfilterservice'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.km.cm.service'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.km.cm.service'/'sap.com'/'SAP AG'/'7.0014.20080617101050.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.portal.pcd.rolemigration'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.portal.pcd.rolemigration'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.utilities.portalspiderDB'/'sap.com'/'SAP AG'/'7.0014.20071210113331.0000'/'1' will not update currently deployed development component 'com.sapportals.utilities.portalspiderDB'/'sap.com'/'SAP AG'/'7.0014.20071210113331.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'webservices_lib'/'sap.com'/'SAP AG'/'7.0015.20080211144510.0000'/'0' updates currently deployed development component 'webservices_lib'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.sl.ut.jddi.schema'/'sap.com'/'SAP AG'/'7.0014.20071123054250.0000'/'1' will not update currently deployed development component 'com.sap.sl.ut.jddi.schema'/'sap.com'/'SAP AG'/'7.0014.20071123054250.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/sec/wssec/service'/'sap.com'/'SAP AG'/'7.0012.20070328121335.0000'/'2' will not update currently deployed development component 'tc/sec/wssec/service'/'sap.com'/'SAP AG'/'7.0012.20070328121335.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'sl.ut.infoprovider'/'sap.com'/'SAP AG'/'7.0014.20071123054250.0000'/'1' will not update currently deployed development component 'sl.ut.infoprovider'/'sap.com'/'SAP AG'/'7.0014.20071123054250.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'classload'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'classload'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.reportingframework'/'sap.com'/'SAP AG'/'7.0014.20071210113331.0000'/'1' will not update currently deployed development component 'com.sap.portal.reportingframework'/'sap.com'/'SAP AG'/'7.0014.20071210113331.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.jdo'/'sap.com'/'SAP AG'/'7.0015.20080123135437.0000'/'0' updates currently deployed development component 'com.sap.jdo'/'sap.com'/'SAP AG'/'7.0013.20070703111940.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected software component 'KMC-UI'/'sap.com'/'SAP AG'/'1000.7.00.15.0.20080216112300''/'0' updates currently deployed software component 'KMC-UI'/'sap.com'/'SAP AG'/'1000.7.00.14.1.20080311121000''/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/configuration'/'sap.com'/'MAIN_APL70P15_C'/'1594520'/'0' updates currently deployed development component 'caf/UI/configuration'/'sap.com'/'MAIN_APL70P14_C'/'1594519'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'IAIKSecurityFS'/'sap.com'/'SAP AG'/'7.0015.20080306092337.0000'/'0' updates currently deployed development component 'IAIKSecurityFS'/'sap.com'/'SAP AG'/'7.0014.20080418111356.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'log_api'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'log_api'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.runtime.system.console'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.portal.runtime.system.console'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'log_configurator'/'sap.com'/'SAP AG'/'7.0015.20080414072358.0000'/'0' updates currently deployed development component 'log_configurator'/'sap.com'/'SAP AG'/'7.0014.20080307042943.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected software component 'CAF-UM'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.15.0.20080218061947''/'0' updates currently deployed software component 'CAF-UM'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.14.0.20071117062847''/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.content.export.gc'/'sap.com'/'SAP AG'/'7.0014.20071112134627.0000'/'1' will not update currently deployed development component 'com.sap.portal.content.export.gc'/'sap.com'/'SAP AG'/'7.0014.20071112134627.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.portal.ep.version'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sap.portal.ep.version'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'acc_admin_welcome'/'sap.com'/'SAP AG'/'7.0010.20061023110711.0000'/'2' will not update currently deployed development component 'acc_admin_welcome'/'sap.com'/'SAP AG'/'7.0010.20061023110711.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'memory'/'sap.com'/'SAP AG'/'7.0013.20070717141354.0000'/'1' will not update currently deployed development component 'memory'/'sap.com'/'SAP AG'/'7.0013.20070717141354.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/metamodel/lib/new'/'sap.com'/'MAIN_APL70VAL_C'/'1496420'/'1' will not update currently deployed development component 'caf/metamodel/lib/new'/'sap.com'/'MAIN_APL70VAL_C'/'1496420'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.engine.deploy.online'/'sap.com'/'SAP AG'/'7.0015.20080523072536.0000'/'0' updates currently deployed development component 'com.sap.engine.deploy.online'/'sap.com'/'SAP AG'/'7.0014.20080307042943.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.nav.ws.navwshelperservice'/'sap.com'/'SAP AG'/'7.0014.20071210113331.0000'/'1' will not update currently deployed development component 'com.sap.portal.nav.ws.navwshelperservice'/'sap.com'/'SAP AG'/'7.0014.20071210113331.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'iiop'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'1' will not update currently deployed development component 'iiop'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.supportplatform.portalplugins'/'sap.com'/'SAP AG'/'7.0011.20070128005913.0000'/'2' will not update currently deployed development component 'com.sapportals.supportplatform.portalplugins'/'sap.com'/'SAP AG'/'7.0011.20070128005913.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/ptn/attachments'/'sap.com'/'MAIN_APL70P15_C'/'1594622'/'0' updates currently deployed development component 'caf/UI/ptn/attachments'/'sap.com'/'MAIN_APL70P14_C'/'1594621'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.netweaver.coll.pc.homer.etc'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.netweaver.coll.pc.homer.etc'/'sap.com'/'SAP AG'/'7.0014.20080604130949.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.netweaver.coll.forumsContent'/'sap.com'/'SAP AG'/'7.0015.20080215142327.0000'/'0' updates currently deployed development component 'com.sap.netweaver.coll.forumsContent'/'sap.com'/'SAP AG'/'7.0014.20080311115532.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.netweaver.coll.forumsPortal'/'sap.com'/'SAP AG'/'7.0015.20080215142327.0000'/'0' updates currently deployed development component 'com.sap.netweaver.coll.forumsPortal'/'sap.com'/'SAP AG'/'7.0014.20080311115532.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.portal.pcd.rolemigrationcomp'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sap.portal.pcd.rolemigrationcomp'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.appdesigner.concatalogapi'/'sap.com'/'SAP AG'/'7.0014.20071112134549.0000'/'0' will not update currently deployed development component 'com.sapportals.appdesigner.concatalogapi'/'sap.com'/'SAP AG'/'7.0014.20080422160215.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.security.ume.par'/'sap.com'/'SAP AG'/'7.0015.20080526080409.0000'/'0' updates currently deployed development component 'com.sap.security.ume.par'/'sap.com'/'SAP AG'/'7.0014.20080527083131.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.netweaver.bc.crt'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.netweaver.bc.crt'/'sap.com'/'SAP AG'/'7.0013.20070808101344.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/runtime/connectivity/ddic'/'sap.com'/'MAIN_APL70VAL_C'/'963382'/'2' will not update currently deployed development component 'caf/runtime/connectivity/ddic'/'sap.com'/'MAIN_APL70VAL_C'/'963382'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/um/metadata/content'/'sap.com'/'MAIN_APL70VAL_C'/'1497172'/'1' will not update currently deployed development component 'caf/um/metadata/content'/'sap.com'/'MAIN_APL70VAL_C'/'1497172'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.navigation.mimeservice'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sapportals.navigation.mimeservice'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'ar_hook'/'sap.com'/'SAP AG'/'7.0010.20061023110711.0000'/'2' will not update currently deployed development component 'ar_hook'/'sap.com'/'SAP AG'/'7.0010.20061023110711.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.designtools'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sapportals.designtools'/'sap.com'/'SAP AG'/'7.0014.20071112134627.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'ssl'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'1' will not update currently deployed development component 'ssl'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/UI/typeeditor'/'sap.com'/'MAIN_APL70VAL_C'/'1497982'/'1' will not update currently deployed development component 'caf/UI/typeeditor'/'sap.com'/'MAIN_APL70VAL_C'/'1497982'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'IAIKSecurity'/'sap.com'/'SAP AG'/'7.0012.20070328121335.0000'/'2' will not update currently deployed development component 'IAIKSecurity'/'sap.com'/'SAP AG'/'7.0012.20070328121335.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/tc/webdynpro'/'sap.com'/'MAIN_APL70VAL_C'/'963849'/'2' will not update currently deployed development component 'caf/tc/webdynpro'/'sap.com'/'MAIN_APL70VAL_C'/'963849'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'AdobeDocumentServices'/'com.adobe'/'Adobe Systems'/'800.20080218110307.448744'/'0' updates currently deployed development component 'AdobeDocumentServices'/'com.adobe'/'Adobe Systems'/'800.20070708051308.406522'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.km.cm.repository.service.base'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'1' will not update currently deployed development component 'com.sap.km.cm.repository.service.base'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'pb_test'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'0' will not update currently deployed development component 'pb_test'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.portal.pcd.translation'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sap.portal.pcd.translation'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.portal.common.activation'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.portal.common.activation'/'sap.com'/'SAP AG'/'7.0014.20080422160215.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.km.cm.repository.manager'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.km.cm.repository.manager'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.portal.contentfetching'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sap.portal.contentfetching'/'sap.com'/'SAP AG'/'7.0014.20080422160215.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.productivitytools.desktop'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sapportals.productivitytools.desktop'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.prt.bridge'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sapportals.prt.bridge'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.supportplatform.dbschema'/'sap.com'/'SAP AG'/'7.0013.20070328121655.0000'/'1' will not update currently deployed development component 'com.sapportals.supportplatform.dbschema'/'sap.com'/'SAP AG'/'7.0013.20070328121655.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.navigation.portallauncher'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sapportals.navigation.portallauncher'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/ptn/collaboration'/'sap.com'/'MAIN_APL70P15_C'/'1594626'/'0' updates currently deployed development component 'caf/UI/ptn/collaboration'/'sap.com'/'MAIN_APL70P14_C'/'1594625'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'jmx'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'1' will not update currently deployed development component 'jmx'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.km.cm.ui'/'sap.com'/'SAP AG'/'7.0015.20080416094201.0000'/'0' updates currently deployed development component 'com.sap.km.cm.ui'/'sap.com'/'SAP AG'/'7.0014.20080617101050.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/supportplatform/engine'/'sap.com'/'SAP AG'/'7.0013.20070328121655.0000'/'1' will not update currently deployed development component 'tc/supportplatform/engine'/'sap.com'/'SAP AG'/'7.0013.20070328121655.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.iviewserver.portalpcmapi'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sapportals.iviewserver.portalpcmapi'/'sap.com'/'SAP AG'/'7.0013.20070808101344.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.iviewserver.gencreator'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sapportals.iviewserver.gencreator'/'sap.com'/'SAP AG'/'7.0014.20071112134627.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'tc/sec/ume/wd/kit'/'sap.com'/'MAIN_APL70P15_C'/'1572671'/'0' updates currently deployed development component 'tc/sec/ume/wd/kit'/'sap.com'/'MAIN_APL70P14_C'/'1570927'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'bootstrap.sda'/'sap.com'/'SAP AG'/'7.0015.20080414072358.0000'/'0' updates currently deployed development component 'bootstrap.sda'/'sap.com'/'SAP AG'/'7.0014.20080307042943.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'timeout'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'timeout'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/runtime/uicoupling/api/lib'/'sap.com'/'MAIN_APL70VAL_C'/'1530461'/'1' will not update currently deployed development component 'caf/runtime/uicoupling/api/lib'/'sap.com'/'MAIN_APL70VAL_C'/'1530461'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'failover'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'1' will not update currently deployed development component 'failover'/'sap.com'/'SAP AG'/'7.0014.20071029094615.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/km.ep.propmetadatasvc'/'sap.com'/'MAIN_APL70VAL_C'/'1528594'/'0' updates currently deployed development component 'caf/km.ep.propmetadatasvc'/'sap.com'/'MAIN_APL70P14_C'/'1555495'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'r3startup'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'r3startup'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'caf/runtime/api/lib'/'sap.com'/'MAIN_APL70VAL_C'/'1533800'/'1' will not update currently deployed development component 'caf/runtime/api/lib'/'sap.com'/'MAIN_APL70VAL_C'/'1533800'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'caf/UI/ptn/proxycomp'/'sap.com'/'MAIN_APL70P15_C'/'1594586'/'0' updates currently deployed development component 'caf/UI/ptn/proxycomp'/'sap.com'/'MAIN_APL70P14_C'/'1594588'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/TechSrv/xml_das_connector_init'/'sap.com'/'SAP AG'/'7.0012.20070328121226.0000'/'1' will not update currently deployed development component 'tc/TechSrv/xml_das_connector_init'/'sap.com'/'SAP AG'/'7.0012.20070328121226.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'tc/logging'/'sap.com'/'SAP AG'/'7.0015.20080306093410.0000'/'0' updates currently deployed development component 'tc/logging'/'sap.com'/'SAP AG'/'7.0014.20071123180538.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'security_api'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'security_api'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/uddi/dbschema'/'sap.com'/'SAP AG'/'7.0013.20050713132942.0000'/'1' will not update currently deployed development component 'tc/uddi/dbschema'/'sap.com'/'SAP AG'/'7.0013.20050713132942.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.iviewserver.global'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sapportals.iviewserver.global'/'sap.com'/'SAP AG'/'7.0014.20080422160215.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'editor_framework'/'sap.com'/'SAP AG'/'7.0014.20071113170027.0000'/'0' will not update currently deployed development component 'editor_framework'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'servlet'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'2' will not update currently deployed development component 'servlet'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected software component 'CORE-TOOLS'/'sap.com'/'SAP AG'/'1000.7.00.15.1.20080414132053''/'0' updates currently deployed software component 'CORE-TOOLS'/'sap.com'/'SAP AG'/'1000.7.00.14.1.20080422182630''/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/sec/wssec/app'/'sap.com'/'SAP AG'/'7.0012.20070328121335.0000'/'1' will not update currently deployed development component 'tc/sec/wssec/app'/'sap.com'/'SAP AG'/'7.0012.20070328121335.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'security.class'/'sap.com'/'SAP AG'/'7.0015.20080418111509.0000'/'0' updates currently deployed development component 'security.class'/'sap.com'/'SAP AG'/'7.0014.20080418111356.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.netweaver.coll.version'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'com.sap.netweaver.coll.version'/'sap.com'/'SAP AG'/'7.0014.20080604131142.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sap.portal.ivs.global.admin.consover'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'2' will not update currently deployed development component 'com.sap.portal.ivs.global.admin.consover'/'sap.com'/'SAP AG'/'7.0010.20061109164817.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/bcb/ici'/'sap.com'/'SAP AG'/'7.0013.20050520154317.0000'/'1' will not update currently deployed development component 'tc/bcb/ici'/'sap.com'/'SAP AG'/'7.0013.20050520154317.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.productivitytools.resolvr'/'sap.com'/'SAP AG'/'7.0014.20071112134549.0000'/'1' will not update currently deployed development component 'com.sapportals.productivitytools.resolvr'/'sap.com'/'SAP AG'/'7.0014.20071112134549.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.prt.jco'/'sap.com'/'SAP AG'/'7.0011.20070128005913.0000'/'2' will not update currently deployed development component 'com.sapportals.prt.jco'/'sap.com'/'SAP AG'/'7.0011.20070128005913.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'shell'/'sap.com'/'SAP AG'/'7.0015.20080211144510.0000'/'0' updates currently deployed development component 'shell'/'sap.com'/'SAP AG'/'7.0012.20070328121153.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'tc/monitoring/systeminfo'/'sap.com'/'SAP AG'/'7.0013.20070717141354.0000'/'1' will not update currently deployed development component 'tc/monitoring/systeminfo'/'sap.com'/'SAP AG'/'7.0013.20070717141354.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'tc/pp/ivs/floating_aliases'/'sap.com'/'SAP AG'/'7.0015.20080215133942.0000'/'0' updates currently deployed development component 'tc/pp/ivs/floating_aliases'/'sap.com'/'SAP AG'/'7.0014.20080422160215.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sapportals.nav.defaultnaviviews'/'sap.com'/'SAP AG'/'7.0015.20080527075343.0000'/'0' updates currently deployed development component 'com.sapportals.nav.defaultnaviviews'/'sap.com'/'SAP AG'/'7.0014.20080423122840.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected software component 'ADSSAP'/'sap.com'/'SAP AG'/'1000.7.00.15.1.20080429090808''/'0' updates currently deployed software component 'ADSSAP'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071118055147''/'0'.
    Jun 20, 2008 10:23:54... Info: Update: Selected development component 'com.sap.aii.proxy.framework'/'sap.com'/'SAP AG'/'7.0015.20080306090959.0000'/'0' updates currently deployed development component 'com.sap.aii.proxy.framework'/'sap.com'/'SAP AG'/'7.0014.20080208124142.0000'/'0'.
    Jun 20, 2008 10:23:54... Info: No action: Selected development component 'com.sapportals.supportplatform'/'sap.com'/'SAP AG'/'7.0013.20070328121655.0000'/'1' will not update cu

    Hi,
    From the log file you posted, I do not see any warnings or errors, every thing looks okay.
    So your installation is successful.
    Regards,
    Praveen Gudapati

  • Windows 2012

    Has anyone started testing Windows 2012 with their UCS?  I have a few RTM servers up and running and I've seen a couple problems so far.  I have them booting from SAN using B230M2 blades with the M81KR card.; that's working fine. 
    I ocassionally get hardware errors in the Windows system log:
    Event ID 22
    A fatal hardware error has occurred.
    Component: Memory
    Error Source: BOOT
    Error Type: 17
    The details view of this entry contains further information.
    I tried installing the chipset drivers but they fail during the install.
    I am also seeing 1 of the 4 paths to the storage go down intermittently.  I am troubleshooting this to see if it's a SAN, switch or server issue.
    When I see the path go down I find a bunch of errors in the Windows system log:
    Event ID 153
    The IO operation at logical block address 147f8 for Disk 1 was retried.
    We are running F/W 2.0(3a)

    Louis,
    I'm seeing events that I believe correspond with the loss of the path to the storage:
    After a few of these the server reboots itself.
    I'm not seeing anything in UCSM for the Windows memory errors though.
    Our storage is a Dell Compellent SC040. 
    I'm going to do some comparrison testing at our DR site; we have an identical UCS and Compellet array there, but the Compellent is directly attached to the FI's.  At our primary site the Compellent is attached to our Nexus 5020's.  I don't thing the Nexus' are the cause of the storgae path issue; but it's worth a test.
    Let me know how you make out with your B230 testing.
    Thanks,
    Don

  • Is 1GB ram is enough for the installation of oracle developer suite 10g and database 11g???  And which one to install first developer suite or database????

    Hello everyone,
    I have install windows XP in my existing windows 7 64 bit system using virtualization software. I have allocated 1024 MB of RAM to XP virtual windows.
    Now, M trying to install oracle developer suite 10g and oracle database 11 in the XP windows.
    IS 1GB ram is enough for the installation of oracle developer suite 10g and database 11g???
    And which one to install first developer suite or database????
    Thanks in advance.

    you should check (before installing) requeriments from documentation.
    Oracle Developer Suite Installation Guide 10g (10.1.2.0.2) for Solaris, Windows and Linux x86
    Table 4 Memory Requirements for Oracle Developer Suite Components
    Component
    Memory
    Oracle10g JDeveloper (including Oracle Business Intelligence Beans, and UIX and Bali subcomponents)
    Minimum: 256 MB
    Recommended: 512 MB
    Oracle Reports Developer
    Minimum: 128 MB
    Recommended: 256 MB
    Oracle Forms Developer
    Minimum: 128 MB
    Recommended: 256 MB
    I usually install first database and later DS, I never tried first DS and later database.

  • Need explanation for apparent heap size reduction

    Hello,
    From the GC logs, it appears that the heap size is being reduced across young and old generations after sometime. Is there any explanation to this?
    Below are three entries from the logs.
    {Heap before gc invocations=5:
    PSYoungGen      total 44800K, used 44180K [0x18220000, 0x1b420000, 0x24a20000)
      eden space 38400K, 100% used [0x18220000,0x1a7a0000,0x1a7a0000)
      from space 6400K, 90% used [0x1ade0000,0x1b3853c8,0x1b420000)
      to   space 6400K, 0% used [0x1a7a0000,0x1a7a0000,0x1ade0000)
    PSOldGen        total 51200K, used 16K [0x0ba20000, 0x0ec20000, 0x18220000)
      object space 51200K, 0% used [0x0ba20000,0x0ba24128,0x0ec20000)
    PSPermGen       total 32768K, used 12417K [0x03a20000, 0x05a20000, 0x0ba20000)
      object space 32768K, 37% used [0x03a20000,0x046406c0,0x05a20000)
    1047.599: [GC [PSYoungGen: 44180K->5990K(44032K)] 44197K->6006K(95232K), 0.0046671 secs]
    Heap after gc invocations=5:
    PSYoungGen      total 44032K, used 5990K [0x18220000, 0x1b5a0000, 0x24a20000)
      eden space 37632K, 0% used [0x18220000,0x18220000,0x1a6e0000)
      from space 6400K, 93% used [0x1a7a0000,0x1ad79990,0x1ade0000)
      to   space 7552K, 0% used [0x1ae40000,0x1ae40000,0x1b5a0000)
    PSOldGen        total 51200K, used 16K [0x0ba20000, 0x0ec20000, 0x18220000)
      object space 51200K, 0% used [0x0ba20000,0x0ba24128,0x0ec20000)
    PSPermGen       total 32768K, used 12417K [0x03a20000, 0x05a20000, 0x0ba20000)
      object space 32768K, 37% used [0x03a20000,0x046406c0,0x05a20000)
    {Heap before gc invocations=174:
    PSYoungGen      total 9728K, used 9666K [0x18220000, 0x18d30000, 0x24a20000)
      eden space 8640K, 99% used [0x18220000,0x18a8fa58,0x18a90000)
      from space 1088K, 94% used [0x18a90000,0x18b910f0,0x18ba0000)
      to   space 1344K, 0% used [0x18be0000,0x18be0000,0x18d30000)
    PSOldGen        total 51200K, used 21113K [0x0ba20000, 0x0ec20000, 0x18220000)
      object space 51200K, 41% used [0x0ba20000,0x0cebe540,0x0ec20000)
    PSPermGen       total 32768K, used 12611K [0x03a20000, 0x05a20000, 0x0ba20000)
      object space 32768K, 38% used [0x03a20000,0x04670fa0,0x05a20000)
    26968.748: [GC [PSYoungGen: 9666K->1271K(9920K)] 30780K->22465K(61120K), 0.0025274 secs]
    Heap after gc invocations=174:
    PSYoungGen      total 9920K, used 1271K [0x18220000, 0x18d50000, 0x24a20000)
      eden space 8576K, 0% used [0x18220000,0x18220000,0x18a80000)
      from space 1344K, 94% used [0x18be0000,0x18d1dd00,0x18d30000)
      to   space 1408K, 0% used [0x18a80000,0x18a80000,0x18be0000)
    PSOldGen        total 51200K, used 21194K [0x0ba20000, 0x0ec20000, 0x18220000)
      object space 51200K, 41% used [0x0ba20000,0x0ced29e0,0x0ec20000)
    PSPermGen       total 32768K, used 12611K [0x03a20000, 0x05a20000, 0x0ba20000)
      object space 32768K, 38% used [0x03a20000,0x04670fa0,0x05a20000)
    {Heap before gc invocations=23195:
    PSYoungGen      total 1536K, used 1372K [0x18220000, 0x18440000, 0x24a20000)
      eden space 896K, 100% used [0x18220000,0x18300000,0x18300000)
      from space 640K, 74% used [0x183a0000,0x184173e8,0x18440000)
      to   space 640K, 0% used [0x18300000,0x18300000,0x183a0000)
    PSOldGen        total 6272K, used 4627K [0x0ba20000, 0x0c040000, 0x18220000)
      object space 6272K, 73% used [0x0ba20000,0x0bea4d70,0x0c040000)
    PSPermGen       total 32768K, used 12930K [0x03a20000, 0x05a20000, 0x0ba20000)
      object space 32768K, 39% used [0x03a20000,0x046c0aa0,0x05a20000)
    71908.146: [GC [PSYoungGen: 1372K->533K(1536K)] 6000K->5423K(7808K), 0.0107964 secs]
    Heap after gc invocations=23195:
    PSYoungGen      total 1536K, used 533K [0x18220000, 0x18460000, 0x24a20000)
      eden space 896K, 0% used [0x18220000,0x18220000,0x18300000)
      from space 640K, 83% used [0x18300000,0x18385438,0x183a0000)
      to   space 704K, 0% used [0x183b0000,0x183b0000,0x18460000)
    PSOldGen        total 6272K, used 4890K [0x0ba20000, 0x0c040000, 0x18220000)
      object space 6272K, 77% used [0x0ba20000,0x0bee6868,0x0c040000)
    PSPermGen       total 32768K, used 12930K [0x03a20000, 0x05a20000, 0x0ba20000)
      object space 32768K, 39% used [0x03a20000,0x046c0aa0,0x05a20000)
    The (relevant) JVM parameters used are as follows :
    -server
    -Xms600m
    -Xss256k
    -XX:+UseParallelGC
    -XX:+PrintHeapAtGC
    -XX:+HeapDumpOnOutOfMemoryError
    -Xloggc:verbose_gc.log
    -Djavax.net.debug=none
    -XX:+PrintGCDetails
    -XX:+PrintTenuringDistribution
    -XX:+PrintClassHistogram
    -Xmx800m
    -XX:NewRatio=1
    -XX:CompileThreshold=1500
    -XX:PermSize=32m
    -XX:MaxPermSize=128m
    Any help would be welcome.
    -R

    From what has been looked into further - it appears to be an issue with the threads.
    The issue is reproducible if threads are simply created and allowed to run for some time and then complete.
    The issue is reproducible on JDK 1.5.14 but not with JDK 1.6.37.
    The use of thread pools likely masked the issue leading to the above mentioned gc sample.
    Update #1:
    A plausible solution for 1.5 as determined is to include '-XX:NewSize' in the parameters (the eden does not reduce below that) however it is not known if this will resolve the issue (memory reclaimed but not accounted for) or if there will be out of memory issues (memory not reclaimed)
    Additional links:
    https://bugs.openjdk.java.net/browse/JDK-7118202 (Relates to JDK-7 : for possible explanations so as to what can cause it)
    https://www.java.net//node/662483

  • Why are object alloc delays occuring outside of GC?

    Hi
    I'm currently tuning an application which has a low latency transaction requirement (sub 5ms ideally), hence we're using JRockit RT with an 8ms deterministic strategy (we're not achieving 8ms GC pause, but some time ago we experimented and found this was a good setting for us).
    I'm currently focused on addressing latency spikes which we're hoping to bring down from many hundreds of ms to the order of 10-20ms. Many of the spikes are occurring during GC activity as one would expect, but I'm currently looking at some spikes outside of GC which I'm struggling to understand the cause of. What I seem to be seeing is object alloc delays which are occuring and then being resolved, but outside of any GC activity.
    For example, see the following snippet from the log. Cmd line params include:
    -Xverbose:memory,memdbg=debug,gcpause=debug,compaction,gcreport,refobj
    -Xgcprio:deterministic
    -Xpausetarget=8ms
    Version=
    java version "1.6.0_05"
    Java(TM) SE Runtime Environment (build 1.6.0_05-b13)
    BEA JRockit(R) (build R27.6.0-50_o-100423-1.6.0_05-20080626-2104-linux-x86_64, compiled mode)
    [memory ][Wed May 26 12:31:38 2010][23134] Pause 'OC:Cleanup' took 0.179 ms (ended at 1545.738649 s).
    [memory ][Wed May 26 12:31:38 2010][23134] 1539.900-1545.738: GC 13279297K->11726889K (14680064K), sum of pauses 386.637 ms
    [memdbg ][Wed May 26 12:31:38 2010][23134] Page faults before GC: 1, page faults after GC: 1, pages in heap: 3670016
    [finaliz][Wed May 26 12:31:38 2010][23134] (OC) Pending finalizers 0->0
    [memdbg ][Wed May 26 12:31:38 2010][23134] Restarting of javathreads took 0.257 ms
    *[gcpause][Wed May 26 12:31:38 2010][23134] Thread "pool-1-thread-1" id=217 idx=0x36c tid=25388 was in object alloc 75.397 ms from 1546.387 s*
    [memdbg ][Wed May 26 12:34:04 2010][23134] GC reason: Other, cause: Memleak Request Data
    [memdbg ][Wed May 26 12:34:04 2010][23134] Stopping of javathreads took 0.817 ms
    [memdbg ][Wed May 26 12:34:04 2010][23134] old collection 38 started
    [memdbg ][Wed May 26 12:34:04 2010][23134] Alloc Queue size before GC: 0, tlas: 0, oldest: 0
    [memdbg ][Wed May 26 12:34:04 2010][23134] Compacting 1 heap parts at index 44 (type internal) (exceptional false)
    The above log segment shows the tail of a GC which has just completed, then an object alloc delay for 75ms for thread "pool-1-thread-1", and then a subsequent GC kicks in much later which I believe is unrelated. I have a JRA trace from the test which shows that the object alloc latency event occurred almost a full second after the completion of the GC activity - something you can't see from the above trace which has second resolution in the timestamp.
    What I'm unsure of is exactly how the object alloc delay can occur and then be rectified by the JVM outside of a GC. I understood the main cause of an object alloc latency event was that memory wasn't available (i.e. TLA does not have enough free space and a new TLA cannot be allocated) and that a GC would be required to free up memory to allow either a new TLA to be allocated or free up enough space in an existing one. We see an "object alloc" latency delay which follows the above pattern after every GC so I'm guessing it must somehow be related to the GC which has just finished, but I can't figure out how. My hope is to eliminate this kind of latency delay completely or at least down to single-figure ms delays.
    Perhaps the deterministic GC means some memory reclaim is happening in parallel outside of the reported GC activity, but I'd be very surprised if this was the reason as surely the collector would be reporting it's activity more fully. It's been a while since I've looked this closedly at GC so I may have forgotten something.
    Any help you can provide in working out how to address such latency spikes would be very helpful!
    Thanks
    Stuart

    I think the extra time is due to the compaction of the heap (which occurs after a garbage collection).
    Note also that a very low pausetarget can stress the garbage collector to less appreciated behavior, when the application and the hardware or not appropriate. If you look at the application about 30% live data or less at collection time is something your application should strive at. Running with more live data might break the deterministic behavior (depending on the hardware of course).
    You can tune compaction with the determistic collector as follows,
    MEASUREMENT_ARGS="-Xverbose:gc,gcpause,memdbg"
    export MEASUREMENT_ARGS
    USER_MEM_ARGS="${MEASUREMENT_ARGS} -Xms512m -Xmx1000m -Xns256m -Xgcprio:deterministic -XpauseTarget=30ms -XXgcThreads:2 -XXtlaSize:min=2k,preferred=16k -XXcompactSetLimitPerObject:500 -XXinitialPointerVectorSize:40 -XXmaxPooledPointerVectorSize:8000 -XXpointerMatrixLinearSeekDistance:5"
    export USER_MEM_ARGS
    The last four options are used to tune compaction for the deterministic collector. In optimizing compaction try to reduce object references, because when a object is moved during compaction its references must be updated. So moving an object with a lot of references is more costly than moving an object with a few references.
    Refer to http://otndnld.oracle.co.jp/document/products/jrockit/jrdocs/pdf/refman.pdf for more information.

  • Memleak tool cannot get license for itself

    I am using BEA JRockit JDK 5.0 Update 6 (R26.4.0-63). I have copied the license from http://ftpmain.bea.com/download/pub/license/jrockit_mc/LIC-JRMC50-DEV.txt
    to c:/jrockit/jre/license.bea.
    I started my java app using the jrockit jvm, with -Xmanagement switch.
    it says JMX connector started on port 7091.
    So I start jconsole from cmdline, and connect to agent at localhost:7091.
    So far so good. But now when I start memleak tool and connect to JRockit at localhost:7091 using RJMX. First it said license file doesnt have component for the memory leak component, and later it says it has been tampered with although I am just copying the file at above site to the license.bea file. If I get rid of the file, it complains that c:/jrockit/jre/license.bea not found. So it is the correct location and name, it's just the content that is disliked.
    I copy below the exact license file content that I am using :
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <bea-licenses>
    <license-group format="1.0" product="JRockit" release="*">
    <license
    component="JRA"
    cpus="unvalued"
    expiration="never"
    hours="1"
    ip="any"
    licensee="BEA Evaluation Customer"
    serial="650522264138-1872638203592"
    type="SDK"
    signature="MCwCFCC5DUGW/KHYjfcjK1BNMzVSZ3IuAhQXwcewPrNetzBV6eYy3eeH6cKCfg=="
    />
    <license
    component="Memory Leak Detector"
    cpus="unvalued"
    expiration="never"
    hours="1"
    ip="any"
    licensee="BEA Evaluation Customer"
    serial="650522264138-1872638203592"
    type="SDK"
    signature="MC0CFELzaoNnTOu+c3zii7Odkgs/FVDkAhUAk9c3Fw2xXoAr2yJ3E3Wth5S167k="
    />
    </license-group>
    </bea-licenses>

    I can't reproduce this. I tried the steps you detailed and I used the license file you copy-pasted in. It works with no problems.
    I'm not really sure what could go wrong for you. You can try -Xverbose:license to see which licenses JRockit thinks it has. Can you start memleak without starting jconsole first? Are you using the jconsole.exe and memleak.exe in the R26.4.0-63 distribution and not some other versions?
    Regards,
    /Staffan

  • ! led ON with Amber in WAE

    Hi All,
    I have amber led ON  for  System-error (on operator information panel) in the WAE 674 box. When I log in the box , i am not finding any alarms ( Not even Minor) in the box. When i go through the syslogs , i dont see any output for any errors. I have no idea when lights started to be ON but want to know what would be the cause .
    Thanks

    This light indicates some type of hardware fault with the default.  To isolate which hardware component has failed, you'll need to remove the cover from the device.  With the cover removed and the device powered on, there will be an amber or red light next to the component (memory, etc.) that has failed.
    Regards,
    Zach

  • Component controller is consuming lots of memory

    Hi All,
    I have an WebDynpro application and a component controller (MyCompController) too where I have written most of the business specific code. The basis team informed that the component controller (MyCompController) is consuming lots of memory.
    Could anybody suggest me how to takle this problem. I dont have any other details and I am new to handle this kind of activity.
    Thanks & Regards,
    Patana

    Hi Patana
    Your controller can consume lots of memory because of lots of unnecessary data is loaded in advance and do not used actually. Try to analyze the following points:
    1. Unnecessary data is loaded into the context nodes in advance. Do not load all the data into the context in wdInit() method (do not fill in all the models too). This is not the right way. Instead try to use supply-functions for each context node with data. Supply-function will be called by Webdynpro automatically only when the data is actually required to be shown on UI.
    2. Unnecessary embedded Webdynpro components are created and loaded in memory in advance. Do not create embedded Webdynpro components manually in wdInit() method. Instead try to setup component usages with Create Mode option = OnDemand. Then Webdynpro will create the components automatically when this is really required.
    BR, Sergei

  • Warning ACPI tables not in reclaim memory

    Hi,
    When booting the system from a DCA i was getting an error
    Warning: ACPI tables not in reclaim memory
    prom_panic:Kmem_free block already free
    Entering boot debugger
    [12ff05]
    To get around this problem I downloaded the patch 110930-03 and made a image copy diskette of it and rebooted the system but it still gave me the same error.
    Then I appended the line
    setprop acpi-user-options '0x2'
    at the end of bootenv.rc and rebooted the system but still it did not work.
    I have a dell dimension 4100 system with P3 and 1GHz of RAM.It as a 40GB Hard disk of which I am using 15GB for windows 2000 server which is installed on the primary partition and rest of the space is still not partitioned.
    If anyone else has come across the same problem please let me know the workaround otherwise I will have to return the computer and buy another one.
    Thanks
    Anurag

    Interesting - usually this is a harmless (I believe) error message
    and doesn't affect operation - getting kicked into the debugger is
    new to me.
    Can you please let us know your HW config - system/mobo type and BIOS version please - I believe Sun engineers are working on this.
    Tks

Maybe you are looking for

  • Help with downloading and installing Flash Player into new Mac OS

    After spending hours installing and uninstalling flash player into my new (I have had it for 5 days) macbook pro, I need your help. I have MAC OS Snow Leopard 10.6.4  64 bit My web browser is Safari 5.0.2 ( i couldn't find whether it is 32bit or 64 b

  • Settlement profile in order confirmation

    Dear all We want to settle partial confirmation and then and there we do settlement also ,in the first settlement the Accounts are posted properly in the second , third confirmations the postings effect the Price difference account also , we need to

  • Delivery fails: "The server response was: 4.7.0 Temporary server error. Please try again later. PRX3"

    Trying to setup an Exchange 2013 server, with the DC and Exchange on same machine. WHen I try to deliver for either of the 2 mailboxes I have setup, I get this error. The server returned status code 451 - Error in processing. The server response was:

  • PSE 8 .mov files cannot play

    Hello.  I just upgraded my PC to Win 7 64bit, clean install.  I then added Itunes / quicktime.  Then I installed PSE8 and restored my catelog from a backup.  All is well except I cannot play mov files within PSE8.  My point and shoot takes HD vid cli

  • Getting and error when I zip files

    I zipped a file on my mac then uploaded it to my ftp then from there I downloaded it but not when I try unzip it, it gives me this error (Error 1 - Operation not permitted.) why is it doing this?