Weblogic.rmic - no IDL for business remote

Hi,
I managed to access a Weblogic EJB via RMI/IIOP and Corba. The IDLs were created with weblogic.ejbc. But weblogic.ejbc warns that it is deprecated and weblogic.rmic should be used.
So I tried that.
weblogic.rmic -idl -idlVerbose MyHome MyRemote
Unfortunately, weblogic.rmic does not generate IDLs for my business remote and home, only for spec classes like javax\ejb\RemoveEx.idl.
I tried (the wrong, I guess) sample command line from
http://download.oracle.com/docs/cd/E12840_01/wls/docs103/client/corba_idl.html#wp1065917
which uses the EJB class as argument, but this does not generate anything useful.
How should I call weblogic.rmic to get IDLs for Home and Remote Interfaces?
Thanks,
Juergen

Hi Weber, I have same issue. When I run C:\projects\workspace\SimpleEJB\build>java -cp C:\Bea\wlserver_10.3\server\lib\weblogic.jar; weblogic.appc -help from cmd wondow. It shows below contents, no idl option in it:
Usage: java weblogic.appc [options] <ear, jar, war or rar file or directory>
where options include:
-help Print the standard usage message.
-version Print version information.
-output <file> Specifies an alternate output archive or
directory. If not set, output will be
placed in the source archive or directory.
-plan <file> Specifies an optional deployment plan.
-forceGeneration Force generation of EJB and JSP classes.
Without this flag the classes may not be
regenerated if it is determined to be
unnecessary.
-quiet Turns off output except for errors
-lineNumbers Add JSP line numbers to generated class
files to aid in debugging.
-library <file> Comma-separated list of libraries. Each
library may optionally set its name and
versions, if not already set in its
manifest, using the following syntax: <file>
[@name=<string>@libspecver=<version>
@libimplver=<version|string>]
-librarydir <dir> Registers all files in specified directory
as libraries.
-writeInferredDescriptors Write out the descriptors with inferred
information including annotations.
-manifest <file> Include manifest information from specified
manifest file.
-clientJarOutputDir <dir> Specifies a directory to put generated
client jars.
-keepgenerated Keep the generated .java files.
-verbose Compile with verbose output.
-classpath <path> Classpath to use.
-source <source> Source version.
-target <target> Target version.
-advanced Print advanced usage options.

Similar Messages

  • How I can compile a ejb3 class to a idl file by the weblogic.rmic command.

    Now, I want create a idl file from a ejb3 class by the weblogic.rmic command.
    I had written a sample case. but when I compile, I get a [Class not found] error, why?
    Who can guide me or provide me with a sample?
    There is a my sample code, below.
    [Java Class/Source Path Diagram]
    Ejb3ToIdlApp\
    |---ejbModule
    | |---hello
    | | |---Hello.java (*Class implents)
    | | IHello.java (*Interface)
    | |---META-INF
    | |--- MANIFEST.MF
    | weblogic-ejb-jar.xml
    |---build
    |---classes
    |---hello
    | |---Hello.class
    | IHello.class
    |---META-INF
    |--- MANIFEST.MF
    weblogic-ejb-jar.xml
    [Interface]
    // IHello.java
    package hello;
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface IHello extends Remote {
    String sayHello() throws RemoteException;
    [Java Class]
    // Hello.java
    package hello;
    import java.rmi.RemoteException;
    public class Hello implements IHello {
    private String name;
    public Hello(String s) throws RemoteException {
    this.name = s;
    @Override
    public String sayHello() throws RemoteException {
    return "Hello ! From " + name;
    * @param args
    public static void main(String[] args) {
    int i = 0;
    try {
    for(i = 0; i < 10; i++) {
    Hello obj = new Hello("MutiHelloServer" + i);
    //Context.rebind("//sample/MutiHelloServer" + i, obj);
    } catch(Exception e) {
    System.out.println("Hello Error: " + e.getMessage());
    e.printStackTrace();
    [MANIFEST.MF]
    Manifest-Version: 1.0
    Class-Path:
    [weblogic-ejb-jar.xml]
    <?xml version="1.0" encoding="UTF-8"?>
    <wls:weblogic-ejb-jar xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-ejb-jar" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_1.xsd http://xmlns.oracle.com/weblogic/weblogic-ejb-jar http://xmlns.oracle.com/weblogic/weblogic-ejb-jar/1.3/weblogic-ejb-jar.xsd">
    <!--weblogic-version:12.1.1-->
    </wls:weblogic-ejb-jar>
    [EJB Jar]
    ejbModule.jar (* Exported from a sample, above)
    [Command Environment]
    SET WEBLOGIC_SERVER=C:\Oracle\Middleware\wlserver_12.1\server
    SET JAVA_HOME=C:\Program Files\Java\jdk1.7.0_09
    SET CLASSPATH=.;%JAVA_HOME%\jre\lib;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar;%WEBLOGIC_SERVER%\lib;%WEBLOGIC_SERVER%\lib\weblogic.jar;
    java weblogic.rmic -idl ejbModule.hello.Hello
    [execution result]
    Class not found : ejbModule.hello.Hello
    ejbModule.hello.Hello
    Help!

    Thanks for your replay.
    Before I set the classpath, I had met the ClassNotFound problem.
    My command : java -cp %WEBLOGIC_SERVER%\lib\weblogic.jar weblogic.rmic -idl ejbModule.hello.Hello
    I was afraid to lost the class that the weblogic.rmic is required, I set the classpath(java library path/class ,weblogic library path/class).
    I think the class what is not found is like my class(hello), not the class of the weblogic or java.
    Now I don't know what is requred by weblogic.rmic. Is it a class or source of "Hello", and the package name of "Hello" is requred?
    After the idl option is cut, when I execute the Command[java weblogic.rmic *---idl--* ejbModule.hello.Hello], I got the other error, below.
    (*the Hello class is in ejbModule.jar)
    C:\CORBA\test>java weblogic.rmic ejbModule.hello.Hello
    java.lang.ClassNotFoundException: ejbModule.hello.Hello
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at weblogic.rmi.rmic.Remote2Java.loadClassUsingSystemClasspath(Remote2Ja
    va.java:765)
    at weblogic.rmi.rmic.Remote2Java.loadClass(Remote2Java.java:757)
    at weblogic.rmi.rmic.Remote2Java.checkIsNotInterface(Remote2Java.java:73
    6)
    at weblogic.rmi.rmic.Remote2Java.outputs(Remote2Java.java:518)
    at weblogic.utils.compiler.CodeGenerator.generate(CodeGenerator.java:262
    at weblogic.rmic.runBody(rmic.java:64)
    at weblogic.utils.compiler.Tool.run(Tool.java:158)
    at weblogic.utils.compiler.Tool.run(Tool.java:115)
    at weblogic.rmic.main(rmic.java:142)
    ejbModule.hello.Hello must be a remote interface implementation and should exist in the classpath
    -----------------------

  • 求助 用weblogic.rmic编译生成idl文件失败,请高手帮助.

    我写了一个Remote接口,在接口的基础上编写一个EJB类,用weblogic.rmic编译生成idl文件,出现类没找到异常。找不到出错原因。请高手帮助。
    现把代码贴出.
    [Java Class/Source Path Diagram]
    Ejb3ToIdlApp\
    |---ejbModule
    | |---hello
    | | |---Hello.java (*Class implents)
    | | IHello.java (*Interface)
    | |---META-INF
    | |--- MANIFEST.MF
    | weblogic-ejb-jar.xml
    |---build
    |---classes
    |---hello
    | |---Hello.class
    | IHello.class
    |---META-INF
    |--- MANIFEST.MF
    weblogic-ejb-jar.xml
    [Interface]
    // IHello.java
    package hello;
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface IHello extends Remote {
    String sayHello() throws RemoteException;
    [Java Class]
    // Hello.java
    package hello;
    import java.rmi.RemoteException;
    public class Hello implements IHello {
    private String name;
    public Hello(String s) throws RemoteException {
    this.name = s;
    @Override
    public String sayHello() throws RemoteException {
    return "Hello ! From " + name;
    * @param args
    public static void main(String[] args) {
    int i = 0;
    try {
    for(i = 0; i < 10; i++) {
    Hello obj = new Hello("MutiHelloServer" + i);
    //Context.rebind("//sample/MutiHelloServer" + i, obj);
    } catch(Exception e) {
    System.out.println("Hello Error: " + e.getMessage());
    e.printStackTrace();
    [MANIFEST.MF]
    Manifest-Version: 1.0
    Class-Path:
    [weblogic-ejb-jar.xml]
    <?xml version="1.0" encoding="UTF-8"?>
    <wls:weblogic-ejb-jar xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-ejb-jar" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_1.xsd http://xmlns.oracle.com/weblogic/weblogic-ejb-jar http://xmlns.oracle.com/weblogic/weblogic-ejb-jar/1.3/weblogic-ejb-jar.xsd">
    <!--weblogic-version:12.1.1-->
    </wls:weblogic-ejb-jar>
    [EJB Jar]
    ejbModule.jar (* Exported from a sample, above)
    [Command Environment]
    SET WEBLOGIC_SERVER=C:\Oracle\Middleware\wlserver_12.1\server
    SET JAVA_HOME=C:\Program Files\Java\jdk1.7.0_09
    SET CLASSPATH=.;%JAVA_HOME%\jre\lib;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar;%WEBLOGIC_SERVER%\lib;%WEBLOGIC_SERVER%\lib\weblogic.jar;
    java weblogic.rmic -idl ejbModule.hello.Hello
    [execution result]
    Class not found : ejbModule.hello.Hello
    ejbModule.hello.Hello

    自己 回复下吧 。
    又重新检查了下 , 原来 要转到的供应商在这个门店没有采购信息记录。是下午的检查这个地方的时候眼花了吧。
    哎。
    让我纠结了俩小时。

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

    I am configuring ODI 111.1.1.1.7 java ee agents on four managed servers, (two in Linux VM and another two in Windows VM) within one domain (on the Linux VM). I am wondering whether I need to install ODI software on top of the WebLogic that has been installed on the windows vm. The weblogic release is 10.3.6(11g) and the jdk is jdk1.7.0_4 on both VM.
    Without ODI installation on the Windows VM, I have configured a new domain with four managed servers, two on localhost (linux vm) and two on the remote machine (windows vm). After tested two local managed server working, I have tried to use pack/unpack command to transfer the domain managed servers (managed servers contents with -managed=true) to the windows VM, and with relative domain path specified (as WLS home directories are different between linux and windows), and I have got the following error message when unpacking on the Windows VM, therefore, I am wondering whether ODI shall be installed on WIndows VM (still don't think so):
    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
    Java HotSpot(TM) 64-Bit Server VM warning: ignoring option UseSpinning; support was removed in 7.0_40
    << read template from "C:\software\odi_domain_template.jar">>  fail: read template from "C:\software\odi_domain_template.jar"
    CFGFWK-60550:  Script execution aborted. The script may contain an error. Required component home not found for component 'oracle.as.jrf' version '11.1.1.7.0'
    Any ideas? Please shed some light on me...
    The following is a long version debug info if you are interested:
    2014-01-29 10:02:27,113 DEBUG [main] com.oracle.cie.wizard.WizardController - Wizard Controller Version 4.0.0.0 (Saruman) Started.
    2014-01-29 10:02:27,129 DEBUG [main] com.oracle.cie.common.util.ResourceBundleManager - Attempting to manage resource bundle (resources/wizard/i18n_wizard) in namespace (wizard-internal) in locale (en_AU).
    2014-01-29 10:02:27,144 DEBUG [main] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: en
    2014-01-29 10:02:27,144 DEBUG [main] com.oracle.cie.common.util.ResourceBundleManager - Attempting to manage resource bundle (resources/wizard/i18n_public) in namespace (public) in locale (en_AU).
    2014-01-29 10:02:27,160 DEBUG [main] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:27,160 DEBUG [main] com.oracle.cie.common.util.ResourceBundleManager - Attempting to manage resource bundle (resources/wizard/i18n_wizard_silent) in namespace (wizard-internal) in locale (en_AU).
    2014-01-29 10:02:27,160 DEBUG [main] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: en
    2014-01-29 10:02:27,519 DEBUG [main] com.oracle.cie.wizard.WizardController - Executing Oracle WebLogic Configuration Wizard 7.0.0.0 in Silent Mode under namespace <config>
    2014-01-29 10:02:27,878 DEBUG [main] com.oracle.cie.wizard.WizardController - Loaded target: 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 - Retrieving Next Task
    2014-01-29 10:02:28,003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:28,003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Attempting to manage resource bundle (resources/comdev/comdev) in namespace (comdev) in locale (en_AU).
    2014-01-29 10:02:28,003 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:28,003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Retrieving Next Task
    2014-01-29 10:02:28,003 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Attempting to manage resource bundle (resources/config/config) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:28,018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:28,018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Retrieving Next Task
    2014-01-29 10:02:28,018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Attempting to manage resource bundle (resources/config-wls/config) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:28,018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:28,018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Retrieving Next Task
    2014-01-29 10:02:28,018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Attempting to manage resource bundle (resources/config/config_tasks) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:28,018 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:28,018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Retrieving Next Task
    2014-01-29 10:02:28,018 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Attempting to manage resource bundle (resources/config-wls/config_tasks) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:28,049 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:28,065 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Retrieving Next Task
    2014-01-29 10:02:28,065 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Attempting to manage resource bundle (resources/config/config_messages) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:28,065 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:28,081 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Retrieving Next Task
    2014-01-29 10:02:28,081 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Attempting to manage resource bundle (resources/config-wls/config_messages) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:28,081 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:28,096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Retrieving Next Task
    2014-01-29 10:02:28,096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Attempting to manage resource bundle (resources/config-wls/config_messages_map) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:28,096 DEBUG [loadResources] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:28,096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Retrieving Next Task
    2014-01-29 10:02:28,096 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:28,112 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 Class object of weblogic.Home
    2014-01-29 10:02:28,112 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - Got Class object of weblogic.Home
    2014-01-29 10:02:28,112 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - Calling getPath method of weblogic.Home
    2014-01-29 10:02:28,689 DEBUG [propertyFileFinder] com.oracle.cie.wizard.domain.silent.tasks.PropertiesFinderTask - Called getPath method of weblogic.Home and the 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 - Retrieving Next Task
    2014-01-29 10:02:28,689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:28,689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:28,689 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:28,705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:28,705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:28,705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:28,705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:28,705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:28,705 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:28,720 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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  Tue Nov 15 08:52:36 PST 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 L10N Resources (de) 6.4 Mon May 9 13:14:44 EDT 2011 - internal build by unknown on client unknown 6.4.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.de_6.4.0.0.jar]
    Common Development L10N Resources (es) 6.4 Mon May 9 13:14:44 EDT 2011 - internal build by unknown on client unknown 6.4.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.es_6.4.0.0.jar]
    Common Development L10N Resources (fr) 6.4 Mon May 9 13:14:44 EDT 2011 - internal build by unknown on client unknown 6.4.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.fr_6.4.0.0.jar]
    Common Development L10N Resources (it) 6.4 Mon May 9 13:14:44 EDT 2011 - internal build by unknown on client unknown 6.4.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.it_6.4.0.0.jar]
    Common Development L10N Resources (ja) 6.4 Mon May 9 13:14:44 EDT 2011 - internal build by unknown on client unknown 6.4.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.ja_6.4.0.0.jar]
    Common Development L10N Resources (ko) 6.4 Mon May 9 13:14:44 EDT 2011 - internal build by unknown on client unknown 6.4.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.ko_6.4.0.0.jar]
    Common Development L10N Resources (pt_BR) 6.4 Mon May 9 13:14:44 EDT 2011 - internal build by unknown on client unknown 6.4.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.pt.BR_6.4.0.0.jar]
    Common Development L10N Resources (zh_CN) 6.4 Mon May 9 13:14:44 EDT 2011 - internal build by unknown on client unknown 6.4.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.zh.CN_6.4.0.0.jar]
    Common Development L10N Resources (zh_TW) 6.4 Mon May 9 13:14:44 EDT 2011 - internal build by unknown on client unknown 6.4.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.comdev.zh.TW_6.4.0.0.jar]
    Config Wizard 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]
    Config Wizard L10N Resources (de) 7.2 Mon May 9 13:14:50 EDT 2011 - internal build by unknown on client unknown 7.2.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.de_7.2.0.0.jar]
    Config Wizard L10N Resources (es) 7.2 Mon May 9 13:14:50 EDT 2011 - internal build by unknown on client unknown 7.2.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.es_7.2.0.0.jar]
    Config Wizard L10N Resources (fr) 7.2 Mon May 9 13:14:50 EDT 2011 - internal build by unknown on client unknown 7.2.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.fr_7.2.0.0.jar]
    Config Wizard L10N Resources (it) 7.2 Mon May 9 13:14:50 EDT 2011 - internal build by unknown on client unknown 7.2.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.it_7.2.0.0.jar]
    Config Wizard L10N Resources (ja) 7.2 Mon May 9 13:14:50 EDT 2011 - internal build by unknown on client unknown 7.2.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.ja_7.2.0.0.jar]
    Config Wizard L10N Resources (ko) 7.2 Mon May 9 13:14:50 EDT 2011 - internal build by unknown on client unknown 7.2.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.ko_7.2.0.0.jar]
    Config Wizard L10N Resources (pt_BR) 7.2 Mon May 9 13:14:50 EDT 2011 - internal build by unknown on client unknown 7.2.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.pt.BR_7.2.0.0.jar]
    Config Wizard L10N Resources (zh_CN) 7.2 Mon May 9 13:14:50 EDT 2011 - internal build by unknown on client unknown 7.2.0.0 Change-Id: ?????? [C:/OraODI/product/odifmw/modules/com.oracle.cie.config.zh.CN_7.2.0.0.jar]
    Config Wizard L10N Resources (zh_TW) 7.2 Mon May 9 13:14:50 EDT 2011 - internal build by unknown on client unknown 7.2.0.0 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 EST 2010 3.1.0.0 Change-Id: 27582 [C:/OraODI/product/odifmw/modules/com.oracle.cie.gpr_3.1.0.0.jar]
    Global Product 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 CIE OUI Inventory 1.3 Tue Sep 7 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 Plaf 5.3 Thu 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 Plaf 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 Plaf 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 Plaf L10N Resources (fr) 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 Plaf 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 Plaf L10N Resources (ja) 5.3 Wed Feb 10 22:01:27 EST 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 Plaf L10N Resources (ko) 5.3 Wed Feb 10 22:01:27 EST 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 Plaf 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 Plaf L10N Resources (zh_CN) 5.3 Wed Feb 10 22:01:27 EST 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 Plaf L10N Resources (zh_TW) 5.3 Wed Feb 10 22:01:27 EST 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]
    WebLogic Config Wizard 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 Config Wizard L10N Resources (de) 7.2 Tue Jul 26 14: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 Tue 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 (fr) 7.2 Tue 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 Config Wizard L10N Resources (it) 7.2 Tue 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 Tue 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 Config Wizard L10N Resources (ko) 7.2 Tue Jul 26 14: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 Config Wizard L10N Resources (pt_BR) 7.2 Tue Jul 26 14: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 Config Wizard L10N Resources (zh_CN) 7.2 Tue Jul 26 14: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 Config Wizard L10N Resources (zh_TW) 7.2 Tue Jul 26 14: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 Tue Sep 7 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]
    Wizard Framework L10N 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 (fr) 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]
    Wizard Framework L10N Resources (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]
    XML Data Handler 2.5 Tue Dec 15 20:45:35 EST 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  Tue Nov 15 08:52:36 PST 2011 1441050
    2014-01-29 10:02:29,017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Retrieving Next Task
    2014-01-29 10:02:29,017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:29,017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:29,017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:29,017 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Retrieving Next Task
    2014-01-29 10:02:29,032 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - The key scriptFileIterator.current.value 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 - Retrieving Next Task
    2014-01-29 10:02:29,032 DEBUG [WizardController] com.oracle.cie.wizard.TargetWalker - Configuring task: 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 - Going to execute 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 silent script
    2014-01-29 10:02:29,235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - Attempting to manage resource bundle (resources/config/config) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:29,235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:29,235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - Attempting to manage resource bundle (resources/config-wls/config) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:29,235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:29,235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - Attempting to manage resource bundle (resources/config/config_tasks) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:29,235 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:29,251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - Attempting to manage resource bundle (resources/config-wls/config_tasks) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:29,251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:29,251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - Attempting to manage resource bundle (resources/config/config_messages) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:29,251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:29,251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager - Attempting to manage resource bundle (resources/config-wls/config_messages) in namespace (config) in locale (en_AU).
    2014-01-29 10:02:29,251 DEBUG [runScript] com.oracle.cie.common.util.ResourceBundleManager$ResourceNamespace - Actual Resource Bundle Managed: base
    2014-01-29 10:02:29,469 INFO  [runScript] com.oracle.cie.domain.script.ScriptExecutor - read template from "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 class class com.oracle.cie.domain.WLSSummaryHelper trying default constructor before failing...
    2014-01-29 10:02:29,500 DEBUG [runScript] com.oracle.cie.domain.AbstractManager - The getInstance method did not exist for class class com.oracle.cie.wizard.domain.helpers.WLSChoiceTaskHelper trying default constructor before failing...
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Locating base product for BASE_PRODUCT_ID=WebLogic Server BASE_PRODUCT_HOME=C:\OraODI\product\odifmw\wlserver_10.3
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: WebLogic Server:10.3.0.0 [notinstalled]
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: WebLogic Server:10.3.1.0 [notinstalled]
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: WebLogic Server:10.3.2.0 [notinstalled]
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: WebLogic Server:10.3.3.0 [notinstalled]
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: WebLogic Server:10.3.4.0 [notinstalled]
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: WebLogic Server:10.3.5.0 [notinstalled]
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: WebLogic Server:10.3.6.0 [installed]
    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 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 - Processing registry products.
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: WebLogic Server:10.3.6.0 [installed]
    2014-01-29 10:02:30,218 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Checking base product dependency
    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 component dependency on WebLogic Server: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 its install dir to the list.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Product install directory [C:\OraODI\product\odifmw\wlserver_10.3] is already in the list.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: Common Infrastructure Engineering:7.4.0.0 [installed]
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Install directory is not set. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: Oracle Configuration Manager:10.3.5.0 [installed]
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Install directory is not set. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Current product: 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. Skipping the product.
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.BEAInstDirLocator - Product install directories: [C:\OraODI\product\odifmw\wlserver_10.3]
    2014-01-29 10:02:30,233 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.OracleHomeLocator - Retrieving 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 - Processing GPR information.
    2014-01-29 10:02:30,249 DEBUG [runScript] com.oracle.cie.oui.impl.FMWHomeInventoryImpl - C:\OraODI\product\odifmw\logs\inventory\ContentsXML\comps.xml doesn't exist. Skipping 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 doesn't exist. Skipping 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 doesn't exist. Skipping 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 doesn't exist. Skipping C:\OraODI\product\odifmw\utils
    2014-01-29 10:02:30,546 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.OracleHomeLocator - Processing 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 crosslisted in the registry. Skipping.
    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 - Added C:\OraODI\product\odifmw\wlserver_10.3\common\lib\components.xml for further processing.
    2014-01-29 10:02:31,497 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - Parsing : C:\OraODI\product\odifmw\wlserver_10.3\common\lib\components.xml
    2014-01-29 10:02:31,513 INFO  [runScript] com.oracle.cie.domain.template.catalog.impl.ComponentsXMLConverter - C:\OraODI\product\odifmw\wlserver_10.3\common\lib\components.xml does not contain component elements and will be skipped
    2014-01-29 10:02:31,513 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.WLSGlobalTemplateCatalog - Attempting to determine default template [Basic WebLogic Server Domain]
    2014-01-29 10:02:31,513 DEBUG [runScript] com.oracle.cie.domain.template.catalog.impl.WLSGlobalTemplateCatalog - Found first default template match: Basic 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 - Created Global Tempalte Catalog [C:\OraODI\product\odifmw]
      Catalog of type REGISTRY_PROD_CAT. Product home [C:\OraODI\product\odifmw\wlserver_10.3]
        Templates:
        ==========
        WebLogic SIP Server Domain - Diameter Topology:10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\diameterdomain.jar]
        WebLogic SIP Server Domain - Geo Topology Site 1:10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\geo1domain.jar]
        WebLogic SIP Server Domain - Geo Topology Site 2:10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\geo2domain.jar]
        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]
        Basic WebLogic SIP Server Domain:10.3.6.0 [C:\OraODI\product\odifmw\wlserver_10.3\common\templates\domains\sipserverdomain.jar]
        Basic WebLogic Server 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]
      ======================
      Catalog of type COMPONENTS_CAT. Product home [C:\OraODI\product\odifmw]
        Templates:
        ==========
      ======================
    Base product catalog location: C:\OraODI\product\odifmw\wlserver_10.3
    Core (default) template: Basic 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 - Attempting to parse domain template in: C:\software\odi_domain_template.jar
    2014-01-29 10:02:31,653 DEBUG [runScript] com.oracle.cie.domain.aspect.XBeanDomainTypeBuilder - Loading namespace mappings from resources/config/xml/namespacemap.xml
    2014-01-29 10:02:32,620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing the security attributes with input params: targetPath=null; type=1
    2014-01-29 10:02:32,620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: BridgeDestination#
    2014-01-29 10:02:32,620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for BridgeDestination# with [Ljava.lang.String;@2d8e9b8e
    2014-01-29 10:02:32,620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: BridgeDestination:UserPasswordEncrypted:true
    2014-01-29 10:02:32,620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: SecurityConfiguration
    2014-01-29 10:02:32,620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for SecurityConfiguration with [Ljava.lang.String;@6d869eff
    2014-01-29 10:02:32,620 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: SecurityConfiguration:NodeManagerPasswordEncrypted:false
    2014-01-29 10:02:32,636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: JMSSystemResource#-JmsResource-SAFRemoteContext#-SAFLoginContext
    2014-01-29 10:02:32,636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for JMSSystemResource# with [Ljava.lang.String;@23a83610
    2014-01-29 10:02:32,636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: RDBMSRealm#
    2014-01-29 10:02:32,636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for RDBMSRealm# with [Ljava.lang.String;@787566b9
    2014-01-29 10:02:32,636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: RDBMSRealm:DatabasePasswordEncrypted:true
    2014-01-29 10:02:32,636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: SecurityConfiguration-Realm#-RDBMSSecurityStore
    2014-01-29 10:02:32,636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for SecurityConfiguration with [Ljava.lang.String;@63ab3977
    2014-01-29 10:02:32,636 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for Realm# with [Ljava.lang.String;@63ab3977
    2014-01-29 10:02:32,652 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for RDBMSSecurityStore with [Ljava.lang.String;@63ab3977
    2014-01-29 10:02:32,652 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for RDBMSSecurityStore with [Ljava.lang.String;@63ab3977
    2014-01-29 10:02:32,652 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: RDBMSSecurityStore:PasswordEncrypted:false
    2014-01-29 10:02:32,667 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: Server#-SSL
    2014-01-29 10:02:32,964 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for SSL with [Ljava.lang.String;@537d147e
    2014-01-29 10:02:32,964 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: SSL:ServerPrivateKeyPassPhraseEncrypted:false
    2014-01-29 10:02:32,964 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for SSL with [Ljava.lang.String;@537d147e
    2014-01-29 10:02:32,964 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: SSL:ServerPrivateKeyPassPhraseEncrypted:false
    2014-01-29 10:02:32,995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for SSL with [Ljava.lang.String;@537d147e
    2014-01-29 10:02:32,995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: SSL:ServerPrivateKeyPassPhraseEncrypted:false
    2014-01-29 10:02:32,995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for SSL with [Ljava.lang.String;@537d147e
    2014-01-29 10:02:32,995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: SSL:ServerPrivateKeyPassPhraseEncrypted:false
    2014-01-29 10:02:32,995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for SSL with [Ljava.lang.String;@537d147e
    2014-01-29 10:02:32,995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: SSL:ServerPrivateKeyPassPhraseEncrypted:false
    2014-01-29 10:02:32,995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: SecurityConfiguration-Realm#-AuthenticationProvider#
    2014-01-29 10:02:32,995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for SecurityConfiguration with [Ljava.lang.String;@611a5a82
    2014-01-29 10:02:32,995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for Realm# with [Ljava.lang.String;@611a5a82
    2014-01-29 10:02:32,995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for AuthenticationProvider# with [Ljava.lang.String;@611a5a82
    2014-01-29 10:02:32,995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for AuthenticationProvider# with [Ljava.lang.String;@611a5a82
    2014-01-29 10:02:32,995 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: AuthenticationProvider:CredentialEncrypted:true
    2014-01-29 10:02:33,010 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: WLECConnectionPool#
    2014-01-29 10:02:33,010 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for WLECConnectionPool# with [Ljava.lang.String;@5372ad66
    2014-01-29 10:02:33,010 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: WLECConnectionPool:UserPasswordEncrypted:true
    2014-01-29 10:02:33,010 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: WLECConnectionPool:ApplicationPasswordEncrypted:true
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: JMSSystemResource#-JmsResource-ForeignServer#-ForeignConnectionFactory#
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for JMSSystemResource# with [Ljava.lang.String;@dd62e57
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: JMSSystemResource#-JmsResource-ForeignServer#
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for JMSSystemResource# with [Ljava.lang.String;@687c58d9
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: Server#
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for Server# with [Ljava.lang.String;@3bad4426
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: Server:DefaultIIOPPasswordEncrypted:true
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: Server:DefaultTGIOPPasswordEncrypted:true
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: Server:SystemPasswordEncrypted:true
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: Server:CustomIdentityKeyStorePassPhraseEncrypted:true
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: Server:CustomTrustKeyStorePassPhraseEncrypted:true
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: Server:JavaStandardTrustKeyStorePassPhraseEncrypted:true
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: JoltConnectionPool#
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for JoltConnectionPool# with [Ljava.lang.String;@6c553965
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: JoltConnectionPool:ApplicationPasswordEncrypted:true
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: JoltConnectionPool:UserPasswordEncrypted:true
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: ForeignJNDIProvider#
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for ForeignJNDIProvider# with [Ljava.lang.String;@4f2b4d73
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: ForeignJNDIProvider:PasswordEncrypted:true
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: JDBCSystemResource#-JdbcResource-JDBCDriverParams
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for JDBCSystemResource# with [Ljava.lang.String;@23e9e1a0
    2014-01-29 10:02:33,026 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for JdbcResource with [Ljava.lang.String;@23e9e1a0
    2014-01-29 10:02:33,042 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for JDBCDriverParams with [Ljava.lang.String;@23e9e1a0
    2014-01-29 10:02:33,042 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for JDBCDriverParams with [Ljava.lang.String;@23e9e1a0
    2014-01-29 10:02:33,042 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: JDBCDriverParams:PasswordEncrypted:false
    2014-01-29 10:02:34,337 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for JdbcResource with [Ljava.lang.String;@23e9e1a0
    2014-01-29 10:02:34,337 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for JDBCDriverParams with [Ljava.lang.String;@23e9e1a0
    2014-01-29 10:02:34,337 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process attributes for JDBCDriverParams with [Ljava.lang.String;@23e9e1a0
    2014-01-29 10:02:34,337 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Process at the eachTag level with params: JDBCDriverParams:PasswordEncrypted:false
    2014-01-29 10:02:34,352 DEBUG [runScript] com.oracle.cie.domain.security.AttributeProcessor - Processing security related object: JDBCSystemResource#-JdbcResource-JDBCOracleParams
    2014-01-29 10:02:34,352 DEBUG [runScri

    I have found out the answer myself after trying the following:
    I have installed ODI on the remote Windows VM and retried unpack and it has succeeded.
    So answer is yes

  • WebLogic.ejbc vs weblogic.rmic

    [att1.html]

    Aseem Rastogi <[email protected]> writes:
    See examples/iiop/ejb/stateless/cppclient for an example of how to get
    this to work. You have to jump through hoops with VisiBroker.
       I have deployed a stateless EJB in WLS6.1sp1 / NT and I am trying to write a CPP
    Visibroker 4.5 client to acces it...
    The steps i took:
    While doing the ejbc i have given the option -idl by using
    java weblogic.ejbc -iiop -idl -idlDirectory d:\idls -idlVerbose -compiler javac
    d:\lib\my.jar -d d:\testjava\my.jar
    This file generates two IDL files xHome.idl and x.idl, x.idl contains the business method
    of my bean
    and xHome contains the ejbCreate method...
    According to documentation i can use weblogic.rmic to get these same idls however when i
    run
    java weblogic.rmic -idl -idlVerbose -idlDirectory .\idls xBean
    It creates an idl which has no business method in it but has all private variables
    defined in my bean....
    I am confused which idl file i should be using....??? as i understand if there is no
    business method in IDL my client can't call those methods on EJB..The first two are the right ones.
    I thought of going another step and try using both the idls one by one and see but
    while compiling the idl by command
    idl2cpp -I . -namespace -gen_included_files -root_dir .\corba x.idl
    i get
    idl2cpp: (warning)::CORBA::Environment declared ("orb.idl", line 28) but never defined
    idl2cpp: (warning)(references to it will be permitted, but no code will be generated for
    this definition)
    idl2cpp:IDL native type ::CORBA::AbstractBase has no known translation; generated code
    will not be valid
    ******************This is a VisiBroker bug - but I think you can safely ignore them.
    The orb.idl i am using is from VisibrokerFor C++ 4.5
    i tried compiling the orb.idl alone but got the same things..
    has anyone else seen this behaviour or i am doing smthg wrong.???andy

  • Help!  weblogic.rmic _WLStub vs. regular _Stub

    Hello,
    I have WL6.0 sp1. I want to run weblogic.rmic on a Remote class, in
    order to get the _WLStub classes.  Am I missing lots of weblogic
    classes? What jars are these in, I don't see them anywhere in
    weblogic.jar or in ./lib --
    weblogic.rmi.extensions.server.Stub
    weblogic.rmi.internal.AbstractStub
    weblogic.rmi.extensions.server.RemoteReference
    Running normal java 1.3 rmic works okay. But running
    "java weblogic.rmic" yields hundreds of these following errors --- what
    am I doing wrong?
    \WLStub4h3k3fu254q3x295u1k5i1l6u2o2g1j.java:14: cannot resolve symbol
    symbol : class AbstractStub
    location: package internal
    public class WLStub4h3k3fu254q3x295u1k5i1l6u2o2g1j extends
    weblogic.rmi.internal.AbstractStub
    ^
    Thanks for your help!
    John Eiden
    Minneapolis, Minnesota

    Hmmm.... I see all three of these classes in my weblogic.jar file for WLS
    6.0 SP1
    John Eiden wrote:
    Hello,
    I have WL6.0 sp1. I want to run weblogic.rmic on a Remote class, in
    order to get the _WLStub classes.  Am I missing lots of weblogic
    classes? What jars are these in, I don't see them anywhere in
    weblogic.jar or in ./lib --
    weblogic.rmi.extensions.server.Stub
    weblogic.rmi.internal.AbstractStub
    weblogic.rmi.extensions.server.RemoteReference
    Running normal java 1.3 rmic works okay. But running
    "java weblogic.rmic" yields hundreds of these following errors --- what
    am I doing wrong?
    \WLStub4h3k3fu254q3x295u1k5i1l6u2o2g1j.java:14: cannot resolve symbol
    symbol : class AbstractStub
    location: package internal
    public class WLStub4h3k3fu254q3x295u1k5i1l6u2o2g1j extends
    weblogic.rmi.internal.AbstractStub
    ^
    Thanks for your help!
    John Eiden
    Minneapolis, Minnesota

  • RMI for multiple remote interfaces

    We have a few classes that extend multiple remote interfaces. The stub and
    skeleton created by the weblogic rmi compiler have strange names like
    WLSkel3f2i4g44322n5l3i1r224p60697473f.class and
    WLStub3f2i4g44322n5l3i1r224p60697473f.class.
    Is this ok? How can we make it create "normal" class names?
    Thanks,
    Inbal

    try using the -nomanglednames option on the weblogic.rmic compiler.
    I think what you've got is OK - it's a result of the clever stubs weblogic
    generates for rmi.
    It's documented in the "Using weblogic RMI" guide.
    -Dominic
    Inbal Ronen wrote:
    We have a few classes that extend multiple remote interfaces. The stub and
    skeleton created by the weblogic rmi compiler have strange names like
    WLSkel3f2i4g44322n5l3i1r224p60697473f.class and
    WLStub3f2i4g44322n5l3i1r224p60697473f.class.
    Is this ok? How can we make it create "normal" class names?
    Thanks,
    Inbal

  • OneDrive for Business (on Premise) "we can't connect to the specified sharepoint site..."

    Hello
    We have SharePoint 2013 SP1 and CU Sept. 2014.
    Problem:
    When a User tries to sync with a sharepoint subsite, he gets the message above in the title until we give him at the minimum "read" permissions on the top level site collection.
    https://sitecollection/subsite <-- sync not working until read on sitecollection
    The subsite has its own permissions, it doesnt inherit anything.
    I tried to recreate this issue in our lab. What i got was this:
    http://sitecollection/subsite <-- sync doesnt work without read permission on sitecollection
    http://sitecollection/sitecollection/subsite <-- sync
    works fine even without read permission on any sitecollection (just edit on subsite)
    The question is:
    Why does it behave like this?
    I dont want to give everyone "read" permission on the root site collection. It must be an other way to sync on subsites!
    Thanks for any response! Any help appreciated!
    Regards
    SharePoint_Dude

    Hi,
    I tested the same scenario per your post in my environment, however the libraries in subsites can be synced with OneDrive for Business.
    I recommend to check the permission of the user in the subsite to see if the user has
    Use Remote Interfaces permission.
    If not, please select this and then check the results.
    More reference:
    https://nheylen.wordpress.com/2014/05/15/sync-error-we-cant-connect-to-the-specified-sharepoint-site/
    Best regards,
    Victoria Xia
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Weblogic 10.3.0 issues with remote object calls.

    All:
    I was wondering if anyone has experienced any issues with Weblogic 10.3.0 dropping initial remote object calls over AMF Secure Channel. Here are the issues we are experiencing.
    1.     FLEX applications fail consistently on the first remote object call made across the AMF Secure Channel. Resulting in the request not returning from the application server; which has had varying affects on the different applications including missing data, application freeze and general degrading of the user experience.
    2.     FLEX applications require a browser/application refresh once the application has been inactive for a certain period of time. In our experiences the behavior occurs after 30 minutes of inactivity.
    I've deployed this same code to Weblogic 10.3.3 and the behaviors go away. Are there any patches to 10.3.0 that might take care of this issue that we are not aware of?
    Thanks for you help,
    Mike

    Hello,
    I found the problem. But I needed change the target of all my datasources until discover that one of my datasource didn´t answer and no errors was trigged.
    My server was waiting this datasource, and not get started.

  • Error starting WebLogic rmic

    Hi ,
    I unable to generate the stub/skeleton in my java classes using rmic. With help of below code in build.xml file
    <taskdef name="rmic" classname="org.apache.tools.ant.taskdefs.Rmic"/>
       <rmic  base="${build.dest}" includes="**/*.class"  classpathref="compilation-classpath" compiler="weblogic" iiop="true"/>
    Below is the Error facing in cmd prompt
    Error starting WebLogic rmic
    BUILD FAILED
    C:\OPOM_CRM\CRMModule\crm\build.xml:190: Error starting WebLogic rmic:
            at org.apache.tools.ant.taskdefs.rmic.WLRmic.execute(WLRmic.java:84)
            at org.apache.tools.ant.taskdefs.Rmic.execute(Rmic.java:548)
            at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    In advance thanks for the help..
    Regards
    Basha

    Hi.
    Try posting your question on weblogic.developer.interest.portal.
    Thanks,
    Michael
    Allen Gu wrote:
    I have installed WebLogic Portal 4.0 using wlportal400_with_sp1_win.exe
    downloaded from http://www.bea.com, but when I tried to run it from Start
    menu, I got the following error:
    Starting WebLogic Server ....
    The WebLogic Server did not start up properly.
    Exception raised:
    java.lang.IllegalAccessError: try to access method
    weblogic/management/internal/
    Helper.preloadMBeanInfos()V from class weblogic/management/Admin
    at weblogic.management.Admin.initialize(Admin.java:210)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:362)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:202)
    at weblogic.Server.main(Server.java:35)
    Reason: Fatal initialization exception
    Press any key to continue . . .
    What could have gone wrong?
    Thanks,
    Allen--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Need information on how to create Idoc Inbound Interfaces for Business Sys

    Hi,
    I'm losing it.
    Can anyone point me to some documentation or an example of how to create inbound interfaces for Business Systems in PI 7.1.
    Here's the scenario
    I'm working on a B2B integration process which sends inbound idocs to an ECC 6.0 system.
    I've created the Business System communication component  but under the Inbound Interfaces it is blank.
    I want to have MBGMCR.MGBMCR03 as an inbound interface.
    But I forget how to get it there.
    For Business components you can just add the inbound interface.
    I've already defined the Business System in the SLD pointed it to the correct Tech System, imported the idoc definitions in the Enterprise Service Builder and set up IDX1, IDX2 to ensure the metadata exists in PI.
    But for Business systems the hep says that it's got to come from the SLD.
    Outbound/Inbound Interfaces
    For each business system, the interfaces that are installed on the business system are also entered in the SLD. These interfaces are displayed in this frame. You cannot add any other interfaces.
    I know I've done this before, but I can't remember how.
    Cheers,
    John

    Hi John ,
    Please have a look at the following links which might be of help to you
    PI 7.1 IDocs interfaces act as operations
    http://www.sdn.sap.com/irj/scn/weblogs;?blog=/pub/wlg/7933
    /people/peter.gutsche/blog/2008/10/27/what146s-new-in-sap-netweaver-pi-71
    There is a section in the following link on IDOC , have a look at the links in that section
    https://wiki.sdn.sap.com/wiki/display/XI/ImportantBlogsand+Notes
    Best Regards

  • Sample weblogic-ejb-jar.xml for Resource-ref EJB 3.0

    I am trying to create an MDB that can be re-used under different names.
    @MessageDriven(description = "An MDB that transfers messages from one Queue to another", activationConfig = { @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue") })
    @TransactionAttribute(TransactionAttributeType.REQUIRED)
    public class TransferMdb implements MessageListener {
    private static final Logger LOG = Logger.getLogger(TransferMdb.class);
    @Resource(name = "jms/connfactory")
    private ConnectionFactory connectionFactory;
    @Resource(name = "jms/targetDestination")
    private Queue targetDestination;
    <ejb-jar version="3.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_3_0.xsd">
    <enterprise-beans>
    <message-driven>
    <ejb-name>TransferMdb</ejb-name>
    <ejb-class>TransferMdb</ejb-class>
    </message-driven>
    </enterprise-beans>
    </ejb-jar>
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>TransferMdb</ejb-name>
    <message-driven-descriptor>
    <pool>
    <max-beans-in-free-pool>200</max-beans-in-free-pool>
    <initial-beans-in-free-pool>5</initial-beans-in-free-pool>
    </pool>
    <destination-jndi-name>test_queue</destination-jndi-name>
    <transaction-descriptor>
    <trans-timeout-seconds>20</trans-timeout-seconds>
    </transaction-descriptor>
    </message-driven-descriptor>
    <reference-descriptor>
    <resource-description>
    <res-ref-name>jms/connectionfactory</res-ref-name>
    <jndi-name>connectionfactory</jndi-name>
    </resource-description>
    <resource-description>
    <res-ref-name>jms/targetDestination</res-ref-name>
    <jndi-name>reply_queue</jndi-name>
    </resource-description>
    </reference-descriptor>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    However when I deploy the above, I get exceptions such as:
    problem: cvc-complex-type.2.4a: Expected elements 'initial-context-factory@http://www.bea.com/ns/weblogic/weblogic-ejb-jar provider-url@http://www.bea.com/ns/weblogic/weblogic-ejb-jar connection-factory-jndi-name@http://www.bea.com/ns/weblogic/weblogic-ejb-jar jms-polling-interval-seconds@http://www.bea.com/ns/weblogic/weblogic-ejb-jar jms-client-id@http://www.bea.com/ns/weblogic/weblogic-ejb-jar generate-unique-jms-client-id@http://www.bea.com/ns/weblogic/weblogic-ejb-jar durable-subscription-deletion@http://www.bea.com/ns/weblogic/weblogic-ejb-jar max-messages-in-transaction@http://www.bea.com/ns/weblogic/weblogic-ejb-jar distributed-destination-connection@http://www.bea.com/ns/weblogic/weblogic-ejb-jar use81-style-polling@http://www.bea.com/ns/weblogic/weblogic-ejb-jar init-suspend-seconds@http://www.bea.com/ns/weblogic/weblogic-ejb-jar max-suspend-seconds@http://www.bea.com/ns/weblogic/weblogic-ejb-jar security-plugin@http://www.bea.com/ns/weblogic/weblogic-ejb-jar' instead of 'transaction-descriptor@http://www.bea.com/ns/weblogic/weblogic-ejb-jar' here in element message-driven-descriptor@http://www.bea.com/ns/weblogic/weblogic-ejb-jar:<null>
    problem: cvc-complex-type.2.4a: Expected elements 'transaction-descriptor@http://www.bea.com/ns/weblogic/weblogic-ejb-jar iiop-security-descriptor@http://www.bea.com/ns/weblogic/weblogic-ejb-jar resource-description@http://www.bea.com/ns/weblogic/weblogic-ejb-jar resource-env-description@http://www.bea.com/ns/weblogic/weblogic-ejb-jar ejb-reference-description@http://www.bea.com/ns/weblogic/weblogic-ejb-jar service-reference-description@http://www.bea.com/ns/weblogic/weblogic-ejb-jar enable-call-by-reference@http://www.bea.com/ns/weblogic/weblogic-ejb-jar network-access-point@http://www.bea.com/ns/weblogic/weblogic-ejb-jar clients-on-same-server@http://www.bea.com/ns/weblogic/weblogic-ejb-jar run-as-principal-name@http://www.bea.com/ns/weblogic/weblogic-ejb-jar create-as-principal-name@http://www.bea.com/ns/weblogic/weblogic-ejb-jar remove-as-principal-name@http://www.bea.com/ns/weblogic/weblogic-ejb-jar passivate-as-principal-name@http://www.bea.com/ns/weblogic/weblogic-ejb-jar jndi-name@http://www.bea.com/ns/weblogic/weblogic-ejb-jar local-jndi-name@http://www.bea.com/ns/weblogic/weblogic-ejb-jar dispatch-policy@http://www.bea.com/ns/weblogic/weblogic-ejb-jar remote-client-timeout@http://www.bea.com/ns/weblogic/weblogic-ejb-jar stick-to-first-server@http://www.bea.com/ns/weblogic/weblogic-ejb-jar' instead of 'reference-descriptor@http://www.bea.com/ns/weblogic/weblogic-ejb-jar' here in element weblogic-enterprise-bean@http://www.bea.com/ns/weblogic/weblogic-ejb-jar:<null>
    at weblogic.descriptor.internal.MarshallerFactory$1.evaluateResults(MarshallerFactory.java:234)
    at weblogic.descriptor.internal.MarshallerFactory$1.evaluateResults(MarshallerFactory.java:221)
    at weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:146)
    at weblogic.descriptor.BasicDescriptorManager.createDescriptor(BasicDescriptorManager.java:306)
    at weblogic.application.descriptor.AbstractDescriptorLoader2.getDescriptorBeanFromReader(AbstractDescriptorLoader2.java:788)
    Truncated. see log file for complete stacktrace
    I am clearly missing items in the weblogic-ejb-jar.xml. If anyone has a sample or tips, that would be awesome as a starting point.

    Those tags just declare that you are using our CMP provider and that
    your descriptor is in META-INF/weblogic-cmp-rdbms-jar.xml.
    FWIW, you might also want to check out EJBGen. It tends to keep more up
    to date with WLS than xdoclet.
    -- Rob
    Gen wrote:
    I am using xdoclets to generate descriptor file weblogic-ejb-jar.xml
    for a BMP entity bean. Xdoclet is generating the descriptor file
    alright, but is putting the following extra tags. This happens even
    for samples which come with the download, so my tags in java file are
    not wrong.
    My question is, are the extra tags below harmless, or should I
    manually go to each desciptor file and remove them?
    Thanks.
    ----------- EXTRA TAGS GENERATED START ---------
    persistence> <persistence-type>
    <type-identifier>WebLogic_CMP_RDBMS</type-identifier>
    <type-version>6.0</type-version>
    <type-storage>META-INF/weblogic-cmp-rdbms-jar.xml</type-storage>
    </persistence-type>
    <persistence-use>
    <type-identifier>WebLogic_CMP_RDBMS</type-identifier>
    <type-version>6.0</type-version>
    </persistence-use>
    </persistence>
    ----------- EXTRA TAGS GENERATED END ---------
    ----------- TAGS I PUT IN JAVA CLASS START --------
    * @ejb:bean name="com.ejb.entity.Customer"
    * jndi-name="com.ejb.entity.CustomerHome"
    * view-type="remote"
    * type="BMP"
    * primkey-field="com.ejb.entity.CustomerPK"
    * reentrant="false"
    * @weblogic:cache
    * max-beans-in-cache="1000"
    * read-timeout-seconds="900"
    * concurrency-strategy="ReadOnly"
    ----------- TAGS I PUT IN JAVA CLASS END --------

  • Adding weblogic.rmic to ANT Script

    Hi !
    Any examples to illustrate adding the weblogic.rmic to the Ant build ???
    All that I know is that i can use rmic which is one of the built-in tasks.
    Would i have to use exec instead.
    I'm referring to this URL.. http://jakarta.apache.org/ant/manual/
    Click on built-in tasks.
    Refer to Rmic and Exec.
    Thanks in advance,
    kulkis

    Try this:
    <target name="rmi" depends="compile">
    <echo message="========== RMI compilation of the given classes" />
    <!-- Compile the rmi stubs and skeletons -->
    <!-- rmic base="${classes}" classname ="fi.sonera.ccbs.framework.mvc.rmi.RMICommandImpl"
    sourcebase="${stubs}" /-->
    <java classname="weblogic.rmic">
         <arg value="-d"/>
         <arg value="-iiop"/>
         <arg value="${classes}"/>
         <arg value="fi.sonera.ccbs.framework.mvc.rmi.RMICommandImpl"/>
    </java>
    </target>
    Don Ferguson <[email protected]> wrote:
    Actually, I believe the examples exec a separate VM. I've written ant
    tasks to run
    rmic/ejbc within the ant vm, but unfortunately those are not yet available
    for public
    consumption.
    Andy Piper wrote:
    "kulkis" <[email protected]> writes:
    Hi ! Any examples to illustrate adding the weblogic.rmic to the Ant
    build ???
    All that I know is that i can use rmic which is one of the built-intasks. Would
    i have to use exec instead.
    I'm referring to this URL.. http://jakarta.apache.org/ant/manual/
    Click on built-in
    tasks. Refer to Rmic and Exec.The examples in WLS 6.1 do this. I don't know whether they made the
    beta - but you could pull it down and take a look.
    andy

  • Weblogic.rmic and ant integration issue

    I am trying to call weblogic.rmic compiler through a ant script and was
    sucessful in doing so and generating the stubs and skelton for my RMI
    implementation.
    But i also want to pass a system property value (in the example i am passing
    file=stdout using -D to java) to weblogic.rmi compiler and don't know how to
    do that.
    Any help will be greatly appreciated...
    Thanks
    Kunjan Jhaveri
    781-372-3965
    [email protected]
    PS: Script enclosed.
    <target name="local.genStubs" depends="local.compile">
    <java classname="weblogic.rmic" fork="yes" failonerror="yes">
    <jvmarg value="-Dfile=stdout" />
    <arg value="-classpath" />
    <arg value="${WL_HOME}${file.separator}lib${file.separator}weblogic.jar" />
    <arg value="-d" />
    <arg value="${SRCDIR}${file.separator}build${file.separator}classes" />
    <arg value="com.ehealthdirect.ee.kernel.EEMutexManagerImpl" />
    <classpath>
    <pathelement
    path="${WL_HOME}${file.separator}lib${file.separator}weblogic.jar" />
    </classpath>
    </java>
    </target>

    As far as I know, rmic doesn't know anything about a "file" system property. Is
    there some reason you expect this to do something special?
    Kunjan Jhaveri wrote:
    I am trying to call weblogic.rmic compiler through a ant script and was
    sucessful in doing so and generating the stubs and skelton for my RMI
    implementation.
    But i also want to pass a system property value (in the example i am passing
    file=stdout using -D to java) to weblogic.rmi compiler and don't know how to
    do that.
    Any help will be greatly appreciated...
    Thanks
    Kunjan Jhaveri
    781-372-3965
    [email protected]
    PS: Script enclosed.
    <target name="local.genStubs" depends="local.compile">
    <java classname="weblogic.rmic" fork="yes" failonerror="yes">
    <jvmarg value="-Dfile=stdout" />
    <arg value="-classpath" />
    <arg value="${WL_HOME}${file.separator}lib${file.separator}weblogic.jar" />
    <arg value="-d" />
    <arg value="${SRCDIR}${file.separator}build${file.separator}classes" />
    <arg value="com.ehealthdirect.ee.kernel.EEMutexManagerImpl" />
    <classpath>
    <pathelement
    path="${WL_HOME}${file.separator}lib${file.separator}weblogic.jar" />
    </classpath>
    </java>
    </target>

  • Patch management for your remote/mobile workforce

    Curious to know how folks are handling patch management for their remote users. Many of my laptop users are not tied to our local office or even to our VPN connection. They are however more often than not connected to the internet so it would be nice to find a patching product that can patch them over the internet. I know logmein has a patch management module but there's no way I'm upgrading to that level.
    Any other options out there?
    This topic first appeared in the Spiceworks Community

    873768 wrote:
    Hi, gurus:
    What is a good Apps DBA should be doing as far as it relates to patch management. What are the proactive tasks we would perform, what are the
    monthly deliverables we would provide, etc?
    Thank you for your advice in advance.
    What's the Best Way to Patch an E-Business Suite Environment?
    https://blogs.oracle.com/stevenChan/entry/general_patching_strategies_for_e
    Identifying Recommended Patches for E-Business Suite Environments
    https://blogs.oracle.com/stevenChan/entry/recommended_patches_for_oracle_e
    Oracle Applications Current Patchset Comparison Utility - patchsets.sh [ID 139684.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Error when trying to sign in on mobile phone

    Dear Admin, I want to browse the ORACLE ADF FORUMS in my mobile phone (nokia x2-01 with UC and Opera mini Browser), the forum page opens correctly but when i try to signin it gives me error. ORACLE ACCESS MANAGER ERROR: System error. Please re-try yo

  • I need to transfer video from a Sony DCR-TRV530 to iMovie11.

    I have successfully transfered my Sony-produced video tape to my older iMac, but now that I have changed to a new iMac with OS 10.8.3, I can no longer do the transfer. Apple's guidance has not helped. What do I do now?

  • [AS2 CS3/4] Embed external FLV into an MC using AS2 with timeline control

    Hi, Is there anyway to skip the process of manually embedding FLVs into SWF files? I want to load FLVs just as I would an external SWF. I've searched all over and all i can find is how to load FLVs into a FLVPlayer component with stop, play and contr

  • Oracle RAC 11g On Window Server 2003 Installation Step by Step

    Hi all I tired searching onlie to get steps of installationg Oracle RAC 11g On Window Server 2003 I have tow nodes EMC storage Any body can help please ... Thanks in Advance. Edited by: MHAIDAR on Jun 15, 2011 1:19 AM

  • Set the value of a CWNumEdit Control from within the code

    I am trying to update a CWNumEdit Control with data created during program execution.  I am using the set_Text function but it does not seem to be working.  I was wondering if there is something that I am missing to get this functionality to work.  P