JAXB installation

While installing JAXB if we dont select Tomcat 5.0 as web container, what is the alternative for use as the web container. is it necessary to use web container. How can we know whether JAXB is successfully installed. What is the syntax through which we can see the index page of JAXB through browser

Hi Bhakti,
Thanks for the help. The java file did compile succesfully.
I am generating the XML document alone from the object tree(itself an object). I am not doing any unmarshalling at this stage.
But when I marshall, It fails to generate. throws an exception that
" Unable to locate jaxb.properties for package my-package-name"
I am unable to understand whats the need of package name in the command below.
JAXBContext jc = JAXBContext.newInstance( "RBML" );
How could I do that?
My code is pasted below.
JAXBContext jc = JAXBContext.newInstance( "RBML" );
Marshaller m = jc.createMarshaller();
m.marshal( rbmodel, System.out );
Thanks
Gagan

Similar Messages

  • WTF DO THESE JAXB INSTALLATION NOTES MEAN?

    Hello,
    I need help installing JAXB, since i don't understand the installation instructions:
    My JAXB is located in the directory "C:\jaxb-1.0-ea" and java is located at "C:\jdk1.3.1_02"
    Could somebody please explain these 3 steps to me? thanks!!
    (1). Define the environment variable JAVA_HOME to name the location of your previously-installed J2SE distribution, for example, /usr/local/jdk1.3.1.
    (2). Assuming that $DIR names the directory in which you unbundled the release, define a shell alias xjc that expands to $DIR/jaxb-1.0-ea/bin/xjc.
    (3). Define the environment variable CLASSPATH to have the value .:$DIR/jaxb-1.0-ea/lib/jaxb-rt-1.0-ea.jar.thanks for your help!

    hi, thanks for your help but im still confused on some parts:
    (1). Define the environment variable JAVA_HOME to name the location of your previously->>intalled J2SE distribution, for example, /usr/local/jdk1.3.1.The command for this step will look something like
    this
    set JAVA_HOME=C:\jdk1.3.1_02
    This basically sets the environment variable to the
    value "C:\jdk1.3.1_02". JAXB will access this
    environment variable to access the javac,java,....Q. where do i do this at? on the PATH?
    (2). Assuming that $DIR names the directory in which
    you unbundled the release, define a shell alias xjc
    that expands to $DIR/jaxb-1.0-ea/bin/xjc.The command for this step will look something like
    this
    set xjc=C:\jaxb-1.0-ea\jaxb-1.0-ea\bin\xjcQ. where do i define a shell alias? and what does that mean?
    (3). Define the environment variable CLASSPATH to have the value.:$DIR/jaxb-1.0-ea/lib/jaxb-rt-1.0-ea.jar.Q. So i just add C:\\jaxb-1.0-ea/lib/jaxb-rt-1.0-ea.jar; to my classpath?
    thanks

  • Advice on making a standalone JAXB installation

    Sorry for the probably trivial question, but I am new to JAXB... I am developping a scientific application which uses XML style for in and out files. I used to create XML files with crude println's and read XML files with the DocumentBuilder tools. The application is not Web oriented.
    My 2 small questions are (I am not expecting more than "yes" or "no" answers):
    -Would you recommend me to move to JAXB? (I have successfully run some of the samples in the jwsdp1.6)
    -Would my colleagues willing to use my application have to get their hands "dirty" by incorporating all the jar files required (e.g. JAXB/lib, JAXP/lib, jwsdp-1.6-share/lib, j2sdk1.5/jre/lib/endorsed) in their java space?
    Your advice will be very much appreciated,
    Xavier

    Hello all,
    I am still curious about this. I haven't had much time of late to work on it though, so I don't really have any update news.
    I am planning to go ahead and rip all the DV tapes that I have (about 30 of them) to the computer any day now.
    Using Kino I do want to capture to rawDV and not .avi, to get the best quality, and to cut down on the amount of times the video gets converted correct?
    What reasons would there be for capturing to .avi instead? Lack of space? Just to keep the files on the computer as .avi's?
    Also what interlacing option would you recommend?
    Thanks for any advice.
    *** I think I am gonna go ahead and go with rawDV for the captures. Also I just noticed something. I don't think the interlacing option in Kino is relevant to how it is captured, simply how the preview is played while it's happening. Is this correct? In which case all I have to worry about the interlacing on is the final version that I export to DVD from Cinelerra?
    Last edited by The Avatar of Time (2008-08-18 22:41:18)

  • How to compile the Java classes generated in JAXB

    I am using Windows 2000 Operating System. I found a xjc
    batch file on the sun's java forum.
    I used that to generate classes from XML. After generating
    the classes I could not compile
    the classes each depends on other AND THEY REQUIRE BOTH
    CLASS FILES.
    I will attach the schema file and dtd . Can you explaine me the problem.
    #<transactions.dtd>
    <?xml version="1.0" encoding="UTF-8"?>
    <!ELEMENT transactions (cardtocard*)>
    <!ELEMENT cardtocard (tocard, fromcard, fromcardver, amount, transdate, transid)
    >
    <!ELEMENT tocard (#PCDATA)>
    <!ELEMENT fromcard (#PCDATA)>
    <!ELEMENT fromcardver (#PCDATA)>
    <!ELEMENT amount (#PCDATA)>
    <!ELEMENT transdate (#PCDATA)>
    <!ELEMENT transid (#PCDATA)>
    transactions.xjs
    <xml-java-binding-schema>
    <element name="transactions" type="class" root="true"/>
    <element name="cardtocard" type="class"/>
    </xml-java-binding-schema>
    XML file
    ?xml version="1.0" encoding="UTF-8"?>
    <!--Sample XML file generated by XML Spy v4.4 U (http://www.xmlspy.com)-->
    <transactions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="C:\My Documents\Xml\SVTConcord.xsd">
    <cardtocard>
    <tocard>1111222233334444</tocard>
    <fromcard>6666777788889999</fromcard>
    <fromcardver>567</fromcardver>
    <amount>100.00</amount>
    <transdate>2002-06-04 00:00:00.000</transdate>
    <transid>1111222202</transid>
    </cardtocard>
    </transactions>
    the XJC compiler for windows is
    @echo off
    echo JAXB Schema Compiler
    echo --------------------
    if "%JAVA_HOME%" == "" goto errorJVM
    if "%JAXB_HOME%" == "" goto errorJAXB
    set JAXB_LIB=%JAXB_HOME%\lib
    set JAXB_CLASSES=%JAXB_HOME%\classes
    echo %JAVA_HOME%\bin\java.exe -jar %JAXB_LIB%\jaxb-xjc-1.0-ea.jar %1 %2 %3 %4 %5
    %JAVA_HOME%\bin\java.exe -jar %JAXB_LIB%\jaxb-xjc-1.0-ea.jar %1 %2 %3 %4 %5
    goto end
    :errorJVM
    echo ERROR: JAVA_HOME not found in your environment.
    echo Please, set the JAVA_HOME variable in your environment to match the
    echo location of the Java Virtual Machine you want to use.
    echo For example:
    echo set JAVA_HOME=c:\jdk1.4.0_01
    goto end
    :errorJAXB
    echo ERROR: JAXB_HOME not found in your environment.
    echo Please, set the JAXB_HOME variable in your environment to match the
    echo location of the JAXB installation directory.
    echo For example:
    echo set JAXB_HOME=c:\jdk1.4.0_01\jaxb-1.0-ea
    :end

    When you compile the generated classes, be sure to put jaxb-rt-1.0-ea.jar in your classpath!

  • OBIEE Simple Installation on Windows 7 Home Premium Edition 64 bit - Hangs

    on Create Domain Step
    I have been trying to install OBIEE Simple Installation on Windows 7 Home Premium Edition 64 bit - Hangs on Create Domain Step.
    Java is installed on root director. I have incease the Java Memory to 2084MB. Still hangs. I have also tried software only install and that also fails at Start Admin server step. I have also tried to configure thru Config.bat file and it does not recognize the weblogic server. Any help is appreciated.
    Here are the log files.
    [2012-05-06T16:38:13.288-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] Assigning value:false to variable:WLS_SINGLE_SERVER_INSTALL
    [2012-05-06T16:38:13.350-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] Setting valueOf(DOMAIN_HOSTNAME) to:suman-HP. Value obtained from:USER
    [2012-05-06T16:38:13.397-04:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] Using custom properties file oracle/as/install/bi/config/consumer.properties
    [2012-05-06T16:38:13.709-04:00] [as] [TRACE:16] [] [oracle.as.install.bi] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] [SRC_CLASS: oracle.as.install.bi.biconfig.BIConfigMain] [SRC_METHOD: doExecute] ENTRY
    [2012-05-06T16:38:14.848-04:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] Assigning Port: 7001 to: DOMAIN_PORT
    [2012-05-06T16:38:14.848-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] Setting valueOf(DOMAIN_PORT) to:7001. Value obtained from:USER
    [2012-05-06T16:38:14.848-04:00] [as] [NOTIFICATION] [] [oracle.as.install.bi] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] Domain port set to: 7001
    [2012-05-06T16:38:17.929-04:00] [as] [WARNING] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] CSF Entries will not be parsed since the AdminServer is unreachable
    [2012-05-06T16:38:17.960-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] Executing a Jaxb workflow ...
    [2012-05-06T16:38:17.960-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] Begining Oracle Fusion Middleware Configuration ...
    [2012-05-06T16:38:17.960-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] Begining Oracle Fusion Middleware Configuration ...
    [2012-05-06T16:38:18.007-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] ENTRY ASDomain.createDomain
    [2012-05-06T16:38:18.007-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] ENTRY ASDomain.createDomain
    [2012-05-06T16:38:18.007-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] reportStartConfigAction: ENTRY........
    [2012-05-06T16:38:18.007-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] reportStartConfigAction: eventStatus........oracle.as.provisioning.engine.ConfigEventStatus@fafb2f1
    [2012-05-06T16:38:18.007-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] reportStartConfigAction: 2........
    [2012-05-06T16:38:18.007-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] reportStartConfigAction: Set the Extion Id to START........
    [2012-05-06T16:38:18.007-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] reportStartConfigAction: Did the assignment...
    [2012-05-06T16:38:18.007-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] reportStartConfigAction: EXIT........
    [2012-05-06T16:38:48.851-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] RETURN: createDomain
    [2012-05-06T16:38:48.851-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] RETURN: createDomain
    [2012-05-06T16:38:48.851-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] ENTRY ASDomain.startDomain
    [2012-05-06T16:38:48.851-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] reportStartConfigAction: ENTRY........
    [2012-05-06T16:38:48.866-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] reportStartConfigAction: eventStatus........oracle.as.provisioning.engine.ConfigEventStatus@29a5ec1f
    [2012-05-06T16:38:48.866-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] reportStartConfigAction: 2........
    [2012-05-06T16:38:48.866-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] reportStartConfigAction: Set the Extion Id to START........
    [2012-05-06T16:38:48.866-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] reportStartConfigAction: Did the assignment...
    [2012-05-06T16:38:48.866-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 24] [ecid: 0000JSZru5h5yW^5xV_AiW1FdhbW00000F,0] reportStartConfigAction: EXIT........
    Ora Install Logs
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to WebLogic Server Administration Scripting Shell
    Type help() for help on available commands
    Creating a new AdminServer Object ...
    AdminServer port is 7001
    Starting the domain ...
    java.lang.OutOfMemoryError: PermGen space
    java.lang.OutOfMemoryError: PermGen space
    java.lang.OutOfMemoryError: PermGen space
    java.lang.OutOfMemoryError: PermGen space

    Hi,
    Refer this SR.
    SR 3-5457356311: unable to create weblogic domain in windows 7 SP1 home edition 64 bit
    Earlier i have face same issues.after 4 attempts its got resolved.make sure below points
    static ip set it properly (windows/hots,etc files) make sure u r pc have full permission for installation user
    1.Un-install WebLogic from your machine.
    2.If the installer is on a network drive it's recommended to copy the generic installer to your local file system and to a folder with no spaces or strange characters.
    3.Remove the system variables you've set: JAVA_HOME, JAVA_VENDOR, and remove the %JAVA_HOME%\bin from the path system variable.
    4.Run the installer as follows:
    5.Open a command prompt
    6.Change directory to \JDK_64\bin folder and execute:
    like below,
    C:\>cd C:\java\bin
    C:\java\bin>java -D64 -Xms1024m -jar E:\Share_DEV\OBIEE11g_Latest\wls1035_generi
    c.jar
    run it now
    Extracting 0%.....
    Thanks
    Deva

  • JAXB v1.0.2 and Webstart

    Hi,
    I'm trying to use JAXB within an app that is started via JNLP and WebStart.
    If i add all the JAXP jars to the JNLP file the app fails to start when JAXB calls into some xerces code that tries to access java.home.
    java.security.AccessControlException: access denied (java.util.PropertyPermission java.home read)
    /* stack trace */
         at org.apache.xerces.jaxp.SAXParserFactoryImpl.newSAXParser(SAXParserFactoryImpl.java:95)
         at javax.xml.bind.helpers.AbstractUnmarshallerImpl.getXMLReader(AbstractUnmarshallerImpl.java:80)
    If i dont put in the JAXP jars then i get the following:
    Caused by: java.lang.RuntimeException: Installation Problem??? Couldn't load messages: Can't find bundle for base name org.apache.xerces.impl.xpath.regex.message, locale en_US
         at com.sun.msv.datatype.xsd.regex.RegexParser.setLocale(RegexParser.java:132)
         at com.sun.msv.datatype.xsd.regex.RegexParser.<init>(RegexParser.java:122)
    If i put the jaxp jars in jre/lib/endorsed, then everything works - except that isnt going to work for a remote client.
    So, question is why does xerces require access to java.home ?

    I am getting essentially the same exception when running my app from command line:
    java.lang.RuntimeException: Installation Problem??? Couldn't load messages: Can't find bundle for base name org.apache.xerces.impl.xpath.rege
    x.message, locale en_US
    at com.sun.msv.datatype.xsd.regex.RegexParser.setLocale(RegexParser.java:132)
    at com.sun.msv.datatype.xsd.regex.RegexParser.<init>(RegexParser.java:122)
    at com.sun.msv.datatype.xsd.regex.ParserForXMLSchema.<init>(ParserForXMLSchema.java:71)
    [ snip ]
    The same code works find when running inside a webapp on Tomcat 5.
    Did you ever find the source of your problem, and indeed a solution?

  • JAXB (XJC) problem with Java 1.4.2_02

    Hi,
    I am trying to migrate our system to Java version 1.4.2_02 (currently using 1.4.1_02). We use XJC from JAXB to compile XML schema files into java classes. JAXB is packaged in JWSDP (we are using version 1.3). I am currently experiencing a problem whereby if I use java version 1.4.2_02 and run XJC on the xml schema file its not generating any of the inner classes. All classes including inner are generated properly if I am pointing 1.4.1_02.
    Just wondering if you came across this problem before and would know of a possible solution.
    thanks for your help
    Manish

    I was having this problem as well. I extracted the MSI from the InstallShield and found that it's looking for a property called "SystemFilesLocked" to equal 1. If you pass it as a parameter and give it a value of 0, this error message doesn't appear. I've installed now to 15 W2K desktops without any issues.
    The 'silent installation' documentation for this product is sorely lacking. The install string I'm using is below:
    j2re-1_4_2_03-windows-i586-p.exe /S /v/qn"ADDLOCAL=jrecore SYSTEMFILESLOCKED=0 CONTROLPANELLOCKED=1 SKDSILENT=1 IEXPLORER=0 SYSTRAY=0 REBOOT=Suppress JAVAUPDATE=0 JAVAJAVAWLOCKED=0 WEBSTARTICON=0 /L C:\TEMP\LogFiles\JRE_JWS_142_03.log"
    Hope this helps...

  • Add java classes as Additional Classes to web service and JAXB 2.0 usage

    Hi,
    I start using JDeveloper 11g TP3 to create web service. I encounter two problems.
    1. I created a schema file as the following,
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://FromWSDL/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:tns="http://FromWSDL/">
    <xsd:complexType name="sayHello">
    <xsd:sequence>
    <xsd:element name="arg0" type="xsd:string" default="Tommy"/>
    <xsd:element name="arg1" type="tns:arg1Enum"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:simpleType name="arg1Enum">
         <xsd:restriction base="xsd:string">
         <xsd:enumeration value="preserve"/>
         <xsd:enumeration value="replace"/>
         <xsd:enumeration value="collapse"/>
         </xsd:restriction>
    </xsd:simpleType>                         
    <xsd:element name="sayHello" type="tns:sayHello"/>
    <xsd:complexType name="sayHelloResponse">
    <xsd:sequence>
    <xsd:element name="return" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="sayHelloResponse" type="tns:sayHelloResponse"/>
    </schema>
    then I used TopLink/JPA-->JAXB 2.0 Content Model from Schema, I got four java files: Arg1Enum.java, ObjectFactory.java, SayHello.java, and SayHelloResponse.java.
    After, I create a java class with @WebService and @WebMethod annotation. Right Click on the web service class,
    select Web Service Properties-->Additional Classes, I added the four java classes. but there are error message for SayHello and Arg1Enum
    "the type SayHello cannot be serialized into XML and no custom serilizer has been defined for it"
    2. In JDeveloper, I create Java model from the above schema, then reverse the steps, create a new schema from Java Model, the original schema and the schema from Java Model are not same, especially for "defaultValue" and "required" fields for the custom element(SayHello and Arg1Enum).
    Any help will be appreciated

    First what you mean by "deploying classes as web services"? Chances are you
    can do it with something like Glue from The Mind Electric ... but chances
    are that you don't want to. What are you trying to accomplish?
    Peace,
    Cameron Purdy
    Tangosol, Inc.
    Clustering Weblogic? You're either using Coherence, or you should be!
    Download a Tangosol Coherence eval today at http://www.tangosol.com/
    "Simon Wallis" <[email protected]> wrote in message
    news:[email protected]..
    Hi, can WebLogic deploy simple Java classes (not EJB's or JB's, just
    classes) as a web service? How easy it is to do?
    The WebLogic installation has one measly web services example, and it's an
    EJB which is not what I want to do.
    Thanks,
    Simon.

  • Oracle Forms 11g Installation. Create domain problem

    Hi,
    I am installing Oracle Forms 11g on Windows 7 32-bit system. Installation is done. Create domain is failing during the configuration process.
    I searched everywhere but cudnt find a solution specific to the problem.
    Only recognisable error message is 'CSF Entries will not be parsed since the AdminServer is unreachable'.
    I have checked Node Manager is not running.
    Please find below the snapshot of the last few lines of the log file
    [2014-05-23T13:43:22.554+05:30] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange]  [CONFIG PAGE] New Description: Application Configuration
    [2014-05-23T13:43:22.554+05:30] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange]  [CONFIG PAGE] Old Description: Application Configuration
    [2014-05-23T13:43:22.570+05:30] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Setting valueOf(DOMAIN_HOME_PATH) to:C:/Oracle/Middleware/user_projects/domains/ClassicDomain. Value obtained from:USER
    [2014-05-23T13:43:23.787+05:30] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Setting valueOf(DOMAIN_PORT) to:7001. Value obtained from:USER
    [2014-05-23T13:43:27.297+05:30] [as] [NOTIFICATION] [] [oracle.as.install.engine.config] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Starting Action:Application Configuration
    [2014-05-23T13:43:27.297+05:30] [as] [TRACE:16] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] [SRC_CLASS: oracle.as.install.classic.ca.standard.ClassicConfigMain] [SRC_METHOD: doExecute] ENTRY
    [2014-05-23T13:43:35.117+05:30] [as] [WARNING] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] CSF Entries will not be parsed since the AdminServer is unreachable
    [2014-05-23T13:43:35.133+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Executing a Jaxb workflow ...
    [2014-05-23T13:43:35.133+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Begining Oracle Fusion Middleware Configuration ...
    [2014-05-23T13:43:35.133+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Begining Oracle Fusion Middleware Configuration ...
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] ENTRY ASDomain.createDomain
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] ENTRY ASDomain.createDomain
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: ENTRY........
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: eventStatus........oracle.as.provisioning.engine.ConfigEventStatus@180874
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: 2........
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: Set the Extion Id to START........
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: Did the assignment...
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: EXIT........
    [2014-05-23T13:43:35.320+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Domain Home: C:/Oracle/Middleware/user_projects/domains/ClassicDomain
    [2014-05-23T13:43:35.320+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Oracle Home: C:/Oracle/Middleware/Oracle_FRHome2
    [2014-05-23T13:43:35.320+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Setting os object values in Python
    [2014-05-23T13:44:18.861+05:30] [as] [ERROR] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] [[
    oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
    at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:686)
    at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
    at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
    at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
    at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
    at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:375)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:96)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:186)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
    at java.lang.Thread.run(Thread.java:662)
    Any help is highly appreciated.

    Hi,
    Please run the below commands in the command prompt :-
    1)hostname
       Ex:-
           C:\Users>hostname
            celvpint8511
    2)nslookup <Result of the step 1>
       Ex :-  C:\Users>nslookup celvpint8511
                Server:         192.135.82.132
               Address:        192.135.82.132#53
               Name:   celvpint8511.us.oracle.com
               Address: 10.64.166.6 [ So this is the IP Address which needs to be used ]
    So please get the right IP and then update it in the host file.
    Regards,
    Prakash.

  • Forms & Reports 11gR2 installation - Can't create domain

    Hi, I try to install Forms & Reports 11gR2 (version 11.1.2.2.0) on a Windows 7 64 bits machine. Here is that I try :
    Installation of JDK 1.7.0.51 for Windows 7 64 bits
    Installation of WebLogic 10.3.6 "Generic" bits (java -Xmx1024m -jar wls1036-generic.jar) without configuration.
    Installation of Forms & Reports 11.1.2.2.0 :
    - installation without configuratoin
    - keep default values for others parameters
    Until now, no problems found.
    Now, configuration of Forms & Reports :
    - for developement
    - keep default values
    It begins the creation of the domain (<middleware_home>/user_projects/domains/ClassicDomain/...) but after two hours, the statut just says : Error...
    Any idea ? I don't what to do now !!!!
    Thank you
    Some logs :
    ==============================================================================================================================================================================
    End of c:/Programs/Oracle/Invencory/logs/install2014-01-22_11-46-31AM.log :
    [2014-01-22T11:48:24.566+01:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] Assigning value:false to variable:CONFIGURE_FOR_DEPLOYMENT
    [2014-01-22T11:48:24.573+01:00] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange]  [CONFIG PAGE] New Description: Configuration de l'application
    [2014-01-22T11:48:24.574+01:00] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange]  [CONFIG PAGE] Old Description: Application Configuration
    [2014-01-22T11:48:24.664+01:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] Setting valueOf(DOMAIN_HOME_PATH) to:C:/Oracle/Middleware/user_projects/domains/ClassicDomain. Value obtained from:USER
    [2014-01-22T11:48:26.517+01:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] Setting valueOf(DOMAIN_PORT) to:7001. Value obtained from:USER
    [2014-01-22T11:48:30.014+01:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.config] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] Starting Action:Application Configuration
    [2014-01-22T11:48:30.025+01:00] [as] [TRACE:16] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] [SRC_CLASS: oracle.as.install.classic.ca.standard.ClassicConfigMain] [SRC_METHOD: doExecute] ENTRY
    [2014-01-22T11:48:35.690+01:00] [as] [WARNING] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] CSF Entries will not be parsed since the AdminServer is unreachable
    [2014-01-22T11:48:35.764+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] Executing a Jaxb workflow ...
    [2014-01-22T11:48:35.764+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] Begining Oracle Fusion Middleware Configuration ...
    [2014-01-22T11:48:35.765+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] Begining Oracle Fusion Middleware Configuration ...
    [2014-01-22T11:48:35.851+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] ENTRY ASDomain.createDomain
    [2014-01-22T11:48:35.851+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] ENTRY ASDomain.createDomain
    [2014-01-22T11:48:35.852+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] reportStartConfigAction: ENTRY........
    [2014-01-22T11:48:35.852+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] reportStartConfigAction: eventStatus........oracle.as.provisioning.engine.ConfigEventStatus@520b4c69
    [2014-01-22T11:48:35.852+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] reportStartConfigAction: 2........
    [2014-01-22T11:48:35.853+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] reportStartConfigAction: Set the Extion Id to START........
    [2014-01-22T11:48:35.853+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] reportStartConfigAction: Did the assignment...
    [2014-01-22T11:48:35.853+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] reportStartConfigAction: EXIT........
    [2014-01-22T11:48:36.239+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] Domain Home: C:/Oracle/Middleware/user_projects/domains/ClassicDomain
    [2014-01-22T11:48:36.239+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] Oracle Home: C:/Oracle/Middleware/FRMHome
    [2014-01-22T11:48:36.239+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] Setting os object values in Python
    [2014-01-22T11:49:23.063+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] RETURN: createDomain
    [2014-01-22T11:49:23.071+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] RETURN: createDomain
    [2014-01-22T11:49:23.071+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] ENTRY ASDomain.startDomain
    [2014-01-22T11:49:23.071+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] reportStartConfigAction: ENTRY........
    [2014-01-22T11:49:23.071+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] reportStartConfigAction: eventStatus........oracle.as.provisioning.engine.ConfigEventStatus@5c219c51
    [2014-01-22T11:49:23.071+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] reportStartConfigAction: 2........
    [2014-01-22T11:49:23.071+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] reportStartConfigAction: Set the Extion Id to START........
    [2014-01-22T11:49:23.071+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] reportStartConfigAction: Did the assignment...
    [2014-01-22T11:49:23.071+01:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] reportStartConfigAction: EXIT........
    [2014-01-22T14:11:43.421+01:00] [as] [ERROR] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0]
    [2014-01-22T14:11:43.453+01:00] [as] [ERROR] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] [[
    oracle.as.provisioning.util.ConfigException:
    Erreur lors du démarrage du domaine.
    Cause:
    Temporisation du démarrage du serveur Admin_Server.
    Action:
    Pour plus de détails, consultez les journaux.
      at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)
      at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3150)
      at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3043)
      at oracle.as.provisioning.engine.WorkFlowExecutor._startAdminServer(WorkFlowExecutor.java:1645)
      at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:635)
      at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
      at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
      at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
      at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
      at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
      at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
      at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:375)
      at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
      at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
      at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
      at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:96)
      at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:186)
      at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
      at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
      at java.lang.Thread.run(Thread.java:662)
    [2014-01-22T14:11:43.484+01:00] [as] [ERROR] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KEt^8bt0VsAARb7EDP1Iru6f000004,0] [[
    oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
      at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:686)
      at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
      at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
      at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
      at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
      at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
      at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
      at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:375)
      at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
      at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
      at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
      at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:96)
      at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:186)
      at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
      at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
      at java.lang.Thread.run(Thread.java:662)
    ==============================================================================================================================================================================
    ==============================================================================================================================================================================
    End of c:/Programs/Oracle/Invencory/logs/install2014-01-22_11-46-31AM.out :
      Creating a new AdminServer Object ...
      AdminServer port is 7001
      Starting the domain ...
      LOADING DLL : C:\Oracle\Middleware\FRMHome\install\config\\StartUtil64.dll
        DEBUG : Loading DLL : C:\Oracle\Middleware\FRMHome\install\config\\StartUtil64.dll
        DEBUG : Loaded DLL : C:\Oracle\Middleware\FRMHome\install\config\\StartUtil64.dll
    oracle.as.provisioning.util.ConfigException:
    Erreur lors du démarrage du domaine.
    Cause:
    Une erreur sest produite lors du démarrage du domaine.
    Action:
    Pour plus de détails, consultez les journaux.
      at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)
      at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3180)
      at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3043)
      at oracle.as.provisioning.engine.WorkFlowExecutor._startAdminServer(WorkFlowExecutor.java:1645)
      at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:635)
      at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
      at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
      at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
      at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
      at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
      at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
      at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:375)
      at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
      at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
      at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
      at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:96)
      at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:186)
      at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
      at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
      at java.lang.Thread.run(Thread.java:662)
    Caused by: oracle.as.provisioning.util.ConfigException:
    Erreur lors du démarrage du domaine.
    Cause:
    Temporisation du démarrage du serveur Admin_Server.
    Action:
    Pour plus de détails, consultez les journaux.
      at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)
      at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3150)
      ... 18 more
    oracle.as.provisioning.exception.ASProvisioningException
      at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:872)
      at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
      at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
      at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
      at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
      at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:375)
      at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
      at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
      at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
      at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:96)
      at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:186)
      at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
      at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
      at java.lang.Thread.run(Thread.java:662)
    Caused by: oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
      at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:686)
      at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
      at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
      ... 13 more
    ==============================================================================================================================================================================

    Hi,
    I also get stuck in create domain step , but can't find any error in the log file.
    Can anyone help. Thks.
    [2014-04-19T10:10:06.664+08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] Assigning value:false to variable:CONFIGURE_FOR_DEPLOYMENT
    [2014-04-19T10:10:06.676+08:00] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange]  [CONFIG PAGE] New Description: Application Configuration
    [2014-04-19T10:10:06.677+08:00] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange]  [CONFIG PAGE] Old Description: Application Configuration
    [2014-04-19T10:10:06.688+08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] Setting valueOf(DOMAIN_HOME_PATH) to:C:/Oracle/Middle/user_projects/domains/FRM. Value obtained from:USER
    [2014-04-19T10:10:08.275+08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] Setting valueOf(DOMAIN_PORT) to:7001. Value obtained from:USER
    [2014-04-19T10:10:11.688+08:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.config] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] Starting Action:Application Configuration
    [2014-04-19T10:10:11.689+08:00] [as] [TRACE:16] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] [SRC_CLASS: oracle.as.install.classic.ca.standard.ClassicConfigMain] [SRC_METHOD: doExecute] ENTRY
    [2014-04-19T10:10:15.499+08:00] [as] [WARNING] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] CSF Entries will not be parsed since the AdminServer is unreachable
    [2014-04-19T10:10:15.536+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] Executing a Jaxb workflow ...
    [2014-04-19T10:10:15.537+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] Begining Oracle Fusion Middleware Configuration ...
    [2014-04-19T10:10:15.538+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] Begining Oracle Fusion Middleware Configuration ...
    [2014-04-19T10:10:15.564+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] ENTRY ASDomain.createDomain
    [2014-04-19T10:10:15.564+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] ENTRY ASDomain.createDomain
    [2014-04-19T10:10:15.565+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] reportStartConfigAction: ENTRY........
    [2014-04-19T10:10:15.565+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] reportStartConfigAction: eventStatus........oracle.as.provisioning.engine.ConfigEventStatus@1328fa3c
    [2014-04-19T10:10:15.565+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] reportStartConfigAction: 2........
    [2014-04-19T10:10:15.566+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] reportStartConfigAction: Set the Extion Id to START........
    [2014-04-19T10:10:15.566+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] reportStartConfigAction: Did the assignment...
    [2014-04-19T10:10:15.566+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] reportStartConfigAction: EXIT........
    [2014-04-19T10:10:15.767+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] Domain Home: C:/Oracle/Middle/user_projects/domains/FRM
    [2014-04-19T10:10:15.767+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] Oracle Home: C:/Oracle/Middle/FRHome1
    [2014-04-19T10:10:15.767+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] Setting os object values in Python
    [2014-04-19T10:10:49.414+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] RETURN: createDomain
    [2014-04-19T10:10:49.417+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] RETURN: createDomain
    [2014-04-19T10:10:49.417+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] ENTRY ASDomain.startDomain
    [2014-04-19T10:10:49.417+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] reportStartConfigAction: ENTRY........
    [2014-04-19T10:10:49.417+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] reportStartConfigAction: eventStatus........oracle.as.provisioning.engine.ConfigEventStatus@13dd5ec
    [2014-04-19T10:10:49.417+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] reportStartConfigAction: 2........
    [2014-04-19T10:10:49.417+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] reportStartConfigAction: Set the Extion Id to START........
    [2014-04-19T10:10:49.417+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] reportStartConfigAction: Did the assignment...
    [2014-04-19T10:10:49.417+08:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000KLrjodaFg4WFLzmJOA1JKTek000004,0] reportStartConfigAction: EXIT........

  • JAXB Configuration

    how to configure JAXB to add equal and hashCode methods to the generated classes ?

    In fact, I am familiar with JAXB and used it in several projects. I wrote the ObjectFactory by myself, of course, we can generate it by using xjc command. The project runs well in eclipse or netbeans without this exception because the file is there.
    This exceptioin occurs only when I make installation package by using BuildDesk. I find when I don't choose the obfuscation options in BuildDesk, it runs well. I think the shrink/optimize/obfuscate operation destroyed the ObjectFactory.class when processing the .jar file. I think the solution is package the JAXB model into a separate jar and use it as a external library, so BuildDesk doesn't process it in any case. Thank you all the same. :)
    Edited by: 807218 on Nov 3, 2010 7:29 AM

  • JAXB - Newbie Question

    Hi,
    I am new to JAXB. I installed the JAXB1.3 in unix. I am having a little bit of trouble figuring out a few things
    1. where should the DTD be placed relative to the installation directory
    2. Where should the XML document be placed
    3. Where should the binding schema be placed
    4. What environment variables should be included in the CLASSPATH.
    Would appreciate any assistance,
    Thanks,
    Safeena

    Hi,
    You could place the binding schema,xml document,dtd could be at any location on your filesystem.When you use the binding compiler, you need to specify the location.
    For ex. you could use as following:
    D:\Softwares\jwsdp1.2\jaxb\bin\xjc -b c:\binding.xjb d:\examples\example.xsd
    If your are using jwsdp1.3, you need to set the JAVA_HOME and JWSDP_HOME environment variables.
    Refer the section "configuring and running the samples" for details at http://java.sun.com/webservices/docs/1.3/tutorial/doc/JAXBUsing2.html#wp87739
    -Amol

  • NullPointerException in JAXB

    Hi all,
    I have a problem with JAXB. I installed the jwsdp-1_6-windows-i586.exe,
    and made some test running the xjc using the command line. It works fine,
    all Classes has been created and compiled. Furthermore I wanted to use it
    within eclipse. I created a new Project, copied all needed libs into it,
    but I got a NPE:
    E:\eclipse>E:\java\j2sdk1.4.2_04\bin\java -Djava.endorsed.dirs=E:\workspace\_internTestJAXB\lib;E:\workspace\_internTestJAXB\lib\endorsed -jar E:\workspace\_internTestJAXB\lib\jaxb-xjc.jar E:\workspace\_internTestJAXB\xsd\faa.xsd -p de.jaxb.bo -d E:\workspace\_internTestJAXB\src\
    parsing a schema...
    compiling a schema...
    Exception in thread "main" java.lang.NullPointerException
    at com.sun.tools.xjc.generator.SkeletonGenerator.generateStaticRuntime(SkeletonGenerator.java:238)
    at com.sun.tools.xjc.generator.SkeletonGenerator.<init>(SkeletonGenerator.java:130)
    at com.sun.tools.xjc.generator.SkeletonGenerator.generate(SkeletonGenerator.java:110)
    at com.sun.tools.xjc.Driver.generateCode(Driver.java:379)
    at com.sun.tools.xjc.Driver.run(Driver.java:220)
    at com.sun.tools.xjc.Driver._main(Driver.java:80)
    at com.sun.tools.xjc.Driver.access$000(Driver.java:46)
    at com.sun.tools.xjc.Driver$1.run(Driver.java:60)
    Someone an idea what's wrong?
    Thanks in advance,
    zzkozak

    It looks like a build path problem with your Eclipse project. Why not try an Ant script such as the following? It's much easier than using xjc from the command line.
    <?xml version="1.0" standalone="yes"?>
    <project name="DataExtract JAXB Build" basedir="." default="run">
         <description>
              Controls the JAXB XML schema and Java compilations and wraps the results into a JAR file.
        </description>
         <!-- Change this property to point to the JWSDP installation directory on your machine.  -->
         <property name="jwsdp.home" value="C:\Program Files\Java\jwsdp-1.6" />
         <path id="classpath">
              <pathelement path="src" />
              <fileset dir="${jwsdp.home}" includes="jaxb/lib/*.jar" />
              <fileset dir="${jwsdp.home}" includes="jwsdp-shared/lib/*.jar" />
              <fileset dir="${jwsdp.home}" includes="jaxp/lib/**/*.jar" />
         </path>
         <taskdef name="xjc" classname="com.sun.tools.xjc.XJCTask">
              <classpath refid="classpath" />
         </taskdef>
         <target name="run" description="Compile the XML schemas and all the Java source files they create.">
              <echo message="Compiling the Schema..." />
              <mkdir dir="tmpClasses" />
              <mkdir dir="tmpSource"/>
              <echo message="Doing forum.xsd..." />
              <xjc schema="forum.xsd" package="extract" target="tmpSource" />
              <echo message="Compiling the java source files..." />
              <javac srcdir="tmpSource" destdir="tmpClasses" debug="on" >
                   <classpath refid="classpath" />
              </javac>
              <echo message="Bundling the generated classes and source files into forum.jar"/>
              <jar destfile="forum.jar" update="true">
                   <fileset dir="tmpClasses"/>     
                   <fileset dir="tmpSource"/>
              </jar>
              <echo message="Cleaning up the working directories."/>          
              <delete dir="tmpClasses"/>
              <delete dir ="tmpSource"/>
         </target>
    </project>Copy this script into a file called build.xml within your Eclipse project. Change the value of jwsdp.home to the location of your JWSDP installation, and change the name of the Schema. With the script and the Schema in the same directory, right-click on the file and select Run As -> Ant Build.
    This script bundles the generated classes into a jar file and and then deletes the source. But, you can play around with it if you want to do something else.

  • JAXB Bindings - error while compiling Schema(s)

    Hello, I want to create Java classes from a XML Schema by using JAXB Binding. However, when I do that a message error appears: "Error while compiling Schema" and then it says:
    "C:\...\NetBeansProjects\myproject\build.xml:12: Problem: failed to create task or type import
    Cause: The name is undefined.
    Action: Check the spelling.
    Action: Check that any custom tasks/types have been declared.
    Action: Check that any <presetdef>/<macrodef> declarations have taken place."
    Does anybody know what it's happening? It could be that there is a .jar missing?
    Thank you very much

    The document build.xml at line 12 says <import file="nbproject/build-impl.xml"/>. The file nbproject / build-impl.xml exists. If you want I could send it to you.You could post it here (the build-impl.xml, I mean).
    I have a working example, we could compare.
    I have included all the .jar you mentioned (excep the jaxb1-imp.jar).?
    If you added this JAXB compiling target via NB's wizard, as you describe below, you shouldn't have to "include" whatever jars wich are already in the JDK. That is, if you're using JDK6 - JAXB was not (or not so much) included in the JDK prior to 1.6.
    If the JDK is 1.5, I have no idea where you have to add these jars, possibly you're not add them in the correct classpath. Presumably Ant itself would need them in its classpath to be able to define the task.
    And I have not touched anythingThey all say that... :o)
    the only thing I did was to add other .jars (for other purposes).See?
    Is it possible that you removed one of the important jars when doing back-and-forth tries?
    But anyway I went back to remove this new .jars and the JAXB Binding still doesn't work .
    Should I uninstall the IDE and re-install? I do not know what else to do ...Do you have any reason to believe you did corrupt the JDK or NetBeans's installation? For example, when you write about adding/removing the mentioned jars, did you do that somewhere in the JDK or NB installation?
    Other than that, I don't see what reinstalling NB would do.
    Without going to such extremes, have you tried simply to remove the JAXBBinding, and add it again in the NetBeans project, using the wizard?

  • Forms 11g installation

    Hi,
    I am stuck in installation of forms 11g configaration.The setup is unable to create domain.I have searched the internet but not find the solution.My log file description is below:
    [2012-02-14T22:06:48.578+05:00] [as] [WARNING] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] CSF Entries will not be parsed since the AdminServer is unreachable
    [2012-02-14T22:06:48.578+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] Executing a Jaxb workflow ...
    [2012-02-14T22:06:48.578+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] Begining Oracle Fusion Middleware Configuration ...
    [2012-02-14T22:06:48.578+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] Begining Oracle Fusion Middleware Configuration ...
    [2012-02-14T22:06:48.578+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] ENTRY ASDomain.createDomain
    [2012-02-14T22:06:48.578+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] ENTRY ASDomain.createDomain
    [2012-02-14T22:06:48.578+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] reportStartConfigAction: ENTRY........
    [2012-02-14T22:06:48.578+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] reportStartConfigAction: eventStatus........oracle.as.provisioning.engine.ConfigEventStatus@e042cb
    [2012-02-14T22:06:48.578+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] reportStartConfigAction: 2........
    [2012-02-14T22:06:48.578+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] reportStartConfigAction: Set the Extion Id to START........
    [2012-02-14T22:06:48.578+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] reportStartConfigAction: Did the assignment...
    [2012-02-14T22:06:48.578+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] reportStartConfigAction: EXIT........
    [2012-02-14T22:06:48.659+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] Domain Home: C:/Oracle/Middleware/user_projects/domains/ClassicDomain
    [2012-02-14T22:06:48.659+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] Oracle Home: C:/Oracle/Middleware/as_1
    [2012-02-14T22:06:48.659+05:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] Setting os object values in Python
    [2012-02-14T22:06:48.659+05:00] [as] [ERROR] [] [oracle.as.provisioning] [tid: 20] [ecid: 0000JLwh1AZDwW05zzWByW1FEcXB00000B,0] [[
    oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:688)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:393)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    Please help..
    Regards

    hi,
    here is my "out" file, beause the file is so huge therefore the ending part of that is shown below:
    progress in calculate progress4
    progress in calculate progress4
    XXX: adding task: oracle.as.install.classic.ca.standard.DomainProvisioningTask
    AdminServer port is 7002
    trying to connect to SHAN 7002
    Creating Weblogic Domain.
    isPortAvailable [port 5556]
    Port 5556 available.
    java.lang.NoClassDefFoundError: com/bea/plateng/common/util/ObjectStoreManager
         at oracle.as.provisioning.weblogic.ASDomain._createDomain(ASDomain.java:2822)
         at oracle.as.provisioning.weblogic.ASDomain.createDomain(ASDomain.java:2469)
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:635)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:393)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    oracle.as.provisioning.exception.ASProvisioningException
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:872)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:688)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:393)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
    i have also tried to close the admin server during installation but the result is same please help!
    Regards,
    Edited by: 897253 on Feb 21, 2012 1:56 AM

Maybe you are looking for

  • Problem connecting to OIM instance with the Design Console

    Hello, I've got questions about how to use the design console to connect to an OIM instance. I'm not the one who has set up the instance and the one who did cannot help me much. He did give me root access on the machine though. So first, I'm wonderin

  • Second monitor stopped working on upgrade to 10.10

    I recently upgraded my mid 2010 Mac Pro from 10.6.8 to 10.10.1. This upgrade resulted in the loss of signal to my second monitor. The primary monitor connects via an hdmi/vga adaptor and the second monitor uses the video card vga connection. Both mon

  • Outlook 2010 cannot connect to Century Link server

    My Outlook was working fine and Century Link made log in changes.  I have had professional work on my computer, still would not work, a clean install was done.  Outlook worked off and on in his office but will not work in my home.  Century Link blame

  • Drag and drop file into email gets me an icon, not the image. Is there a simple fix?

    I am used to drag and drop image import into apple email. Recently I get a "mail attachment" icon for images that have been previously sent in other email. I would like to see the actual image in every email if possible. How can that happen?

  • Imovie has disappeared~

    Well essentially, imovie no longer exists on my mac. When I search, it doesn't come up, when I download a update, it says there's no imovie to update from. I'm almost certain that I couldn't have accidentally deleted it that I seldom ever use it to r