Space for the heap JavaFx2 OutOfMemoryError:Java

I create a simple application of JavaFx with FXML and CSS to change the theme in the user interface during execution. There are three buttons and a label in the scene. I define the different CSS for Label and ' background - fx - image "(format PNG, taille 1.23M) for BorderPane in the CSS file." " Application can change the theme in the user interface by clicking the button "Style. But Mem Usage will trigger and won't release when I click on one of the button "Style." Request will be OutOfMemoryError theme after about 30 times. I don't know how to fix it. Can someone help me?

    java.lang.OutOfMemoryError: Java heap space
     at java.awt.image.DataBufferInt.<init>(DataBufferInt.java:75)
     at java.awt.image.Raster.createPackedRaster(Raster.java:467)
     at java.awt.image.DirectColorModel.createCompatibleWritableRaster(DirectColorModel.java:1032)
     at java.awt.image.BufferedImage.<init>(BufferedImage.java:359)
     at com.sun.prism.j2d.J2DTexture.<init>(J2DTexture.java:46)
     at com.sun.prism.j2d.J2DResourceFactory.createTexture(J2DResourceFactory.java:72)
     at com.sun.prism.impl.BaseResourceFactory.createTexture(BaseResourceFactory.java:127)

My environment: jdk1.7.0_51, Windows Server 2003 x 86, 3 G of RAM

I'm sorry that I don't know how post IMG file - background.png (Pixel 1024 * 768, size 1.23 M) to the forum.

Click on the button "AutoSwitch" for auto switching theme.

Source code: Main.Java

   public class Main extends Application {
   
     private Stage primaryStage;
    
     public Stage getPrimaryStage() {
      return primaryStage;
     }
   
     public void setPrimaryStage(Stage primaryStage) {
      this.primaryStage = primaryStage;
     }
    
     private BorderPane rootPane;
    
     public BorderPane getRootPane() {
      return rootPane;
     }
   
   
     @Override
     public void start(Stage primaryStage) {
      try { 
       setPrimaryStage(primaryStage);
      
       URL url = new URL(getClass().getResource("AppFrame.fxml").toExternalForm());
    
       FXMLLoader loader =new FXMLLoader(url);
       rootPane = (BorderPane)loader.load();
      
       Scene scene = new Scene(rootPane,400,400);
      
    //   scene.getStylesheets().add(style1Url);
      
       primaryStage.setScene(scene);
      
       //MAX screen
       Screen screen = Screen.getPrimary();
       Rectangle2D bounds = screen.getVisualBounds();
    
       primaryStage.setX(bounds.getMinX());
       primaryStage.setY(bounds.getMinY());
       primaryStage.setWidth(bounds.getWidth());
       primaryStage.setHeight(bounds.getHeight());
      
       primaryStage.show();
     
       AppFrameController appFrameController = (AppFrameController)loader.getController();
       appFrameController.setAppMain(this);
      
      } catch(Exception e) {
       e.printStackTrace();
      }
     
   
     }
    
     public static void main(String[] args) {
      launch(args);
     }
    }

AppFrameController.java

    public class AppFrameController  {
        private String style1Url = getClass().getResource("FxStyle1.css").toExternalForm();
        private String style2Url = getClass().getResource("FxStyle2.css").toExternalForm();
   
        @FXML private Label lblSceneTitle;
    
        private Main appMain;
   
     public Main getAppMain() {
      return appMain;
     }
   
     public void setAppMain(Main appMain) {
      this.appMain = appMain;
     }
   
   
     private int switchCount=0;
     
     public AppFrameController()
     {
     }
    
    
   
     public void handleClickStyle1()
     {
    //  System.out.println("handleClickStyle1");
     
      ObservableList<String> stylesheets = getAppMain().getRootPane().getStylesheets();
     
    //  System.out.println("Current Style="+stylesheets);
     
      stylesheets.remove(style2Url);
      if(!stylesheets.contains(style1Url))
      {
       stylesheets.add(style1Url);
      }
     
    //  System.out.println("    New Style="+stylesheets);
     
    //  lblSceneTitle.setText("FxStyle1");
     }
    
     public void handleClickStyle2()
     {
    //  System.out.println("handleClickStyle2");
     
      ObservableList<String> stylesheets = getAppMain().getRootPane().getStylesheets();
     
    //  System.out.println("Current Style="+stylesheets);
     
      stylesheets.remove(style1Url);
      if(!stylesheets.contains(style2Url))
      {
       stylesheets.add(style2Url);
      }
     
    //  System.out.println("    New Style="+stylesheets);
     
    //  lblSceneTitle.setText("FxStyle2");
     }
   
     public void handleClickSwitch()
     {
         SwitchCssTask handleTask = new SwitchCssTask(); 
      new Thread(handleTask).start();            
     
     }
    
        private class SwitchCssTask implements Runnable {
   
      @Override
      public void run() {
       while (true) {
   
        if (switchCount % 2 == 0) {
         handleClickStyle1();
        } else {
         handleClickStyle2();
        }
   
        switchCount++;
   
        System.out.println("Switch count=" + switchCount);
        try {
         Thread.sleep(1000);
        } catch (InterruptedException e) {
         e.printStackTrace();
        }
       }
      
      }
        
        
        }
    }

AppFrame.fxml

<?xml version="1.0" encoding="UTF-8"?>

<?import java.lang.*?>
<?import java.net.*?>
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.image.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.BorderPane?>

<BorderPane prefHeight="362.0" prefWidth="749.3739013671875" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/2.2" fx:controller="application.AppFrameController">
  <!-- TODO Add Nodes -->
  <center>
    <BorderPane id="center-pane" prefHeight="-1.0" prefWidth="-1.0" BorderPane.alignment="CENTER">
      <center>
        <VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" spacing="20.0">
          <children>
            <Button mnemonicParsing="false" onAction="#handleClickStyle1" prefHeight="70.0" prefWidth="148.0" text="Style1" />
            <Button mnemonicParsing="false" onAction="#handleClickStyle2" prefHeight="70.0" prefWidth="148.0" text="Style2" />
            <Button mnemonicParsing="false" onAction="#handleClickSwitch" prefHeight="70.0" prefWidth="148.0" text="AutoSwitch" />
          </children>
        </VBox>
      </center>
    </BorderPane>
  </center>
  <stylesheets>
    <URL value="@FxStyle2.css" />
  </stylesheets>
  <top>
    <HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0" spacing="10.0" BorderPane.alignment="CENTER">
      <children>
        <Label id="scene-title" fx:id="lblSceneTitle" alignment="TOP_CENTER" prefWidth="371.0" text="Test FxStyle" />
      </children>
      <padding>
        <Insets bottom="15.0" left="12.0" right="12.0" top="15.0" />
      </padding>
    </HBox>
  </top>
</BorderPane>

FxStyle1.css

#center-pane {  -fx-background-image: url("background.png");
}

#scene-title {
    -fx-font-family: "Tahoma";
    -fx-background-insets: 0;
    -fx-text-fill: green;
    -fx-font-weight: bold;       
    -fx-font-size: 4em; 

    -fx-effect: dropshadow( one-pass-box , rgba(0,0,0,0.9) , 1, 0.0 , 0 , 1 );
}

FxStyle2.css

#center-pane {  -fx-background-image: url("background.png");
}

#scene-title {
    -fx-font-family: "Courier New";
    -fx-background-insets: 0;
    -fx-text-fill: red;
    -fx-font-weight: bold;       
    -fx-font-size: 4em; 

    -fx-effect: dropshadow( one-pass-box , rgba(0,0,0,0.9) , 1, 0.0 , 0 , 1 );
}

You change the stylesheets on a separate Thread (and not the FX Application thread), which is not allowed because it breaks the JavaFX threaded model. I highly doubt that it is the origin of the problem of memory (although it can, in theory).

There was some memory leak problems in JavaFX 2.x associated with adding and removing the leaves of style and parent nodes. Have you tried to run this code in 8 JavaFX? There the same problems? You can also try to set the style sheet on the stage instead of the scene root pane.

Either way, there is no need to implement all the ugly coupling of your Application class with the controller class. You can inject the defined root pane in the FXML directly into the controller by specifying a fx:id on this subject:


and then in the controller just do

@FXML
private BorderPane rootPane ;

Then do a

ObservableList stylesheets = rootPane.getStylesheets();

to change the style sheets in the rootPane, or

ObservableList stylesheets = rootPane.getScene().getStylesheets();

to change the style sheets in the scene.

Tags: Java

Similar Questions

  • New AOL e-mail: one quarter of the screen is blank on the right side, reducing the space for the e-mail subject line. Resize attempts do not work on the right side, so I can't expand the e-mail subject line

    The new AOL E-mail look, which yesterday began a quarter of the screen is blank on the right side, thus reducing the space for the e-mail subject line, which limits its usefulness. Resize attempts do not work on the right side, so I can't expand the e-mail subject line? Running XP pro and Mozilla Firefox 5. No problem with I.E.

    Thank you, these settings were already in place. AOL said now erase the cache, cookies and history... to solve, which worked. (I deleted the cache and a story time.)

  • HP Split x 2: not enough space for the Windows 10 update

    I have a Split of HP x 2 (64 GB SSD, drive hard 500 GB) running Windows 10.  I recently received notification of an update of Windows 10 version 1511, 10586.  Trying to install the update, I get an error message saying that Windows needs more space on C:, specifically 8.13 additional GB.

    Settings Windows reports 58.9 gb of 59.2 GB already used on C: which is 47.2 GB ' system and reserved.

    The update program says that I can use another drive for the update and I tried the built in D: (more than 200 GB free) and an external drive (900 GB free), but the update will fail with the same message outside a slight reduction in the amount required on C: (7.17 GB) of free space.

    I had already cleaned useless all the files using the Windows disk clean and have less than 6 GB in applications and data, in order to get rid of everything that would still runs.

    All GB 47.2 OS is really necessary?  Any large pieces I can get rid of, or is the only way an SSD upgrade?

    PeSke

    Only in the last day or two, MS has eliminated a new update of Win10 who, claim, addresses the problems of people said that they do not have enough disk space for the Nov 10 update and when they provide you with an external hard drive, it will not use it.

    I suggest that you are looking for updates and see if it is applied and then retry the update 10 Nov.

    Good luck

  • When will install Server 2008 Windows OS. Error Msg 0 x coming 80070070: "do not have enough space for the installation..." Even if I have 20 GB of space? Pls solve this problem immediately.

    When will install Server 2008 Windows OS. Error Msg 0 x coming 80070070: "do not have enough space for the installation..." Even if I have 20 GB of space? Pls solve this problem immediately.

    Hey Shiva,

    I suggest that you post the application on Microsoft TechNet forum because we have experts working on these issues. You can check the link to post the same query on TechNet:

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?Forum=windowsserver2008r2general

    Please do not hesitate to contact us if you have other questions related to Windows.

  • Application error "not enough of space for the environment" in Vista.

    Could not find the right answers out there for this problem. Application error "not enough of space for the environment '. I am running Windows Vista Home Premium. Thanks for your help!

    I suggest you try compatibility mode.
    If the program is not compatible, then you try to install and run the program in compatibility mode.
    Use the following steps:
    (1) right click on the program
    2) click Properties
    3) click on the Compatibility tab
    (4) select run this program in compatibility mode and select Windows Vista or other operating system, the program has been run successfully.

    Check out the link here: make sure to run older programs in this version of Windows
    http://Windows.Microsoft.com/en-us/Windows7/make-older-programs-run-in-this-version-of-Windows

    If you are running Windows 7 Professional or Ultimate version, install Windows Virtual PC and Windows XP mode (http://www.microsoft.com/windows/virtual-pc/default.aspx) and run your software in Windows XP.

    If you run Windows 7 Home Premium, you cannot run Windows XP mode, but you can try VirtualBox (www.virtualbox.org) or VMware Player (www.vmware.com), or any other 3rd party software virtualization and install a separate copy of Windows XP (family or professional edition) for this purpose. You can find the virtualization software free that will run on Windows 7 Home Premium.

    Let us know if that helps.

    Marilyn

  • Cannot find a volume with sufficient space for the extraction of the file, trying to watch a movie on netflix with Silverlight plug-in

    Install the Microsoft silverlight plug in. it's necessary to watch movies on my vista computer. When I try it is the message I get. Cannot find a volume with enough disk space for the file extraction. This is the message I get trying to watch a movie on netflix.

    Hi cardsharkha,

    I suggest you try the steps mentioned in the link below for cleaning broken Silverlight installation and check if the problem persists

    How to manually clean a broken Silverlight installation

    http://blogs.msdn.com/b/rpomeroy/archive/2008/06/10/how-to-manually-clean-up-a-bad-Silverlight-installation.aspx

    Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    How to back up and restore the registry in Windows
    http://support.Microsoft.com/kb/322756/

    Thank you, and in what concerns:

    Ajay K

    Microsoft Answers Support Engineer

    Visit our Microsoft answers feedback Forum and let us know what you think

  • Partitioning hard drive, I want to spend 30/40 GB drive and the remaining space for the creation of other partitions.

    I created a recovery disc for my system that I bought the new laptop.
    It consist of 500 GB HARD drive, now the problem is the C - drive which is my WIN7 Home Basic installed occupies 400 GB of space and the D-drive has only 25 GB.
    My problem is I want to partition the drive C so that the other player must occupy the space according to my condition.
    But here its only gives me half the space to shrink.
    I mean, when I opened diskmgmt to shrink, C this is 200 GB disk space allotted to me.
    Medium I can use this space to create other partitions, but what I want is, I want to spend 30/40 GB C drive and the remaining space for the creation of other partitions.
    Help, please... Thnks...

    That's what we tried to tell you. An OEM installation does not lend itself to change and having to clear guarantees for re-setup means that you must be quite certain that you have other reliable ways to re-setup.

    If you want to dabble with Linux or dual boot, you should buy a complete commercial edition of Windows 7 that will give you more flexibility and accept that for drivers etc, you're on your own...

  • determine the storage space for the upgrade of the APEX

    I put on my 11.2.0.3.12 level APEX APEX to APEX 4.2.4.00.08 version 3.2.1.00.12 version database.  I understand that I must perform the full upgrade, I am moving from version 3.2.x to 4.2.x.

    According to the APEX 4.2 Installation Guide for the full development environment, I have to spend in the following arguments:

    @apexins.sql tablespace_apex tablespace_files tablespace_temp images

    Where:

    • tablespace_apexis the name of the storage space for the user of the Oracle Application Express application.
    • tablespace_filesis the name of the storage space for the user to Oracle Application Express files.
    • tablespace_tempis the name of the temporary tablespace and tablespace group.
    • imagesis the virtual directory for the images of Oracle Application Express. To support future upgrades Oracle Application Express, set the directory of the virtual image that /i/ .


    How can I determine which user is the " " " User of the oracle Application Express application" and which the user is the user Oracle Application Express 'files' (if I can then watch their default storage spaces)?



    Hi Mimi Miami,

    Mimi Miami wrote:

    I put on my 11.2.0.3.12 level APEX APEX to APEX 4.2.4.00.08 version 3.2.1.00.12 version database.  I understand that I must perform the full upgrade, I am moving from version 3.2.x to 4.2.x.

    According to the APEX 4.2 Installation Guide for the full development environment, I have to spend in the following arguments:

    @apexins.sql tablespace_apex tablespace_files tablespace_temp images

    Where:

    • tablespace_apexis the name of the storage space for the user of the Oracle Application Express application.
    • tablespace_filesis the name of the storage space for the user to Oracle Application Express files.
    • tablespace_tempis the name of the temporary tablespace and tablespace group.
    • imagesis the virtual directory for the images of Oracle Application Express. To support future upgrades Oracle Application Express, set the directory of the virtual image that /i/ .

    How can I determine which user is the user Oracle Application Express 'application' and that the user is the user Oracle Application Express 'files' (so I can then look at their default storage spaces)?

    APEX 3.2.x installation that follows is users:

    • Oracle Application Express Application user: APEX_030200
    • Oracle Application Express user files: FLOW_FILES

    So to determine the tablespace_apex and the tablespace_files you must connect with the user sys with sysdba privilege and run the following query:

    SELECT USERNAME
         , DEFAULT_TABLESPACE
      FROM DBA_USERS
     WHERE USERNAME IN ('FLOWS_FILES','APEX_030200')
    

    Then use the APEX_030200 user as tablespace_apex tablespace and a tablespace of the FLOW_FILES user as tablespace_files.

    I hope this helps!

    Kind regards

    Kiran

  • When you try to install Acrobat 9 Standard to my HD Setup outboard seems stuck on C:\ and I can't move on a disk with enough space for the installation.  What can I do?

    When you try to install Acrobat 9 Standard to my HD Setup outboard seems stuck on C:\ and I can't move on a disk with enough space for the installation.  What can I do?

    You will need a bigger c. For everything that you can move there will be 10 things, you can't. Software installation puts the huge amounts of information in the Windows Installer on C database.

  • No space for the journal on the volume

    Hi guys,.

    I have a problem that does not touch anything (that I know) except my syslog flooding.

    Context of the installation.

    I have 15 x Vdisks each using TB 1.7ish. I have a 2008 Server, who introduced these disks split into a logical drive.

    It is the camera IP camera 70-80 storage. The warning that I receive in my syslog is now below.

    2012-07-16 16:05:33 local6.warning 10.20.0.61 vmkernel: 54:21:18:35.549 cpu3:52729) WARNING: J3: 1361: no space for the log volume 4ea0b5a1-ac9a861a-f047-001018ac574a ("Cam11"). Volume opens in the mode of read-only metadata with limited write support.
    2012-07-16 16:05:16 vmkernel local6.warning 10.20.0.61: 54:21:18:19.257 cpu6:9703) WARNING: J3: 1361: no space for the log volume 4ea0b580-22da22de-1fe9-001018ac574a ("Cam10"). Volume opens in the mode of read-only metadata with limited write support.
    2012-07-16 16:05 local6.warning 10.20.0.61 vmkernel: 54:21:18:02.930 cpu9:52729) WARNING: J3: 1361: no space for the log volume 4ea0b561-e1270828 - 9 d 48-001018ac574a ("Cam9"). Volume opens in the mode of read-only metadata with limited write support.
    2012-07-16 16:04:44 local6.warning 10.20.0.61 vmkernel: 54:21:17:46.631 cpu12:97999) WARNING: J3: 1361: no space for the log volume 4ea0b540-a70fd52c-d347-001018ac574a ("Cam8"). Volume opens in the mode of read-only metadata with limited write support.
    Now, I know that I could go to the v5 and might have of large single vdisks, but y at - there any fix for this?
    Thanks in advance.

    Hello

    This should explain more on the issue: http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1010931

  • Remove empty space for the search query entry

    Hi guys, I am currently using JDeveloper 11.1.2.1.0

    I created a search with the use of criteria to display, query and table, which works perfectly with success.

    But I would like to improve the research by removing the empty space for the entry. For example, search for the name (with the search operator = Contains):

    Entry: Adam-> Works Fine!
    Entered: < space > < space > Adam not work :(

    I would like to remove the empty space at the beginning of the end (trim()) part of the entry.

    Any suggestion or comments?

    Please take a look at this thread
    publish in the search criteria for the ADF

    Seems to be the same requirement.

    concerning
    Peter

  • Increase in the Allocation of disk space for the guest system

    I use v.6.5.2 from workstation.  I have a lot of excess space on the hard disk of the host system, but with hindsight I initially did not award a sufficient amount of space for the guest system. Is there a quick (and painless!) way in which I can assign storage drive increased the operating system invited without workstation removal and re-Assembly of?

    Biggar Gordon

    Houston, Texas

    If you are just looking for elements run back, I wouldn't have selected Vista for guest OS... Probably be much better to use XP Pro (SP2) than any version of Vista... On the one hand, XP uses much less space on the disk and other... You can run XP Pro (easily) on a vDisk 16-20GB... IF you're dead set on running VIsta, then get the Business edition and who perform. I would never use any of the editions home for any professional use. Windows 7 is much better than Vista (Windows 7 is commonly called "Vista done right" within the it community). I'm actually using Windows 7 Professional x 64 on two of my systems. I have a XP Pro VM on my system main for when I need either the software which is only able to turn it on, or when I need to test something. Otherwise, I stick with Win7 these days.

    Vista Home (Basic or Premium) are not exactly the wisest choice for operating systems... Especially if you work on this system...

    VMware VCP4

    Review the allocation of points for "useful" or "right" answers.

  • ODI must be installed on a remote box for the remote server managed Java EE Agents on top of WebLogic home

    I ODI 111.1.1.1.7 configuration agents of java ee on four managed servers, (two in Linux VM and other two in the virtual Windows machine) within a domain (on the Linux VM). I wonder if I need to install the ODI software on top of the WebLogic that was installed on the machine virtual windows. The version of weblogic 10.3.6(11g) and the jdk is jdk1.7.0_4 on two VMS.

    Without installation of ODI on the virtual Windows machine, I set up a new domain with four managed servers, two on localhost (vm linux) and two on the remote machine (vm windows). After testing two local managed server to work, I tried to order/unzip pack allows to transfer the managed domain servers (content servers managed with - handled = true) to the virtual machine Windows and with the field relative path specified (as WLS home directories are different between linux and windows), and I got the following error when unpacking on the virtual Windows machine Therefore, I wonder if ODI must be installed on the virtual WIndows computer (still don't think):

    C:\OraODI\product\odifmw > C:\OraODI\product\odifmw\wlserver_10.3\common\bin\unpack.cmd-domain = user_projects\domains\odi_domain-template=C:\software\odi_domain_template.jar

    The 64-bit Java Server VM Warning: ignore the option UseSpinning; support has been removed in 7.0_40

    < < "C:\software\odi_domain_template.jar" reading model > > failure: model read "C:\software\odi_domain_template.jar".

    CFGFWK-60550: Script Execution aborted. The script may contain an error. "House of component required not found for the component 'oracle.as.jrf' version ' 11.1.1.7.0 '.

    Any ideas? Please shed some light on me...

    Here's a long version debugging information if you are interested:

    2014-01-29 10:02:27, 113 DEBUG [hand] com.oracle.cie.wizard.WizardController - Assistant Controller Version 4.0.0.0 (Saruman) Started.

    2014-01-29 10:02:27, 129 DEBUG [hand] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/Assistant/i18n_wizard) in the space of names (Assistant-internal) group in the locale (en_AU).

    2014-01-29 10:02:27, 144 DEBUG [hand] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: en

    2014-01-29 10:02:27, 144 DEBUG [hand] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/Assistant/i18n_public) group in the (public) namespace in the settings regional (en_AU).

    2014-01-29 10:02:27, 160 DEBUG [hand] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:27, 160 DEBUG [hand] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/Assistant/i18n_wizard_silent) in the space of names (Assistant-internal) group in the locale (en_AU).

    2014-01-29 10:02:27, 160 DEBUG [hand] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: en

    2014-01-29 10:02:27, 519 DEBUG [hand] com.oracle.cie.wizard.WizardController - running Oracle WebLogic Configuration Wizard 7.0.0.0 silently under namespace < config >

    2014-01-29 10:02:27, 878 DEBUG [hand] com.oracle.cie.wizard.WizardController - target responsible: config

    2014-01-29 10:02:27, 893 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - Excecuting.

    2014-01-29 10:02:27, 893 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: loadNamespace-> com.oracle.cie.wizard.silent.tasks.LoadObjectStoreTask

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 003 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources, comdev, comdev) group in the namespace (comdev) in the locale (en_AU).

    2014-01-29 10:02:28, 003 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 003 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 003 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - attempt to manage the resource (resources/config/config) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28, 018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config-wls/config) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28, 018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config/config_tasks) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28, 018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 018 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 049 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config-wls/config_tasks) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28, 049 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 065 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 065 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 065 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 065 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config/config_messages) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28, 065 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 081 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28: 081 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 081 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28: 081 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - attempt to manage the resource (resources/config-wls/config_messages) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28: 081 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: loadResources-> com.oracle.cie.wizard.silent.tasks.LoadResourcesTask

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 096 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config-wls/config_messages_map) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:28, 096 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: setMessagePrefix-> com.oracle.cie.wizard.domain.silent.tasks.SetMessagePrefixTask

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 112 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: propertyFileFinder-> com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask

    2014-01-29 10:02:28, 112 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 112 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - going to get weblogic class object. Home

    2014-01-29 10:02:28, 112 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - object of the class got WebLogic. Home

    2014-01-29 10:02:28, 112 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - getPath, weblogic method Calling. Home

    2014-01-29 10:02:28, 689 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - called getPath method of weblogic. House and home is: C:/OraODI/product/odifmw/WLSERV~1.3/server

    2014-01-29 10:02:28, 689 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - fname: C:\OraODI\product\odifmw\WLSERV~1.3\.product.properties

    2014-01-29 10:02:28, 689 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - propFile: C:\OraODI\product\odifmw\WLSERV~1.3\.product.properties

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: loadNamespace-> com.oracle.cie.wizard.silent.tasks.LoadObjectStoreTask

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: loadNamespace-> com.oracle.cie.wizard.silent.tasks.LoadObjectStoreTask

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: getMode-> com.oracle.cie.wizard.silent.tasks.GetModeTask

    2014-01-29 10:02:28, 689 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: addSelectableItem_s-> com.oracle.cie.wizard.domain.silent.tasks.AddSelectableItemSilentTask

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: addSelectableItem_s-> com.oracle.cie.wizard.domain.silent.tasks.AddSelectableItemSilentTask

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: addSelectableItem_s-> com.oracle.cie.wizard.domain.silent.tasks.AddSelectableItemSilentTask

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: addSelectableItem_s-> com.oracle.cie.wizard.domain.silent.tasks.AddSelectableItemSilentTask

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: addSelectableItem_s-> com.oracle.cie.wizard.domain.silent.tasks.AddSelectableItemSilentTask

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: addSelectableItem_s-> com.oracle.cie.wizard.domain.silent.tasks.AddSelectableItemSilentTask

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:28, 705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:28, 720 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: dumpVersions-> com.oracle.cie.wizard.domain.silent.tasks.DumpVersionsTask

    2014-01-29 10:02:28, 720 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 017 DEBUG [dumpVersions] com.oracle.cie.wizard.domain.helpers.WLSVersionHelper - WebLogic Server 10.3.6.0 15 Nov 08:52:36 PST Mar 2011 1441050

    2014-01-29 10:02:29, 017 INFO [dumpVersions] com.oracle.cie.wizard.domain.silent.tasks.DumpVersionsTask-

    Common development 6.4 Thu Aug 25 17:01:47 EDT 2011 6.4.0.0 change-Id: 31463 [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev_6.4.0.0.jar]

    Common development resources in L10N (de) 6.4 Mon 9 May 13:14:44 EDT 2011 - internal generation by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.de_6.4.0.0.jar]

    Common resources of L10N development (es) 6.4 Mon 9 May 13:14:44 EDT 2011 - internal generation by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.es_6.4.0.0.jar]

    Common resources of L10N development (en) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.fr_6.4.0.0.jar]

    Resources common development L10N (it) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.it_6.4.0.0.jar]

    Common resources of L10N development (ja) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.ja_6.4.0.0.jar]

    Common resources of L10N development (ko) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.ko_6.4.0.0.jar]

    Common resources of L10N development (pt_BR) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.pt.BR_6.4.0.0.jar]

    Common resources of L10N development (zh_CN) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.zh.CN_6.4.0.0.jar]

    Common resources of L10N development (zh_TW) 6.4 Mon May 9 13:14:44 EDT 2011 - generation internal by unknown on unknown client 6.4.0.0 change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.zh.TW_6.4.0.0.jar]

    Config Assistant 7.2 Fri Aug 19 17:47:23 EDT 2011 7.2.0.0 change-Id: 31407 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config_7.2.0.0.jar]

    Resources of L10N Wizard config (de) 7.2 Mon 9 May 13:14:50 EDT 2011 - internal generation by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.de_7.2.0.0.jar]

    Resources of L10N Wizard config (es) 7.2 Mon 9 May 13:14:50 EDT 2011 - internal generation by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.es_7.2.0.0.jar]

    Resources of L10N Wizard config (en) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.fr_7.2.0.0.jar]

    Configuration Wizard L10N resources (it) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.it_7.2.0.0.jar]

    Resources of L10N Wizard config (ja) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.ja_7.2.0.0.jar]

    Resources of L10N Wizard config (ko) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.ko_7.2.0.0.jar]

    Resources of L10N Wizard config (pt_BR) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.pt.BR_7.2.0.0.jar]

    Resources of L10N Wizard config (zh_CN) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.zh.CN_7.2.0.0.jar]

    Resources of L10N Wizard config (zh_TW) 7.2 Mon May 9 13:14:50 EDT 2011 - generation internal by unknown on client 7.2.0.0 unknown change-Id?: [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.zh.TW_7.2.0.0.jar]

    Global Product Registry 3.1 Thu Feb 11 20:47:52 EAST 2010 3.1.0.0 change-Id: 27582 [C:/OraODI/product/odifmw/modules/com.oracle.cie.gpr_3.1.0.0.jar]

    Product Global Registry Impl 3.1 Thu Feb 11 20:47:55 EST 2010 3.1.0.0 change-Id: 27582 [C:/OraODI/product/odifmw/modules/com.oracle.cie.gpr-impl_3.1.0.0.jar]

    Oracle YES CIE 1.3 inventory kills 7 Sep 16:24:41 EDT 2010 1.3.0.0 change-Id: 29286 [C:/OraODI/product/odifmw/modules/com.oracle.cie.oui_1.3.0.0.jar]

    WLW cloudbase 5.3 Fri Sep 24 18:49:22 EDT 2009 5.3.0.0 change-Id: 26058 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf_5.3.0.0.jar]

    WLW cloudbase L10N resources (de) 5.3 Wed Jun 23 16:18:26 EDT 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.de_5.3.0.0.jar]

    WLW cloudbase L10N resources (es) 5.3 Wed Jun 23 16:18:26 EDT 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.es_5.3.0.0.jar]

    WLW cloudbase L10N resources (en) 5.3 Wed Jun 23 16:18:26 EDT 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.fr_5.3.0.0.jar]

    WLW cloudbase L10N resources (it) 5.3 Wed Jun 23 16:18:26 EDT 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.it_5.3.0.0.jar]

    WLW cloudbase L10N resources (ja) 5.3 Wed Feb 10 22:01:27 CEST 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.ja_5.3.0.0.jar]

    WLW cloudbase L10N resources (ko) 5.3 Wed Feb 10 22:01:27 CEST 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.ko_5.3.0.0.jar]

    WLW cloudbase L10N resources (pt_BR) 5.3 Wed Jun 23 16:18:26 EDT 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.pt.BR_5.3.0.0.jar]

    WLW cloudbase L10N resources (zh_CN) 5.3 Wed Feb 10 22:01:27 CEST 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.zh.CN_5.3.0.0.jar]

    WLW cloudbase L10N resources (zh_TW) 5.3 Wed Feb 10 22:01:27 CEST 2010 5.3.0.0 change-Id: 27525 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wlw-plaf.zh.TW_5.3.0.0.jar]

    Wizard Config of WebLogic 7.2 Mon Aug 29 11:25:24 EDT 2011 7.2.0.0 change-Id: 31488 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls_7.2.0.0.jar]

    WebLogic Configuration Wizard L10N resources (de) 7.2 kills Jul 26 16:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.de_7.2.0.0.jar]

    WebLogic Config Wizard L10N resources (es) 7.2 kills Jul 26 14:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.es_7.2.0.0.jar]

    WebLogic Config Wizard L10N resources (en) 7.2 kills Jul 26 14:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.fr_7.2.0.0.jar]

    WebLogic Setup Wizard resources L10N (it) 7.2 kills Jul 26 14:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.it_7.2.0.0.jar]

    WebLogic Config Wizard L10N resources (ja) 7.2 kills Jul 26 14:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.ja_7.2.0.0.jar]

    WebLogic Configuration Wizard L10N resources (ko) 7.2 kills Jul 26 16:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.ko_7.2.0.0.jar]

    WebLogic Configuration Wizard L10N resources (pt_BR) 7.2 kills Jul 26 16:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.pt.BR_7.2.0.0.jar]

    WebLogic Configuration Wizard L10N resources (zh_CN) 7.2 kills Jul 26 16:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.zh.CN_7.2.0.0.jar]

    WebLogic Configuration Wizard L10N resources (zh_TW) 7.2 kills Jul 26 16:36:07 EDT 2011 7.2.0.0 change-Id: 31026 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls.zh.TW_7.2.0.0.jar]

    WebLogic Config Wizard schema 7.2 Mon Aug 29 11:25:19 EDT 2011 10.3.6.0 change-Id: 31488 [C:/OraODI/product/odifmw/modules/com.oracle.cie.config-wls-schema_10.3.6.0.jar]

    Wizard framework 6.1 kills 7 Sep 16:24:30 EDT 2010 6.1.0.0 change-Id: 29286 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard_6.1.0.0.jar]

    Wizard framework L10N resources (de) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.de_6.1.0.0.jar]

    L10N Framework Assistant resources (es) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.es_6.1.0.0.jar]

    Wizard framework L10N resources (en) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.fr_6.1.0.0.jar]

    Resources of L10N Framework Assistant (it) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.it_6.1.0.0.jar]

    Wizard framework L10N resources (ja) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.ja_6.1.0.0.jar]

    Wizard framework L10N resources (ko) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.ko_6.1.0.0.jar]

    Wizard framework L10N resources (pt_BR) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.pt.BR_6.1.0.0.jar]

    Wizard framework L10N resources (zh_CN) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.zh.CN_6.1.0.0.jar]

    Wizard framework L10N resources (zh_TW) 6.1 Thu Aug 5 17:58:12 EDT 2010 6.1.0.0 change-Id: 29099 [C:/OraODI/product/odifmw/modules/com.oracle.cie.wizard.zh.TW_6.1.0.0.jar]

    Data Manager XML 2.5 kills Dec 15 20:45:35 EAST 2009 2.5.0.0 change-Id: 27027 [C:/OraODI/product/odifmw/modules/com.oracle.cie.xmldh_2.5.0.0.jar]

    WebLogic Server 10.3.6.0 Mar 15 Nov 08:52:36 PST 1441050 2011

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: setTitle-> com.oracle.cie.wizard.silent.tasks.SetTitleTask

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: getMode-> com.oracle.cie.wizard.silent.tasks.GetModeTask

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: loadScripts-> com.oracle.cie.wizard.domain.silent.tasks.LoadScriptFilesTask

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: iterator-> com.oracle.cie.wizard.silent.tasks.IteratorTask

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - task configuration: logKey-> com.oracle.cie.wizard.silent.tasks.LogKeyTask

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 032 DEBUG [logKey] com.oracle.cie.wizard.silent.tasks.LogKeyTask - scriptFileIterator.current.value key has a value of < C:\Users\BIS909~1\AppData\Local\Temp\2\tmpUnpack603348485792127080cws >

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - recovery of the next task

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - special configuration: runScript-> com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask - RunScriptTask scriptFile:C:\Users\BIS909~1\AppData\Local\Temp\2\tmpUnpack603348485792127080cws

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask - WLS_PRODUCT_VERSION = 10.3.6.0

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask - WLS_PRODUCT_SHORT_VERSION = 10.3

    2014-01-29 10:02:29, 032 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - WizardController waiting...

    2014-01-29 10:02:29, 032 DEBUG [runScript] com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask - is going to run the script: C:\Users\BIS909~1\AppData\Local\Temp\2\tmpUnpack603348485792127080cws

    2014-01-29 10:02:29, 032 DEBUG [runScript] com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask - try to run the script as a silent script

    2014-01-29 10:02:29, 235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - attempt to manage the resource (resources/config/config) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:29, 235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:29, 235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - attempt to manage the resource (resources/config-wls/config) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:29, 235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:29, 235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - attempt to manage the resource (resources/config/config_tasks) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:29, 235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:29, 251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config-wls/config_tasks) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:29, 251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:29, 251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config/config_messages) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:29, 251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:29, 251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - trying to manage the resource (resources/config-wls/config_messages) group in the namespace (config) in the locale (en_AU).

    2014-01-29 10:02:29, 251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ ResourceNamespace - actual resource Bundle managed: basic

    2014-01-29 10:02:29, 469 INFO [runScript] com.oracle.cie.domain.script.ScriptExecutor - read the model of 'C:\software\odi_domain_template.jar '.

    2014-01-29 10:02:29, 500 DEBUG [runScript] com.oracle.cie.domain.AbstractManager - the getInstance method did not exist for the class constructor by default before failing trying com.oracle.cie.domain.WLSSummaryHelper...

    2014-01-29 10:02:29, 500 DEBUG [runScript] com.oracle.cie.domain.AbstractManager - the getInstance method did not exist for the class constructor by default before failing trying com.oracle.cie.wizard.domain.helpers.WLSChoiceTaskHelper...

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - positioning product base for WebLogic Server BASE_PRODUCT_HOME=C:\OraODI\product\odifmw\wlserver_10.3 = BASE_PRODUCT_ID

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.0.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.1.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.2.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.3.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.4.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.5.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: [installed] 10.3.6.0

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product install dir: C:\OraODI\product\odifmw\wlserver_10.3

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - found the base product: ProductInfo WebLogic Server: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - products of treatment record.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.0.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.1.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.2.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.3.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.4.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: 10.3.5.0 [notinstalled]

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: WebLogic Server: [installed] 10.3.6.0

    2014-01-29 10:02:30, 218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - dependency checking product base

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - current component: Core Application Server

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - found feature on WebLogic Server dependency: 10.3.6.0

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product depends on the base product. Attempting to add the install dir to the list.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - [C:\OraODI\product\odifmw\wlserver_10.3] product installation directory is already in the list.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Workshop: 10.3.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Workshop: 10.3.1.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Enterprise Pack for Eclipse: 10.3.1.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Enterprise Pack for Eclipse: 10.3.2.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Enterprise Pack for Eclipse: 10.3.3.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Enterprise Pack for Eclipse: 10.4.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Enterprise Pack for Eclipse: 10.5.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle coherence: 3.5.3.2 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle coherence: 3.6.0.4 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle coherence: 3.7.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle coherence: 3.7.1.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle coherence: 3.7.1.1 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Infrastructure common engineering: [installed] 7.4.0.0

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Install directory is not defined. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 7.3.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 7.2.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 7.1.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 7.0.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 6.8.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 6.7.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product common: Common Infrastructure Engineering: 6.6.0.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Configuration Manager: [installed] 10.3.5.0

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Install directory is not defined. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Configuration Manager: 10.3.2.1 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Configuration Manager: 10.3.1.2 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Configuration Manager: 10.3.1.0 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product current: Oracle Enterprise Repository: 11.1.1.3 [notinstalled]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - product is not installed. Skip the product.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - directories of product installation: [C:\OraODI\product\odifmw\wlserver_10.3]

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.OracleHomeLocator - recovery of inventories

    2014 01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - GPR is available.

    2014-01-29 10:02:30, 233 DEBUG [runScript] com.oracle.cie.oui.impl.GPRInfo - information Processing GPR.

    2014-01-29 10:02:30, 249 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - C:\OraODI\product\odifmw\logs\inventory\ContentsXML\comps.xml does not exist. Jump C:\OraODI\product\odifmw\logs

    2014-01-29 10:02:30, 249 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - C:\OraODI\product\odifmw\modules\inventory\ContentsXML\comps.xml does not exist. Jump C:\OraODI\product\odifmw\modules

    2014-01-29 10:02:30, 249 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - C:\OraODI\product\odifmw\patch_wls1036\inventory\ContentsXML\comps.xml does not exist. Jump C:\OraODI\product\odifmw\patch_wls1036

    2014-01-29 10:02:30, 249 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - C:\OraODI\product\odifmw\utils\inventory\ContentsXML\comps.xml does not exist. Jump C:\OraODI\product\odifmw\utils

    2014-01-29 10:02:30, 546 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.OracleHomeLocator - treatment of inventory for C:\OraODI\product\odifmw\wlserver_10.3

    2014-01-29 10:02:30, 546 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.OracleHomeLocator - inventory is coinscrit in the registry. Jump.

    [2014-01-29 10:02:30, 546 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.OracleHomeLocator - Oracle homes:]

    2014-01-29 10:02:31, 497 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - C:\OraODI\product\odifmw\wlserver_10.3\common\lib\components.xml added for further processing.

    2014-01-29 10:02:31, 497 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - analysis: C:\OraODI\product\odifmw\wlserver_10.3\common\lib\components.xml

    2014-01-29 10:02:31, 513 [runScript] INFO com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - C:\OraODI\product\odifmw\wlserver_10.3\common\lib\components.xml does not contain the elements that make up and will be ignored

    2014-01-29 10:02:31, 513 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.WLSGlobalTemplateCatalog - attempt to determine the default template [base WebLogic Server Domain]

    2014-01-29 10:02:31, 513 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.WLSGlobalTemplateCatalog - found the first default pattern match: base WebLogic Server Domain: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\wls.jar]

    2014-01-29 10:02:31, 513 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.WLSGlobalTemplateCatalog - catalog of Tempalte created Global [C:\OraODI\product\odifmw]

    Catalogue of type REGISTRY_PROD_CAT. Product House [C:\OraODI\product\odifmw\wlserver_10.3]

    Templates:

    ==========

    WebLogic SIP - diameter topology server domain: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\diameterdomain.jar]

    WebLogic SIP - geo Topology Site 1:10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\geo1domain.jar] Server domain

    WebLogic SIP - geo Topology Site 2:10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\geo2domain.jar] Server domain

    WebLogic SIP Server domain - replicated topology with DB Persistence: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\rdbmsdomain.jar]

    WebLogic SIP Server domain - replicated topology: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\replicateddomain.jar]

    WebLogic based SIP Server Domain: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\sipserverdomain.jar]

    WebLogic Server base domain: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\wls.jar]

    WebLogic Starter: 10.3.1.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\wls_starter.jar]

    WebLogic advanced Web Services for JAX - RPC Extension: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\applications\wls_webservice.jar]

    WebLogic advanced Web Services for JAX - WS Extension: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\applications\wls_webservice_jaxws.jar]

    ======================

    Catalogue of type COMPONENTS_CAT. Product House [C:\OraODI\product\odifmw]

    Templates:

    ==========

    ======================

    Location of the base product catalog: C:\OraODI\product\odifmw\wlserver_10.3

    (Default) basic model: base WebLogic Server Domain: 10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\wls.jar]

    2014-01-29 10:02:31, 606 DEBUG [runScript] com.oracle.cie.domain.WLSTemplateBuilder - attempt at analysis of domain model in: C:\software\odi_domain_template.jar

    2014-01-29 10:02:31, 653 DEBUG [runScript] com.oracle.cie.domain.aspect.XBeanDomainTypeBuilder - loading of resources/config/xml/namespacemap.xml namespace mappings

    2014-01-29 10:02:32, 620 com.oracle.cie.domain.security.AttributeProcessor DEBUG [runScript] - security with transformation input params attributes: targetPath = null; Type = 1

    2014-01-29 10:02:32, 620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: BridgeDestination #.

    2014-01-29 10:02:32, 620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to BridgeDestination # with [Ljava.lang.String;@2d8e9b8e

    2014-01-29 10:02:32, 620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: BridgeDestination:UserPasswordEncrypted:true

    2014-01-29 10:02:32, 620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: SecurityConfiguration

    2014-01-29 10:02:32, 620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SecurityConfiguration with [Ljava.lang.String;@6d869eff attributes

    2014-01-29 10:02:32, 620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: SecurityConfiguration:NodeManagerPasswordEncrypted:false

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JMSSystemResource #-JmsResource-SAFRemoteContext #-SAFLoginContext

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JMSSystemResource # with [Ljava.lang.String;@23a83610

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: RDBMSRealm #.

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for RDBMSRealm attributes # with [Ljava.lang.String;@787566b9

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: RDBMSRealm:DatabasePasswordEncrypted:true

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: SecurityConfiguration-field #-RDBMSSecurityStore

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SecurityConfiguration with [Ljava.lang.String;@63ab3977 attributes

    2014-01-29 10:02:32, 636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process for the Kingdom # with [Ljava.lang.String;@63ab3977

    2014-01-29 10:02:32, 652 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to RDBMSSecurityStore with [Ljava.lang.String;@63ab3977

    2014-01-29 10:02:32, 652 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to RDBMSSecurityStore with [Ljava.lang.String;@63ab3977

    2014-01-29 10:02:32, 652 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: RDBMSSecurityStore:PasswordEncrypted:false

    2014-01-29 10:02:32, 667 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: Server #-SSL

    2014-01-29 10:02:32, 964 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SSL with [Ljava.lang.String;@537d147e attributes

    2014-01-29 10:02:32, 964 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: SSL:ServerPrivateKeyPassPhraseEncrypted:false

    2014-01-29 10:02:32, 964 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SSL with [Ljava.lang.String;@537d147e attributes

    2014-01-29 10:02:32, 964 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: SSL:ServerPrivateKeyPassPhraseEncrypted:false

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SSL with [Ljava.lang.String;@537d147e attributes

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: SSL:ServerPrivateKeyPassPhraseEncrypted:false

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SSL with [Ljava.lang.String;@537d147e attributes

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: SSL:ServerPrivateKeyPassPhraseEncrypted:false

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SSL with [Ljava.lang.String;@537d147e attributes

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: SSL:ServerPrivateKeyPassPhraseEncrypted:false

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: SecurityConfiguration-field #-AuthenticationProvider #.

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for SecurityConfiguration with [Ljava.lang.String;@611a5a82 attributes

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process for the Kingdom # with [Ljava.lang.String;@611a5a82

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for AuthenticationProvider attributes # with [Ljava.lang.String;@611a5a82

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for AuthenticationProvider attributes # with [Ljava.lang.String;@611a5a82

    2014-01-29 10:02:32, 995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: AuthenticationProvider:CredentialEncrypted:true

    2014-01-29 10:02:33, 010 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: WLECConnectionPool #.

    2014-01-29 10:02:33, 010 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to WLECConnectionPool # with [Ljava.lang.String;@5372ad66

    2014-01-29 10:02:33, 010 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: WLECConnectionPool:UserPasswordEncrypted:true

    2014-01-29 10:02:33, 010 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: WLECConnectionPool:ApplicationPasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JMSSystemResource #-JmsResource-ForeignServer #-ForeignConnectionFactory #.

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JMSSystemResource # with [Ljava.lang.String;@dd62e57

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JMSSystemResource #-JmsResource-ForeignServer #.

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JMSSystemResource # with [Ljava.lang.String;@687c58d9

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: server #.

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for the server attributes # with [Ljava.lang.String;@3bad4426

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params: server: DefaultIIOPPasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params: server: DefaultTGIOPPasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params: server: SystemPasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params: server: CustomIdentityKeyStorePassPhraseEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params: server: CustomTrustKeyStorePassPhraseEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params: server: JavaStandardTrustKeyStorePassPhraseEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JoltConnectionPool #.

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JoltConnectionPool # with [Ljava.lang.String;@6c553965

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JoltConnectionPool:ApplicationPasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JoltConnectionPool:UserPasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: ForeignJNDIProvider #.

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to ForeignJNDIProvider # with [Ljava.lang.String;@4f2b4d73

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: ForeignJNDIProvider:PasswordEncrypted:true

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JDBCSystemResource #-JdbcResource-JDBCDriverParams

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCSystemResource # with [Ljava.lang.String;@23e9e1a0

    2014-01-29 10:02:33, 026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for JdbcResource with [Ljava.lang.String;@23e9e1a0 attributes

    2014-01-29 10:02:33, 042 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCDriverParams with [Ljava.lang.String;@23e9e1a0

    2014-01-29 10:02:33, 042 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCDriverParams with [Ljava.lang.String;@23e9e1a0

    2014-01-29 10:02:33, 042 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JDBCDriverParams:PasswordEncrypted:false

    2014-01-29 10:02:34, 337 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for JdbcResource with [Ljava.lang.String;@23e9e1a0 attributes

    2014-01-29 10:02:34, 337 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCDriverParams with [Ljava.lang.String;@23e9e1a0

    2014-01-29 10:02:34, 337 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCDriverParams with [Ljava.lang.String;@23e9e1a0

    2014-01-29 10:02:34, 337 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JDBCDriverParams:PasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JDBCSystemResource #-JdbcResource-JDBCOracleParams

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCSystemResource # with [Ljava.lang.String;@11bbf66b

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for JdbcResource with [Ljava.lang.String;@11bbf66b attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCOracleParams with [Ljava.lang.String;@11bbf66b

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCOracleParams with [Ljava.lang.String;@11bbf66b

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JDBCOracleParams:OnsWalletPasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for JdbcResource with [Ljava.lang.String;@11bbf66b attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCOracleParams with [Ljava.lang.String;@11bbf66b

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JDBCOracleParams with [Ljava.lang.String;@11bbf66b

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JDBCOracleParams:OnsWalletPasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JdbcDataSourceFactory #.

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JdbcDataSourceFactory # with [Ljava.lang.String;@7e875d9f

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JdbcDataSourceFactory:UserPasswordEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JdbcDataSourceFactory:ApplicationPasswordEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: JMSBridgeDestination #.

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to JMSBridgeDestination # with [Ljava.lang.String;@6913b29e

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: JMSBridgeDestination:UserPasswordEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: Server #-ServerStart

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for ServerStart with [Ljava.lang.String;@c33d8f7 attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: ServerStart:PasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for ServerStart with [Ljava.lang.String;@c33d8f7 attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: ServerStart:PasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for ServerStart with [Ljava.lang.String;@c33d8f7 attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: ServerStart:PasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for ServerStart with [Ljava.lang.String;@c33d8f7 attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: ServerStart:PasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - process for ServerStart with [Ljava.lang.String;@c33d8f7 attributes

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: ServerStart:PasswordEncrypted:false

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: LDAPRealm #.

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to LDAPRealm # with [Ljava.lang.String;@1fe94663

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: LDAPRealm:CredentialEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: Server #-NetworkAccessPoint #.

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to NetworkAccessPoint # with [Ljava.lang.String;@c0c1df3

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: NetworkAccessPoint:CustomPrivateKeyPassPhraseEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to NetworkAccessPoint # with [Ljava.lang.String;@c0c1df3

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: NetworkAccessPoint:CustomPrivateKeyPassPhraseEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to NetworkAccessPoint # with [Ljava.lang.String;@c0c1df3

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: NetworkAccessPoint:CustomPrivateKeyPassPhraseEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to NetworkAccessPoint # with [Ljava.lang.String;@c0c1df3

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: NetworkAccessPoint:CustomPrivateKeyPassPhraseEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to NetworkAccessPoint # with [Ljava.lang.String;@c0c1df3

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: NetworkAccessPoint:CustomPrivateKeyPassPhraseEncrypted:true

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - treatment related security object: CustomRealm #.

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - attributes of process to CustomRealm # with [Ljava.lang.String;@6f8242b2

    2014-01-29 10:02:34, 352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - level eachTag with params process: CustomRealm:PasswordEncrypted:true

    2014-01-29 10:02:34, 555 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine - config - analyzed and validated successfully in C:\software\odi_domain_template.jar groups.xml

    2014-01-29 10:02:34, 571 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the xml fragment = 'em-main-apps' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < name dumb: library = "emcore" / >

    < con: deployment app - name = "em" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'ODI-SDK-WS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: app-deployment name="odi-sdk-ws#11.1.1.6.0.1"/ >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml ="ODI - RE' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: deployment app - name = "odiconsole" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'ODI-MASTER-DATASOURCE' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: jdbc-system-name of the resource = "odiMasterRepository" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the xml fragment = 'emai-main-apps' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < name dumb: library = "email" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'ODI-SDK-SL' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < name dumb: library = "sdk - oracle.odi #[email protected]" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'BPM-MGMT-LIBS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < [email protected] name = "oracle.bpm.mgmt # con: library" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'ODI-AGENT' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: deployment app - name = "oraclediagent" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'JRF-ADMIN-APPS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: app - name deployment = "FMW Welcome Page Application#11.1.0.0.0"/ > "

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'WEBCENTER_SKIN-ADMIN-APPS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < [email protected] name = "oracle.webcenter.skin # con: library" / >

    < / xml fragment >

    2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 586 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'WEBCENTER_COMPOSER-HAND-APPS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < [email protected] name = "oracle.webcenter.composer # con: library" / >

    < / xml fragment >

    2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'WEBCENTER_COMPOSER-ADMIN-APPS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < [email protected] name = "oracle.webcenter.composer # con: library" / >

    < / xml fragment >

    2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'ODI-WORK-DATASOURCE' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: jdbc-system-name of the resource = "odiWorkRepository" / >

    < / xml fragment >

    2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the xml fragment = 'emas-main-apps' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < name dumb: library = "emas" / >

    < / xml fragment >

    2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 602 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'WEBCENTER_SKIN-HAND-APPS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < [email protected] name = "oracle.webcenter.skin # con: library" / >

    < / xml fragment >

    2014-01-29 10:02:34, 617 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 617 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'JRF-ALL-APPS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < con: start-class name = "DMS-Startup" / >

    < con: start-class name = "Start of the context of Application of AWT class" / >

    < con: start-class name = "Starting JMX Framework class" / >

    < con: start-class name = "Start JPS class" / >

    < con: start-class name = "JOC-Startup" / >

    < con: start-class name = "JRF class start" / >

    < con: start-class name = "ODL-Startup" / >

    < con: start-class name = "Web Services Startup class" / >

    < [email protected] name = "adf.oracle.businesseditor # con: library" / >

    < name dumb: library = ' ohw - uix #[email protected] "/ >

    < [email protected] name = "oracle.bi.adf.model.slib # con: library" / >

    < [email protected] name = "oracle.jsp.next # con: library" / >

    < [email protected] name = "oracle.adf.desktopintegration.model # con: library" / >

    < [email protected] name = "oracle.bi.adf.webcenter.slib # con: library" / >

    < [email protected] name = "oracle.bi.adf.view.slib # con: library" / >

    < name dumb: library = "oracle.dconfig - infra #[email protected]" / >

    < con name="oracle.jrf.system.filter"/: library >

    < [email protected] name = "oracle.adf.management # con: library" / >

    < [email protected] name = "oracle.adf.dconfigbeans # con: library" / >

    < name dumb: library = "orai18n-adf #[email protected]" / >

    < [email protected] name = "adf.oracle.domain # con: library" / >

    < name dumb: library = "jsf #[email protected]" / >

    < [email protected] name = "adf.oracle.domain.webapp # con: library" / >

    < name dumb: library = ' ohw - FRC #[email protected] "/ >

    < name dumb: library = "jstl #[email protected]" / >

    < [email protected] name = "oracle.bi.composer # con: library" / >

    < [email protected] name = "oracle.bi.jbips # con: library" / >

    < [email protected] name = "oracle.pwdgen # con: library" / >

    < [email protected] name = "oracle.adf.desktopintegration # con: library" / >

    < name dumb: library = "UIX #[email protected]" / >

    < [email protected] name = "oracle.wsm.seedpolicies # con: library" / >

    < con: wldf-system-name of the resource = "Module-FMWDFW" / >

    < con: stop-name of the class = "DMSShutdown" / >

    < con: stop-name of the class = "JOC-stop" / >

    < con: app - name deployment = "wsil-wls" / >

    < con: app - name deployment = "DMS Application#11.1.1.1.0"/ > "

    < / xml fragment >

    2014-01-29 10:02:34, 617 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 617 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the xml fragment = 'odi-main-apps' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < name = "odi.em" / con: library >

    < / xml fragment >

    2014-01-29 10:02:34, 617 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - treated

    " 2014-01-29 10:02:34, 617 DEBUG [runScript] com.oracle.cie.domain.ConfigGroupsEngine$ ConfigGroup - < name of the fragment xml = 'ODI-AGENT-SHAREDLIBS' xmlns:con = ' http://xmlns.Oracle.com/WebLogic/config-groups "> "

    < name dumb: library = "oracle.odi - agent #[email protected]" / >

    < name dumb: library = "sdk - oracle.odi #[email protected]" / >

    < / xml fragment >

    2014-01-29 10:02:34, 633 DEBUG [runScript] com.oracle.cie.domain.jdbc.TemplateDatabaseInfoHelper - database.xml analysis...

    2014-01-29 10:02:35, 990 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - try to find a match for WebLogic Server: 10.3.6.0.0 using default minimum corresponding positions.

    2014-01-29 10:02:35, 990 DEBUG [runScript] com.oracle.cie.oui.impl.ProductHomeInventoryImpl - trying to find a match for WebLogic Server: 10.3.6.0.0 in C:\OraODI\product\odifmw\wlserver_10.3 using 2 minimum corresponding positions.

    2014-01-29 10:02:36, 006 DEBUG [runScript] com.oracle.cie.oui.impl.ProductHomeInventoryImpl - found a WebLogic_Server_10.3.6.0_wlserver_10.3 game with 5 positions from correspondent.

    2014-01-29 10:02:36, 006 com.oracle.cie.oui.impl.FMWHomeInventoryImpl DEBUG [runScript] - Final match: [WebLogic_Server_10.3.6.0_wlserver_10.3]

    2014-01-29 10:02:36, 006 com.oracle.cie.oui.impl.FMWHomeInventoryImpl [runScript] DEBUG - trying to find a match for oracle.as.jrf:11.1.1.7.0 using positions corresponding minimum default.

    2014-01-29 10:02:36, 006 com.oracle.cie.oui.impl.ProductHomeInventoryImpl [runScript] DEBUG - trying to find a match for oracle.as.jrf:11.1.1.7.0 in C:\OraODI\product\odifmw\wlserver_10.3 using 2 minimum corresponding positions.

    2014-01-29 10:02:36, 006 DEBUG [runScript] com.oracle.cie.oui.impl.ProductHomeInventoryImpl - found no match.

    [2014-01-29 10:02:36, 006 com.oracle.cie.oui.impl.FMWHomeInventoryImpl DEBUG [runScript] - Final match:]

    "2014-01-29 10:02:36, 006 ERROR [runScript] com.oracle.cie.domain.DomainTemplate - House of required component not found for the version of the component 'oracle.as.jrf' ' 11.1.1.7.0 '.

    2014-01-29 10:02:36, 006 INFO [runScript] com.oracle.cie.domain.script.ScriptExecutor - fail: read model of 'C:\software\odi_domain_template.jar '.

    2014-01-29 10:02:36, ERROR [runScript] com.oracle.cie.domain.script.ScriptExecutor 006 - read the model of 'C:\software\odi_domain_template.jar '.

    "com.oracle.cie.domain.ConfigRuntimeException: required component not found home for the version of the component 'oracle.as.jrf' ' 11.1.1.7.0 '.

    to com.oracle.cie.domain.DomainTemplate. < init > (DomainTemplate.java:257)

    to com.oracle.cie.domain.DomainTemplate. < init > (DomainTemplate.java:183)

    at com.oracle.cie.domain.WLSTemplateBuilder.parseTemplate(WLSTemplateBuilder.java:576)

    at com.oracle.cie.domain.WLSTemplateBuilder.parseDomainTemplate(WLSTemplateBuilder.java:486)

    at com.oracle.cie.domain.WLSTemplateBuilder.buildDomainTemplate(WLSTemplateBuilder.java:1386)

    at com.oracle.cie.domain.script.ScriptExecutor.readTemplate(ScriptExecutor.java:429)

    to com.oracle.cie.domain.script.ScriptParserClassic$ StateMachine.processRead (ScriptParserClassic.java:520)

    to com.oracle.cie.domain.script.ScriptParserClassic$ StateMachine.execute (ScriptParserClassic.java:426)

    at com.oracle.cie.domain.script.ScriptParserClassic.parseAndRun(ScriptParserClassic.java:148)

    at com.oracle.cie.domain.script.ScriptParserClassic.doExecute(ScriptParserClassic.java:110)

    at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:72)

    at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:35)

    at com.oracle.cie.wizard.domain.helpers.Executor.runSilentScript(Executor.java:68)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:606)

    at com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask.runScriptWithExecutor(RunScriptTask.java:558)

    at com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask.execute(RunScriptTask.java:342)

    at com.oracle.cie.wizard.silent.tasks.AbstractSilentTask.run(AbstractSilentTask.java:28)

    at java.lang.Thread.run(Thread.java:744)

    2014-01-29 10:02:36, 022 com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask ERROR [runScript] - error when running the script: C:\Users\BIS909~1\AppData\Local\Temp\2\tmpUnpack603348485792127080cws

    "com.oracle.cie.domain.script.ScriptException: com.oracle.cie.domain.ConfigRuntimeException: required component not found home for the version of the component 'oracle.as.jrf' ' 11.1.1.7.0 '.

    at com.oracle.cie.domain.script.ScriptExecutor.readTemplate(ScriptExecutor.java:465)

    to com.oracle.cie.domain.script.ScriptParserClassic$ StateMachine.processRead (ScriptParserClassic.java:520)

    to com.oracle.cie.domain.script.ScriptParserClassic$ StateMachine.execute (ScriptParserClassic.java:426)

    at com.oracle.cie.domain.script.ScriptParserClassic.parseAndRun(ScriptParserClassic.java:148)

    at com.oracle.cie.domain.script.ScriptParserClassic.doExecute(ScriptParserClassic.java:110)

    at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:72)

    at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:35)

    at com.oracle.cie.wizard.domain.helpers.Executor.runSilentScript(Executor.java:68)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:606)

    at com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask.runScriptWithExecutor(RunScriptTask.java:558)

    at com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask.execute(RunScriptTask.java:342)

    at com.oracle.cie.wizard.silent.tasks.AbstractSilentTask.run(AbstractSilentTask.java:28)

    at java.lang.Thread.run(Thread.java:744)

    "Caused by: com.oracle.cie.domain.ConfigRuntimeException: required component not found home for the version of the component 'oracle.as.jrf' ' 11.1.1.7.0 '.

    to com.oracle.cie.domain.DomainTemplate. < init > (DomainTemplate.java:257)

    to com.oracle.cie.domain.DomainTemplate. < init > (DomainTemplate.java:183)

    at com.oracle.cie.domain.WLSTemplateBuilder.parseTemplate(WLSTemplateBuilder.java:576)

    at com.oracle.cie.domain.WLSTemplateBuilder.parseDomainTemplate(WLSTemplateBuilder.java:486)

    at com.oracle.cie.domain.WLSTemplateBuilder.buildDomainTemplate(WLSTemplateBuilder.java:1386)

    at com.oracle.cie.domain.script.ScriptExecutor.readTemplate(ScriptExecutor.java:429)

    ... 15 more

    2014-01-29 10:02:36, 022 DEBUG [WizardController] com.oracle.cie.wizard.WizardController - termination.

    I found the answer myself after trying the following:

    I installed the ODI on the remote Windows VM and retried unzip and it succeeded.

    If the answer is Yes

  • El Capitan Upgrade - not enough of space for the upgrade to Photos

    HI guys.  I just upgraded my MB of 2013 at El Capitan Air, and I'm having an issue update to iPhoto to Photos.  We have the iPhoto on an external hard drive library.  When I try to update library it tells me that there is not enough space.  Of course, the obvious answer, and one that I've read here, is to get a bigger external drive.  But before I spend the $$ to do this, I want to make sure that you understand how the upgrade.  The hard drive on my Mac itself is fairly complete, so if he tries to use somehow * that * as space time to do the upgrade, it won't work even with the biggest external drive.  However, if she only cares about the space on the disk where the iPhoto library sits, a new external drive is the fix.

    Anyone know how it works?  Someone got experience with success the upgrade for the Photos on an external drive when you are main internal drive is full?

    Thanks for your help!

    Mark

    We need details to help

    How much space you have on your Mac? What format is the EHD? How is it connected? What is the exact message that you found?

    LN

  • Bootcamp lost after the new partition (try to increase disk space for the window)

    I have Version OS X El Capitan 10.11.2. Here are the details on my system.

    So I tried to increase the space in the partition for the training camp by using disk utility. I created the new partition. But now I can't bootcamp while I restart the computer and hold down the option key. I tried this in the terminal:

    sudo fdisk e/dev/disk0

    p

    setpid 4

    07

    Pavilion 4

    p

    writing or w (tried both)

    There

    But it does not seem to pick up my bootcamp windows. I also tried to restore the mac as early date of backup via external hard drive, but that doesn't seem to help either.

    Here is the screenshot of the output. Any help would be appreciated. Thank you.

    Can you post the output of the following Terminal commands?

    diskutil list

    Cs diskutil list

    sudo TPG - vv - r see the/dev/disk0

    sudo fdisk/dev/disk0

    The "sudo" commands will prompt to enter your password, and there do not appear to come back. You can also see caution against improper use 'sudo' and the potential loss of data due to an "abuse" of the order.

Maybe you are looking for