Strut-blank deployment failed (out of topic)

Sorry for out of topic. But I am failed to deploy the strut-blank in tomcat.
After installing tomcat, I try to put the struts-blank.war to the
$CATALINA_HOME/webapps. Tomcat try to deploy the struts-blank.war but
failed with the following error in the log. I wonder why tomcat can't
find javax/servlet/http/HttpServlet as it is in the
$CATALINA_HOME/common/lib and it is the path that tomcat will find.
SEVERE: Error deploying web application archive struts-blank.war
java.lang.NoClassDefFoundError: javax/servlet/http/HttpServlet
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
at
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1267)
at
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.
---------------------------------------------------------------------

Hi,
First, I recommend you install Clients, please review the link below:
How to Install Clients on Windows-Based Computers in Configuration Manager
http://technet.microsoft.com/en-us/library/gg712298.aspx
To update antimalware definitions, you can use one or more of the following methods:
How to Configure Definition Updates for Endpoint Protection in Configuration Manager
http://technet.microsoft.com/en-us/library/jj822983.aspx
How to Create and Deploy Antimalware Policies for Endpoint Protection in Configuration Manager
http://technet.microsoft.com/en-us/library/hh508785.aspx
Also, Check out this great guide by Gerry as well.
Config Mgr 2012 Endpoint Protection: Definition Updates
http://www.gerryhampsoncm.blogspot.ie/2013/08/config-mgr-2012-endpoint-protection_4240.html
Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • Bpel deployment fails for all processes that have revision other than 1.0.

    Using: Release *10.1.3.3.1*
    Hello All,
    Bpel deployment fails for all processes that have revision other than *1.0*.
    We have been attempting to deploy several BPEL projects via ANT script to a target environment and are encountering failures to deploy for every project which isn’t a (revision 1.0). We are getting the following error whenever we try to deploy a process with a revision other than 1.0:
    D:\TJ_AutoDeploy\BPEL_AutoDeploy_BETA\build.xml:65: BPEL archive doesnt exist in directory "{0}"
         at com.collaxa.cube.ant.taskdefs.DeployRemote.getJarFile(DeployRemote.java:254)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.deployProcess(DeployRemote.java:409)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.execute(DeployRemote.java:211)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
         at org.apache.tools.ant.Main.runBuild(Main.java:668)
         at org.apache.tools.ant.Main.startAnt(Main.java:187)
         at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
         at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    The structure of our automated deployment script is as follows:
    First, a batch script calls (Jdeveloper_BPEL_Prompt.bat) in order to set all necessary environment variables i.e. ORACLE_HOME, BPEL_HOME, ANT_HOME, etc for ant.
    Next, the script lists every .jar file within the directory to an .ini file called BPEL_List.ini. Furthermore, BPEL_DIR, ADMIN_USER and ADMIN_PSWD variables are set and initialized respectively to:
    -     “.” – point to directory where script is running from because all the BPEL processes are located here
    -     “oc4jadmin”
    -     “*********” (whatever the password for out environment is)
    We’ve developed a method to have the script prompt the user to select the target environment to deploy to. Once the user selects the appropriate environment, the script goes through the BPEL_List.ini files and a loop tells it that for every BPEL process listed:
    DO ant
    -Dprocess.name=%%b
    -Drev= !Rev!
    -Dpath=%BPEL_DIR%
    -Ddomain=default
    -Dadmin.user=%ADMIN_USER%
    -Dadmin.password=%ADMIN_PWD%
    -Dhttp.hostname=%HOST%
    -Dhttp.port=%PORT%
    -Dverbose=true
    (What’s happening is that the variables in the batch file are being passed on to the ANT script where *%%b* is the process name, !rev! is revision #, and so on…)
    The loop goes through each line in the BPEL_List.ini and tokenizes the BPEL process into 3 parts *(%%a, %%b, and %%c)* but we only extract 2 parts: *%%b* (process name) and *%%c* which becomes !Rev! (revision number).
    Example:
    Sample BPEL process:
    bpel_ThisIsProcess1_1.0.jar
    bpel_ThisIsProcess2_SOAv2.19.0.001B.jar
    After tokenizing:
    %%a     %%b     %%c
    bpel     ThisIsProcess1     1.0.jar
    bpel     ThisIsProcess2     SOAv2.19.0.001B.jar
    *!Rev!* and not *%%c* because *%%c* will return whatever the revision number is + the “.jar” file extension as illustrated above. So to circumvent this, we parse *%%c* so that the last 4 characters are stripped. Such is done like this:
    set RevN=%%c
    set RevN=!RevN:~0,-4!
    Hence, the usage of !Rev!.
    Below is a screenshot post of the ANT build.xml that goes with our script:
    <!--<?xml version="1.0"?>-->
    <!--BUILD.XML-->
    <project name="bpel.deploy" default="deployProcess" basedir=".">
         <!--
         This ant build file was generated by JDev to deploy the BPEL process.
         DONOT EDIT THIS JDEV GENERATED FILE. Any customization should be done
         in default target in user created pre-build.xml or post-build.xml
         -->
         <property name="process.dir" value="${basedir}" />
              <!-- Set BPEL process name -->
              <!--
              <xmlproperty file="${process.dir}/bpel/bpel.xml"/>
              <property name="process.name" value="${BPELSuitcase.BPELProcess(id)}"/>
              <property name="rev" value="${BPELSuitcase(rev)}"/>
              -->
         <property environment="env"/>
         <!-- Set bpel.home from developer prompt's environment variable BPEL_HOME -->
              <condition property="bpel.home" value="${env.BPEL_HOME}">
                   <available file="${env.BPEL_HOME}/utilities/ant-orabpel.xml" />
              </condition>
         <!-- show that both bpel and oracle.home are located (TESTING purposes ONLY) -->
         <!-- <echo>HERE:${env.BPEL_HOME} ${env.ORACLE_HOME}</echo> -->
         <!-- END TESTING -->
         <!--If bpel.home is not yet using env.BPEL_HOME, set it for JDev -->
         <property name="oracle.home" value="${env.ORACLE_HOME}" />
         <property name="bpel.home" value="${oracle.home}/bpel" />
         <!--First override from build.properties in process.dir, if available-->
         <property file="${process.dir}/build.properties"/>
         <!--import custom ant tasks for the BPEL PM-->
         <import file="${bpel.home}/utilities/ant-orabpel.xml" />
         <!--Use deployment related default properties-->
         <property file="${bpel.home}/utilities/ant-orabpel.properties" />
         <!-- *************************************************************************************** -->
         <target name="deployProcess">
              <tstamp>
                   <format property="timestamp" pattern="MM-dd-yyyy HH:mm:ss" />
              </tstamp>
              <!-- WRITE TO LOG FILE #tjas -->
              <record name="build_verbose.log" loglevel="verbose" append="true" />
              <record name="build_debug.log" loglevel="debug" append="true" />
              <echo></echo>
              <echo>####################################################################</echo>
              <echo>BPEL_AutoDeploy initiated @ ${timestamp}</echo>
              <echo>--------------------------------------------------------------------</echo>
              <echo>Deploying ${process.name} on ${http.hostname} port ${http.port} </echo>
              <echo>--------------------------------------------------------------------</echo>
              <deployProcess
                   user="${admin.user}"
                   password="${admin.password}"
                   domain="${domain}"
                   process="${process.name}"
                   rev="${rev}"
                   dir="${process.dir}/${path}"
                   hostname="${http.hostname}"
                   httpport="${http.port}"
                   verbose="${verbose}" />
              <sleep seconds="30" />
              <!--<echo message="${process.name} deployment logged to ${build_verbose.log}"/>
              <echo message="${process.name} deployment logged to ${build.log}"/> -->
         </target>
         <!-- *************************************************************************************** -->
    </project>
    SUMMARY OF ISSUE AT HAND:
    ~ Every bpel process w/ 1.0 revision deploys with no problems
    ~ At first I would get an invalid character error most likely due to the “!” preceding “Rev”, but then I decided to set rev=”false” in the build.xml file. That didn’t work quite well. In another attempt, I decided to leave the –Drev= attribute within the batch script blank. That still led to 1.0s going through. My next thought was deploying something other than a 1.0, such as 1.2 or 2.0 and that’s when I realized that if it wasn’t a 1.0, it refused to go through.
    QUESTIONS:
    1.     IS THERE A WAY TO HAVE ANT LOOK INTO THE BPEL PROCESS AND PULL THE REVISION ID?
    2.     WHAT ARE WE DOING WRONG? ARE WE MISSING ANYTHING?
    3.     DID WE GO TOO FAR? MEANING, IS THERE A MUCH EASIER WAY WE OVERLOOKED/FORGOT/OR DON’T KNOW ABOUT THAT EXISTS?
    Edited by: 793292 on Jul 28, 2011 12:38 PM

    Only thing i can think of is instead of using a MAC ACL , u cud jus use the default class
    Policy Map Test
    class class-default
    police 56000 8000 exceed-action drop
    Class Map match-any class-default (id 0)
    Match any
    You would be saving a MAC-ACL ;-).

  • Windows 7 Image Deployment Failed in HP model D530 using MDT 2012 and ADK 8.0

    Hi,
    I need your help to sort out the following issue.
    I have installed MDT 2012 +ADK 8.0  and created Windows 7 32 bit OS from CD in the deployment share and tried deploying the raw OS from Deployment Share in to a reference machine (HP D530) ,the deployment failed also couldn't able to capture
    Image from the machine,even the sysprep failed. This is the error
    Your PC needs to restart.
    Please hold down the power button.
    Error Code:0x0000005D
    Parameters:
    0x030F0209
    0x746E6547
    0X49656E69
    0X6C65746E
    So tried the same in another HP machine ,the deployment was success and also was able to capture the refrence machine.
    Need your help to find why this error occurred in this specific HP model D530 alone. Is it the reason that ADK was not supported in that specific model.
    D530 is the maximum available HW model in client environment so your help will be much appreciated.
    Thanks in Advance!!

    I have never seen that error before (see identical post). I did a quick internet search and found the following:
    http://optimizewindows8.wordpress.com/2013/03/26/how-to-fix-error-code-0x0000005d/
    Either:
    1) Upgrade your machines with modern processors that support the ADK.
          or
    2) Downgrade to the WAIK
    http://www.microsoft.com/en-us/download/details.aspx?id=5753 and stick with Windows 7.
    Keith Garner - keithga.wordpress.com

  • NW BI-JAVA 7.01 SP6 deployment failed with error main_rules.ept

    Dear all,
    I've installed a new Web AS JAVA instance 7.01 SR1 with usage type BI-JAVA
    I then patched this instance with SP6
    At the end of the deployment process, I got a message from JSPM stating that the deployment failed but all the components had the status deployed.
    I pushed further the investigation and found out in the file main_rules.ept.log the following problem
    PCD auto-import file main_rules.ept in no-overwrite-mode ...FAILED
    Import failed.
    Object ID: pcd:portal_content/administrator/super_admin/main_rules
    Transport File: D:\usr\sap\JD2\JC00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcdContent\no_overwrite\main_rules.ept
         at com.sapportals.portal.pcd.gl.transport.PcdGlTransportManager.handleXmlException(PcdGlTransportManager.java:984)
    < a lot of error messages here ... taken out for the sake of clarity>
    Original exception:
    java.lang.NullPointerException
    Though, the portal application is up and running! What can be the consequences of such an error? How to correct it?

    Hi everyone
    I had the same problem as you. After the deployment of SP6 JSPM told me that there was an error during portal deployment although all components had the status "Deployed" (newly installed system).
    PCD auto-import file main_rules.ept in no-overwrite-mode ...FAILED
    Import failed.
    Object ID: pcd:portal_content/administrator/super_admin/main_rules
    I opened a customer message @SAP:
    The solution is to rename the file "main_rules.ept.err" into "main_rules.ept" and restart the J2EE engine. If the file main_rules.ept was renamed to main_rules.ept.bak after the restart everything is OK acc. to SAP (-> note 1130469 ).
    Best regards
    Nik

  • DB Deployment failed in planning

    Hi:
    I installed Essbase and configured and tested and everything is ok. I installed Hyperion planning and when I tried to configure the database through configuration utility, I get the following error.
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, INFO, Validating dependencies...
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel$5, DEBUG, Product: Planning; Dependencies: [email protected], com.hyperion.cis.config.dependencies.DirectTaskDependency@df88d2, [email protected]
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, DEBUG, task to execute: relationalStorageConfiguration
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, DEBUG, task to execute: HspDBPropertyLocation
    (Oct 12, 2008, 11:28:55 AM), com.hyperion.cis.config.wizard.PanelEventDispatcher, DEBUG, constructor
    (Oct 12, 2008, 11:28:56 AM), com.hyperion.cis.config.wizard.DBTypeSelectionPanel, DEBUG, DBTypeSelectionPanel in queryExit
    (Oct 12, 2008, 11:28:56 AM), com.hyperion.cis.config.wizard.PanelEventDispatcher, DEBUG, constructor
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.wizard.DBSetupPanel, INFO, Creating new Connecting info: user=admin, password=*****, jdbcUrl=jdbc:hyperion:sqlserver://192.168.1.101:1433;DatabaseName=plandb, DatabaseType=MSSQLServer.
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, compare driver strings(org.hsqldb.jdbcDriver,hyperion.jdbc.sqlserver.SQLServerDriver)
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, compare driver strings(hyperion.jdbc.sqlserver.SQLServerDriver,hyperion.jdbc.sqlserver.SQLServerDriver)
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, driver class is hyperion.jdbc.sqlserver.SQLServerDriver
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, Make jdbcURL
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, Make Connection using jdbc:hyperion:sqlserver://192.168.1.101:1433;DatabaseName=plandb;loadLibraryPath=C:\Hyperion\Home/common/JDBC/DataDirect/3.6/lib;AuthenticationMethod=ntlm
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, validate DB, version
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, DB Version check
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.AbstractProductDBConfigurator, DEBUG, majors(9 vs 8), minors(0 vs 0)
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.wizard.DBSetupPanel, INFO, Checking schema for product: Planning and connect info: user=windowsAuthentication, password=*****, jdbcUrl=jdbc:hyperion:sqlserver://192.168.1.101:1433;DatabaseName=plandb;loadLibraryPath=C:\Hyperion\Home/common/JDBC/DataDirect/3.6/lib;AuthenticationMethod=ntlm, DatabaseType=MSSQLServer.
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Inside checkSchema()
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Query db to see if tables already exist.
    (Oct 12, 2008, 11:28:58 AM), com.hyperion.cis.config.wizard.DBSetupPanel, INFO, SchemaConfigException: 1: HSPSYS_CLUSTER already exists.
    (Oct 12, 2008, 11:29:00 AM), com.hyperion.cis.config.wizard.ProductCustomInputPanel, DEBUG, managerClassName: com.hyperion.planning.HspDBPropertiesLocationPanel
    (Oct 12, 2008, 11:29:00 AM), com.hyperion.planning.HspDBPropertiesLocationPanel, DEBUG, In HspDBPropertiesLocationPanel queryEnter()
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Database is: plandb
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, jdbcUrl is: jdbc:hyperion:sqlserver://192.168.1.101:1433
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, ERROR, HyperionSQLServer JDBC DriverSQLServerThere is already an object named 'HSPSYS_PI_INFO' in the database.
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Full Name of file created C:\Hyperion\Home\Planning/config/PlanningSystemDB.properties
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Inside uploadFileToHub()
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, File C:\Hyperion\Home/common/config/product/planning/9.3.1.0/planningHub.properties doesn't exist
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, Getting CSS instance
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, ERROR, Exception generated when creating CSS connection: For input string: "null"
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.planning.HspDBConfigurator, DEBUG, For input string: "null"
    (Oct 12, 2008, 11:29:07 AM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    com.hyperion.cis.config.ProcessingException
    at com.hyperion.planning.HspDBConfigurator.configure(HspDBConfigurator.java:222)
    at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDBConfigTask(RunAllTasksWizardAction.java:282)
    at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:151)
    at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    I am using Windows XP, 4 GB RAM, SQL 2005 server.
    Any ideas?
    Jay

    Hi
    I'm posting my problem on this thread cos i feel i'm currently having a similar issue and you guys could help me out.
    I installed Planning 9.3.1 and also Shared Services on my machine. Im trying to do 2 things now: 1. Configure Shared Services and 2. Configure Planning
    First, i went ahead to configure Shared Services with the database (i have Oracle 10g) and it failed with error: "DB Deployment Failed!"
    This is from the log file:
    (May 16, 2011, 06:08:59 PM), com.hyperion.hub.CreateHubSchema, DEBUG, Executing Statement CREATE TABLE ces_participant_events(participant_event_id varchar(100) NOT NULL,participant_id varchar(100), objtype smallint NOT NULL,objvalue blob,CONSTRAINT ces_participant_events_pk PRIMARY KEY (participant_event_id),CONSTRAINT fk_participant_id FOREIGN KEY (participant_id) REFERENCES ces_participant(participant_id) ON DELETE CASCADE )
    (May 16, 2011, 06:08:59 PM), com.hyperion.hub.CreateHubSchema, DEBUG, Executing Statement CREATE TABLE ces_tasks_result(task_id varchar(100) NOT NULL,task_result blob, CONSTRAINT ces_tasks_result_pk PRIMARY KEY (task_id))
    (May 16, 2011, 06:08:59 PM), com.hyperion.hub.CreateHubSchema, DEBUG, Executing Statement commit
    (May 16, 2011, 06:08:59 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Refresh OpenLDAP DB, status will be written to C:\Hyperion\SharedServices\9.3.1\openLDAP/logs/exec.log.
    (May 16, 2011, 06:08:59 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Execute ldapdelete command to delete all entries.
    (May 16, 2011, 06:08:59 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Execute command: C:\Hyperion\SharedServices\9.3.1\openLDAP\ldapdelete -r -D "cn=root,dc=css,dc=hyperion,dc=com" -x -w security -h localhost -p 58089 "dc=css,dc=hyperion,dc=com"
    (May 16, 2011, 06:09:00 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, The css file set to use for Open LDAP: C:\Hyperion\SharedServices\9.3.1\openLDAP\css.ldif
    (May 16, 2011, 06:09:00 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Execute ldapmodify command to seed initial entries.
    (May 16, 2011, 06:09:00 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Execute command: C:\Hyperion\SharedServices\9.3.1\openLDAP\hssupdate.bat C:\Hyperion\SharedServices\9.3.1\openLDAP
    (May 16, 2011, 06:09:00 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Execute command: C:\Hyperion\SharedServices\9.3.1\openLDAP\ldapmodify -D "cn=root,dc=css,dc=hyperion,dc=com" -a -c -h localhost -p 58089 -v -x -w security -f "C:\Hyperion\SharedServices\9.3.1\openLDAP\css.ldif"
    (May 16, 2011, 06:09:01 PM), com.hyperion.hub.HubDBConfigurator, DEBUG, Execute command: C:\Hyperion\SharedServices\9.3.1\openLDAP\ldapmodify -D "cn=root,dc=css,dc=hyperion,dc=com" -c -h localhost -p 58089 -v -x -w security -f "C:\Hyperion\SharedServices\9.3.1\openLDAP\css.ldif"
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubDBConfigurator, ERROR, Error:
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at java.util.ArrayList.RangeCheck(Unknown Source)
         at java.util.ArrayList.get(Unknown Source)
         at com.hyperion.hub.HubDBConfigurator.getDeployLocation(HubDBConfigurator.java:207)
         at com.hyperion.hub.HubDBConfigurator.configure(HubDBConfigurator.java:183)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDBConfigTask(RunAllTasksWizardAction.java:282)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:151)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (May 16, 2011, 06:09:03 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    com.hyperion.cis.config.ProcessingException
         at com.hyperion.hub.HubDBConfigurator.configure(HubDBConfigurator.java:201)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDBConfigTask(RunAllTasksWizardAction.java:282)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:151)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (May 16, 2011, 06:09:03 PM), com.hyperion.cis.config.ConfigToolPropertiesHelper, DEBUG, Deployment dir: C:\Hyperion\deployments\Tomcat5
    (May 16, 2011, 06:09:03 PM), com.hyperion.cis.config.AppServerDeployer, DEBUG, Starting Tomcat 5 deployment...
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\CMS.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\CMS.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\HSSLogger.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\HSSLogger.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\Hub.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\Hub.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\manage_data.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\manage_data.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\scheduler.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\scheduler.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\SearchServiceConfig.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\SearchServiceConfig.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\slide.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\slide.properties
    (May 16, 2011, 06:09:03 PM), com.hyperion.hub.HubAppServerDeployer, DEBUG, Copying C:\Hyperion\deployments\Tomcat5\SharedServices9\config\WorkflowEngine.properties to C:\Hyperion\SharedServices\9.3.1\cssbackup\Tomcat5\WorkflowEngine.properties

  • Deploy failed on Server AdminServer

    I am deploying WebLogicFusionDemo. I using Jdev 11.1.1.4 and SOA Suite 11.1.1.4 to deploy Supplemental Instructions for Running Fusion Order Demo for Oracle SOA Suite
    11g Release 1 (11.1.1.4.0)
    However, in the step of running "build.xml -> server-setup-seed-deploy-test" (compile-deploy-all), I get error as follow:
    Buildfile: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\bin\build.xml
    [echo] Ant: Apache Ant version 1.7.1 compiled on June 27 2008 Java: 1.6
    [echo] Using mds-type : db
    [input] skipping input as property server.password has already been set.
    init:
    [echo] SOA Suite 11g version:
    [java]
    [java] *****************************************************************************
    [java] Oracle SOA Server 11.1.1.4.0
    [java] 0
    [java] Thu Jan 06 22:07:53 PST 2011
    [java] release
    [java] PCBPEL_11.1.1.4.0_GENERIC_110106.1932.5682
    [java]
    [echo] soa infra mgmt home: D:\Oracle\Middleware\jdeveloper\/../oracle_common
    compile-build-all:
    [echo] Building and compiling SOA Fusion Order Demo ..
    clean:
    [echo] Cleanup of OrderApprovalHumanTask
    [delete] Deleting: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\deploy\OrderApprovalHumanTask.war
    [delete] Deleting: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\deploy\OrderApprovalHumanTask.ear
    init:
    compile:
    [javac] Compiling 6 source files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\public_html\WEB-INF\classes
    copy:
    [copy] Copying 191 files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\public_html\WEB-INF\classes
    create-ear:
    [copy] Copying 4 files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\public_html\WEB-INF\lib
    [war] Building war: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\deploy\OrderApprovalHumanTask.war
    [delete] Deleting directory E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\public_html\WEB-INF\lib
    setupDeploymentEnvironment:
    [echo] Step1: copy template ./templates/connections.xml.seed to ../../.adf/META-INF/connections.xml
    [copy] Copying 1 file to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\.adf\META-INF
    [echo] Step2: setup descriptor, soa-only? false, modifying ../../.adf/META-INF/connections.xml
    [echo] replacing ws-endpoint with localhost:7001/StoreFrontServiceHooks/StoreFrontService
    [echo] replacing ws-binding with {www.globalcompany.example.com}StoreFrontServiceSoapHttp
    [mkdir] Created dir: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\deploy\adf\META-INF
    [copy] Copying 2 files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\deploy\adf\META-INF
    [echo] Creating custom adf config for customization of connections.xml - datasource: jdbc/mds/MDS_LocalTxDataSource
    [mkdir] Created dir: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\deploy\lib
    [copy] Copying 1 file to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\deploy\lib
    [ear] Building ear: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\deploy\OrderApprovalHumanTask.ear
    [delete] Deleting directory E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\deploy\adf
    [delete] Deleting directory E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderApprovalHumanTask\deploy\lib
    create-deployable-composite:
    [echo] oracle.home = D:\Oracle\Middleware\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    clean:
    [echo] deleting E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderBookingComposite\bin/..//deploy/sca_OrderBookingComposite_rev1.0.jar
    [delete] Deleting: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderBookingComposite\deploy\sca_OrderBookingComposite_rev1.0.jar
    init:
    scac-validate:
    [echo] Running scac-validate in E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderBookingComposite\bin/..//composite.xml
    [echo] oracle.home = D:\Oracle\Middleware\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    scac:
    [scac] Validating composite "E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderBookingComposite\bin/..//composite.xml"
    [scac] Info: SchemaManager.isIncrementalBuildSupported XMLSchema incremental build enabled.
    [scac] Composed "OrderProcessor" in 192.2 milliseconds [nodes 138=10+128, 717.9 nodes/sec]
    [scac] Compiled "OrderProcessor" in 4.336 seconds
    [scac] Gathered 14 files in 1.5 milliseconds
    [scac] Packaged "OrderProcessor" in 35.7 milliseconds
    [scac] Composed "InternalWarehouseService" in 15.1 milliseconds [nodes 6=0+6, 396.3 nodes/sec]
    [scac] Compiled "InternalWarehouseService" in 2.133 seconds
    [scac] Gathered 3 files in 1.1 milliseconds
    [scac] Packaged "InternalWarehouseService" in 10.4 milliseconds
    [scac] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    [scac] >> modified xmlbean locale class in use
    [scac] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    [scac] warning: location {ns:composite/ns:reference[@name='CreditCardAuthorizationService']}(170,128): Failed to Find Binding "CreditCardAuthorizationService":"{http://www.globalcompany.example.com/ns/CreditAuthorizationService}CreditAuthorizationPort" in WSDL Manager
    [scac] warning: location {ns:composite/ns:reference[@name='PartnerSupplierService']}(163,122): Failed to Find Binding "PartnerSupplierService":"{http://www.partnersupplier.example.com/ns/warehouse}ExternalPartnerSupplier_pt" in WSDL Manager
    [scac] warning: location {ns:composite/ns:reference[@name='StoreFrontService']}(180,162): Failed to Find Binding "StoreFrontService":"{www.globalcompany.example.com}StoreFrontServiceSoapHttpPort" in WSDL Manager
    [scac] warning: in OrderProcessor.bpel(223): <from> type "{http://www.w3.org/2001/XMLSchema}long" <to> type "{http://www.w3.org/2001/XMLSchema}string" not Compatible
    [scac] warning: in OrderProcessor.bpel(310): <from> type "{http://www.w3.org/2001/XMLSchema}decimal" <to> type "{http://www.w3.org/2001/XMLSchema}string" not Compatible
    [scac] warning: in OrderProcessor.bpel(310): <from> type "{http://www.w3.org/2001/XMLSchema}integer" <to> type "{http://www.w3.org/2001/XMLSchema}string" not Compatible
    [scac] warning: in OrderProcessor.bpel(390): <from> type "{http://www.w3.org/2001/XMLSchema}decimal" <to> type "{http://www.w3.org/2001/XMLSchema}double" not Compatible
    [scac] warning: in OrderProcessor.bpel(390): <from> type "{http://www.w3.org/2001/XMLSchema}string" <to> type "{http://www.w3.org/2001/XMLSchema}boolean" not Compatible
    [scac] warning: in OrderProcessor.bpel(429): <from> type "{http://www.w3.org/2001/XMLSchema}boolean" <to> type "{http://www.w3.org/2001/XMLSchema}string" not Compatible
    [scac] warning: in OrderProcessor.bpel(571): <from> type "{http://www.w3.org/2001/XMLSchema}integer" <to> type "{http://www.w3.org/2001/XMLSchema}string" not Compatible
    package:
    [echo] oracle.home = D:\Oracle\Middleware\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    compile-source:
    [mkdir] Created dir: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderBookingComposite\dist
    [copy] Copying 141 files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderBookingComposite\dist
    [copy] Warning: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderBookingComposite\src not found.
    [copy] Warning: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderBookingComposite\SCA-INF\src not found.
    [copy] Copying 6 files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderBookingComposite\dist\SCA-INF\classes
    [jar] Building jar: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderBookingComposite\deploy\sca_OrderBookingComposite_rev1.0.jar
    [delete] Deleting directory E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderBookingComposite\dist
    setupDeploymentEnvironment:
    [copy] Copying 1 file to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderBookingComposite\bin
    [echo] Setting up deployment plan, modifying orderbooking_deployment_plan.xml
    [echo] Replacing ws-endpoint with localhost:7001/StoreFrontServiceHooks/StoreFrontService
    [echo] Replacing soa server and wls server information
    [echo] -SOA: localhost 7001
    [echo] Replacing file adapter endpoint with /tmp
    [echo] Disabling global bam sensors? false
    [echo] Amending jndi destination for jms topic jms/DemoSupplierTopicUdd
    [echo] Replacing soa partition name with soaFusionOrderDemo
    [echo] Replacing values for bam connection in connections.xml
    [echo] Bam server host: localhost
    [echo] Bam server host: 9001
    [echo] Bam server user: weblogic
    [echo] Spring lib path: D:\Oracle\Middleware\jdeveloper\/../oracle_common/modules/org.springframework_2.5.jar
    compile-classes:
    create-deployable-composite:
    [echo] oracle.home = D:\Oracle\Middleware\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    clean:
    [echo] deleting E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\bin/..//deploy/sca_PartnerSupplierComposite_rev1.0.jar
    [delete] Deleting: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\deploy\sca_PartnerSupplierComposite_rev1.0.jar
    init:
    scac-validate:
    [echo] Running scac-validate in E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\bin/..//composite.xml
    [echo] oracle.home = D:\Oracle\Middleware\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    scac:
    [scac] Validating composite "E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\bin/..//composite.xml"
    [scac] Info: SchemaManager.isIncrementalBuildSupported XMLSchema incremental build enabled.
    [scac] Composed "ExternalPartnerSupplier" in 65.8 milliseconds [nodes 6=0+6, 91.2 nodes/sec]
    [scac] Compiled "ExternalPartnerSupplier" in 3.266 seconds
    [scac] Gathered 3 files in 0.8 milliseconds
    [scac] Packaged "ExternalPartnerSupplier" in 11.6 milliseconds
    [scac] ### clazz: interface com.otn.sample.fod.soa.internalsupplier.IInternalPartnerSupplier
    [scac] ### clazz: interface writequoterequest.partnersuppliercomposite.weblogicfusionorderdemo.file.adapter.pcbpel.com.oracle.xmlns.Write_ptt
    [scac] ### qname: {http://xmlns.oracle.com/pcbpel/adapter/file/WebLogicFusionOrderDemo/PartnerSupplierComposite/WriteQuoteRequest}Write_ptt
    [scac] ### clazz: interface com.otn.sample.fod.soa.externalps.IExternalPartnerSupplierService
    [scac] ### clazz: interface com.otn.sample.fod.soa.externalps.IExternalPartnerSupplierService
    [scac] ### clazz: interface com.otn.sample.fod.soa.internalsupplier.IInternalPartnerSupplier
    [scac] ### clazz: interface com.otn.sample.fod.soa.internalsupplier.IInternalPartnerSupplier
    [scac] ### clazz: interface com.otn.sample.fod.soa.internalsupplier.IInternalPartnerSupplier
    [scac] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    [scac] >> modified xmlbean locale class in use
    [scac] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    [scac] warning: in PartnerSupplierMediator.mplan: Case "ExternalPartnerSupplier.externalpartnersupplier_client.process" doesnt have any payload transformation Please make sure source and target message part name are same and of same type. Otherwise, target reference may fail to execute with error message like "Input sourcelike Null" or "Part not found"
    package:
    [echo] oracle.home = D:\Oracle\Middleware\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    compile-source:
    [echo] deleting .class files of E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\bin/..//SCA-INF/classes
    [javac] Compiling 18 source files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\SCA-INF\classes
    [javac] 。
    [javac] -Xlint:unchecked recompile。
    [mkdir] Created dir: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\dist
    [copy] Copying 66 files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\dist
    [copy] Warning: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\SCA-INF\src not found.
    [copy] Copying 7 files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\dist\SCA-INF\classes
    [jar] Building jar: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\deploy\sca_PartnerSupplierComposite_rev1.0.jar
    [delete] Deleting directory E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\dist
    [echo] Spring lib path: D:\Oracle\Middleware\jdeveloper\/../oracle_common/modules/org.springframework_2.5.jar
    setupDeploymentEnvironment:
    [copy] Copying 1 file to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\PartnerSupplierComposite\bin
    [echo] Setting up deployment plan, modifying PartnerSupplierComposite_cfgplan.xml
    [echo] Replacing ejb-name with WebLogicFusionOrderDemo-ExternalLegacyPartnerSupplierJScaEjb
    [echo] Replacing file adapter endpoint with /tmp/quote
    create-deployable-composite:
    [echo] oracle.home = D:\Oracle\Middleware\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    clean:
    [echo] deleting E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderSDOComposite\bin/..//deploy/sca_OrderSDOComposite_rev1.0.jar
    [delete] Deleting: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderSDOComposite\deploy\sca_OrderSDOComposite_rev1.0.jar
    init:
    scac-validate:
    [echo] Running scac-validate in E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderSDOComposite\bin/..//composite.xml
    [echo] oracle.home = D:\Oracle\Middleware\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    scac:
    [scac] Validating composite "E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderSDOComposite\bin/..//composite.xml"
    [scac] Info: SchemaManager.isIncrementalBuildSupported XMLSchema incremental build enabled.
    [scac] Composed "CustomerAndOrderService" in 123.9 milliseconds [nodes 63=1+62, 508.4 nodes/sec]
    [scac] Compiled "CustomerAndOrderService" in 3.464 seconds
    [scac] Gathered 5 files in 0.7 milliseconds
    [scac] Packaged "CustomerAndOrderService" in 13.5 milliseconds
    [scac] warning: in CustomerAndOrderService.bpel(254): <from> type "{http://www.w3.org/2001/XMLSchema}anySimpleType" <to> type "{http://www.w3.org/2001/XMLSchema}integer" not Compatible
    [scac] warning: in CustomerAndOrderService.bpel(359): <from> type "{http://www.w3.org/2001/XMLSchema}integer" <to> type "{http://www.w3.org/2001/XMLSchema}long" not Compatible
    [scac] warning: in CustomerAndOrderService.bpel(493): <from> type "{http://www.w3.org/2001/XMLSchema}integer" <to> type "{http://www.w3.org/2001/XMLSchema}long" not Compatible
    package:
    [echo] oracle.home = D:\Oracle\Middleware\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    compile-source:
    [mkdir] Created dir: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderSDOComposite\dist
    [copy] Copying 12 files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderSDOComposite\dist
    [copy] Warning: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderSDOComposite\src not found.
    [copy] Warning: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderSDOComposite\SCA-INF\src not found.
    [copy] Copying 6 files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderSDOComposite\dist\SCA-INF\classes
    [jar] Building jar: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderSDOComposite\deploy\sca_OrderSDOComposite_rev1.0.jar
    [delete] Deleting directory E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\OrderSDOComposite\dist
    create-deployable-composite:
    [echo] oracle.home = D:\Oracle\Middleware\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    clean:
    [echo] deleting E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\B2BX12OrderGateway\bin/..//deploy/sca_B2BX12OrderGateway_rev1.0.jar
    [delete] Deleting: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\B2BX12OrderGateway\deploy\sca_B2BX12OrderGateway_rev1.0.jar
    init:
    scac-validate:
    [echo] Running scac-validate in E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\B2BX12OrderGateway\bin/..//composite.xml
    [echo] oracle.home = D:\Oracle\Middleware\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    scac:
    [scac] Validating composite "E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\B2BX12OrderGateway\bin/..//composite.xml"
    [scac] Info: SchemaManager.isIncrementalBuildSupported XMLSchema incremental build enabled.
    [scac] Composed "B2BOrderProcessingEngine" in 113.7 milliseconds [nodes 45=2+43, 395.9 nodes/sec]
    [scac] Compiled "B2BOrderProcessingEngine" in 3.756 seconds
    [scac] Gathered 7 files in 1.3 milliseconds
    [scac] Packaged "B2BOrderProcessingEngine" in 19.7 milliseconds
    [scac] warning: location {ns:composite/ns:reference[@name='StoreFrontService']}(48,162): Failed to Find Binding "StoreFrontService":"{www.globalcompany.example.com}StoreFrontServiceSoapHttpPort" in WSDL Manager
    [scac] warning: location {ns:composite/ns:reference[@name='OrderBookingService']}(59,116): Failed to Find Binding "OrderBookingService":"{http://www.globalcompany.example.com/ns/OrderBookingService}OrderProcessor_pt" in WSDL Manager
    [scac] warning: in B2BOrderProcessingEngine.componentType: BPEL component B2BOrderProcessingEngine "bpel.config.use.events" - ingore。
    [scac] warning: in B2BOrderProcessingEngine.bpel(188): <from> type "{http://www.w3.org/2001/XMLSchema}integer" and <to> type "{http://www.w3.org/2001/XMLSchema}string" not Compatible
    package:
    [echo] oracle.home = D:\Oracle\Middleware\jdeveloper\
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    compile-source:
    [mkdir] Created dir: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\B2BX12OrderGateway\dist
    [copy] Copying 25 files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\B2BX12OrderGateway\dist
    [copy] Warning: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\B2BX12OrderGateway\src not found.
    [copy] Warning: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\B2BX12OrderGateway\SCA-INF\src not found.
    [copy] Copying 6 files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\B2BX12OrderGateway\dist\SCA-INF\classes
    [jar] Building jar: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\B2BX12OrderGateway\deploy\sca_B2BX12OrderGateway_rev1.0.jar
    [delete] Deleting directory E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\B2BX12OrderGateway\dist
    setupDeploymentEnvironment:
    [copy] Copying 1 file to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\B2BX12OrderGateway\bin
    [echo] Setting up deployment plan, modifying B2BX12OrderGateway_deployment_plan.xml
    [echo] Replacing ws-endpoint with localhost:7001/StoreFrontServiceHooks/StoreFrontService
    [echo] Replacing soa server and wls server information
    [echo] -SOA: localhost 7001
    [echo] Replacing communication style, eventbased? true
    [echo] Replacing soa partition name with soaFusionOrderDemo
    [echo] Wls home: D:\Oracle\Middleware\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: D:\Oracle\Middleware\jdeveloper\
    init:
    compile:
    create-war:
    [echo] Deploying jsca shared lib? true
    [echo] Wls home: D:\Oracle\Middleware\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: D:\Oracle\Middleware\jdeveloper\
    create-ear:
    [echo] global: true > ejb: ${use.ejb} jsca: true
    [echo] Deploying jsca shared lib? true
    [echo] Wls home: D:\Oracle\Middleware\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: D:\Oracle\Middleware\jdeveloper\
    clean:
    [echo] Cleaning up external partner supplier ejb project ../classes/../deploy
    [delete] Deleting: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\ExternalPartnerSupplierEjb.ear
    [echo] Deploying jsca shared lib? true
    [echo] Wls home: D:\Oracle\Middleware\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: D:\Oracle\Middleware\jdeveloper\
    init:
    copy:
    [copy] Copying 5 files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\classes
    compile:
    [javac] Compiling 6 source files to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\classes
    [javac] Note: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\src\com\otn\sample\fod\soa\externalps\test\EpsSessionEJBClient.java
    create-ejb-ear:
    [echo] Deploying jsca shared lib? true
    [echo] Wls home: D:\Oracle\Middleware\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: D:\Oracle\Middleware\jdeveloper\
    init:
    copy:
    compile:
    create-jsca-ear:
    [mkdir] Created dir: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\APP-INF\lib
    [copy] Copying 1 file to E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\APP-INF\lib
    [echo] ../classes/meta-inf/
    [jar] Building jar: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\APP-INF\lib\ExternalPartnerSupplierScaModule.jar
    [jar] Building MANIFEST-only jar: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\empty.jar
    [ear] Building ear: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\ExternalPartnerSupplierEjb.ear
    compile-deploy-all:
    [echo] Deploying SOA Fusion Order Demo ..
    [echo] Deploying jsca shared lib? true
    [echo] Wls home: D:\Oracle\Middleware\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: D:\Oracle\Middleware\jdeveloper\
    deploy-application:
    [echo] Deploying jsca shared lib? true
    [echo] Wls home: D:\Oracle\Middleware\jdeveloper\/../wlserver_10.3
    [echo] Oracle home: D:\Oracle\Middleware\jdeveloper\
    deploy-jsca-library:
    [wldeploy] weblogic.Deployer -remote -noexit -name weblogic-sca -source E:\scratch\cutschig\fmwhome\wlserver_10.3\common\deployable-libraries\weblogic-sca-1.1.war -targets AdminServer -adminurl t3://localhost:7001 -user weblogic -password ******** -deploy -library
    [wldeploy] weblogic.Deployer invoked with options: -remote -noexit -name weblogic-sca -source E:\scratch\cutschig\fmwhome\wlserver_10.3\common\deployable-libraries\weblogic-sca-1.1.war -targets AdminServer -adminurl t3://localhost:7001 -user weblogic -deploy -library
    [wldeploy] <2011-2-10 > <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating deploy operation for application, weblogic-sca [archive: E:\scratch\cutschig\fmwhome\wlserver_10.3\common\deployable-libraries\weblogic-sca-1.1.war], to AdminServer .>
    [wldeploy] weblogic.Deployer -remote -upload -noexit -name ExternalPartnerSupplierEjb -source E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\ExternalPartnerSupplierEjb.ear -targets AdminServer -adminurl t3://localhost:7001 -user weblogic -password ******** -deploy
    [wldeploy] weblogic.Deployer invoked with options: -remote -upload -noexit -name ExternalPartnerSupplierEjb -source E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\ExternalPartnerSupplierEjb.ear -targets AdminServer -adminurl t3://localhost:7001 -user weblogic -deploy
    [wldeploy] <2011-2-10 CST> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating deploy operation for application, ExternalPartnerSupplierEjb [archive: E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\deploy\ExternalPartnerSupplierEjb.ear], to AdminServer .>
    [wldeploy] Task 15 initiated: [Deployer:149026]deploy application ExternalPartnerSupplierEjb on AdminServer.
    [wldeploy] Task 15 failed: [Deployer:149026]deploy application ExternalPartnerSupplierEjb on AdminServer.
    [wldeploy] Target state: deploy failed on Server AdminServer
    [wldeploy] weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: weblogic-sca, exact-match: false].
    [wldeploy]
    [wldeploy]
    BUILD FAILED
    E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\bin\build.xml:172: The following error occurred while executing this line:
    E:\Jdev_SOA_Workspace\FusionOrderDemo_R1PS3\CompositeServices\ExternalLegacyPartnerSupplierEjb\bin\build.xml:169: weblogic.Deployer$DeployerException: weblogic.deploy.api.tools.deployer.DeployerException: Task 15 failed: [Deployer:149026]deploy application ExternalPartnerSupplierEjb on AdminServer.
    Target state: deploy failed on Server AdminServer
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: weblogic-sca, exact-match: false].
    Total time: 1 minute 11 seconds

    It seems you have not set property "soa.server.oracle.home" in bin/build.properties correctly. Clemens has mentioned the resolution here (see the first one) -
    http://blogs.oracle.com/soabpm/2009/11/fusion_order_demo_-tipstrick.html
    This happens because the ExternalSupplierEjb has a dependency on a shared library that get's deployed earlier - and in this case case could not be deployed. The key is to get "soa.server.oracle.home" in bin/build.properties right.
    In my case this property points to "/scratch/cutschig/fmwhome/AS11gR1SOA". In a sibling directory of AS11gR1SOA you should find the wlserver_10.3 directory (in my case /scratch/cutschig/fmwhome/wlserver_10.3)Regards,
    Anuj

  • MDT 2013 Server 2012 R2 Core Deployment Fails After Disabling ChecksumOffloads on NICs

    When changes are made to the Checksum offloads, the NICs reset themselves and I'm losing connectivity to the deployment share during the deployment process (LiteTouch).  It happens during a custom PowerShell script I'm running in the Task Sequence
    after "Tattoo".
    PowerShell Script:
    Disable-NetAdapterChecksumOffload -Name * -IpIPv4
    Disable-NetAdapterChecksumOffload -Name * -TcpIPv4
    Disable-NetAdapterChecksumOffload -Name * -UdpIPv4
    Disable-NetAdapterChecksumOffload -Name * -TcpIPv6
    Disable-NetAdapterChecksumOffload -Name * -UdpIPv6
    Disable-NetAdapterLso -Name * -IPv4
    Disable-NetAdapterLso -Name * -IPv6
    Disable-NetAdapterRss -Name *
    Here are the errors from the BDD.log (sorry couldn't get the _SMSTaskSequence.log)
    ZTIPowerShell processing completed successfully. ZTIPowerShell 8/25/2014 2:27:28 PM 0 (0x0000)
    Command completed, return code = -2147467259 LiteTouch 8/25/2014 2:27:29 PM 0 (0x0000)
    Litetouch deployment failed, Return Code = -2147467259  0x80004005 LiteTouch 8/25/2014 2:27:29 PM 0 (0x0000)
    For more information, consult the task sequencer log ...\SMSTS.LOG. LiteTouch 8/25/2014 2:27:29 PM 0 (0x0000)
    Property RetVal is now = -2147467259 LiteTouch 8/25/2014 2:27:29 PM 0 (0x0000)
    Unable to copy log to the network as no SLShare value was specified. LiteTouch 8/25/2014 2:27:29 PM 0 (0x0000)
    What I was thinking about trying was adding a few lines to the end of my script:
    1. PING 1.1.1.1 -n 1 -w 30000 >NUL
        This would give the server 30 seconds to right itself after resetting the NICs
    2. net use command to remap the share.
    Two questions regarding re-mapping the share.
       1. I'm assuming this will run as Administrator token.  Will this be an issue for continued deployment?
       2. At the beginning of the deployment process the Tech has to enter his/her credentials to access the deployment share to begin the deployment process.  Are those the credentials I need to continue using, or does MDT use some other credentials
    to access the deployment share that far into the deployment process (during state restore phase)?
    Thank you for taking time to read my post.
    -Cheers!

    Apologies for the delay in responding to this thread.
    It turns out that Broadcom NICs are the culprit!
    For some reason Broadcom doesn't grant you access to all the feature sets on their NICs when it comes to PowerShell.
    Same script runs against Intel NICs with no issues.
    I placed a 15 second pause in the script to allow NICs to reset, I then remap MDT network drive to continue the deployment process.  Big thanks to Keith for assisting with reconnecting the network drive!
    Here is the script I settled on:
    # All settings will not take, if target is using Broadcom NICs.
    # You will still need to manually set TCP IPv4 and IPv6 to disabled.
    # Commands to disable Checksum Offloads.
    Disable-NetAdapterChecksumOffload -Name * -IpIPv4
    Disable-NetAdapterChecksumOffload -Name * -TcpIPv4
    Disable-NetAdapterChecksumOffload -Name * -UdpIPv4
    Disable-NetAdapterChecksumOffload -Name * -TcpIPv6
    Disable-NetAdapterChecksumOffload -Name * -UdpIPv6
    Disable-NetAdapterLso -Name * -IPv4
    Disable-NetAdapterLso -Name * -IPv6
    Disable-NetAdapterRss -Name *
    # Pause script for 15 seconds to allow ample time for NICs to reset.
    Start-Sleep -s 15
    net use %DeployRoot% /u:"%UserDomain%\%UserID%" "%USerPassword%"
    # Pause script end for 5 seconds to allow completion of share recreation.
    Start-Sleep -s 5

  • Oracle.jdeveloper.deploy.DeployException: Deployment Failed

    Hello,
    W
    I am very new to JDeveloper. I am trying to run a jspx page fron JDeveloper 11, I am getting following errors, while running the page, Can you please help
    *** Using port 7101 ***
    "C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\bin\startWebLogic.cmd"
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\Oracle\MIDDLE~1\patch_wls1031\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\JDK160~1\lib\tools.jar;C:\Oracle\MIDDLE~1\utils\config\10.3.1.0\config-launch.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.1.0.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.0/lib/ant-all.jar;C:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\Oracle\Middleware\jdeveloper\webcenter\modules\oracle.portlet.server_11.1.1\oracle-portlet-api.jar;C:\Oracle\MIDDLE~1\JDEVEL~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar;C:\Oracle\product\10.2.0\db_1\LIB;C:\Program Files\Apache Software Foundation\Tomcat 6.0\lib\classes12.zip
    PATH=C:\Oracle\MIDDLE~1\patch_wls1031\profiles\default\native;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.0\bin;C:\Oracle\MIDDLE~1\JDK160~1\jre\bin;C:\Oracle\MIDDLE~1\JDK160~1\bin;C:\oracle\product\10.2.0\db_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\IBM\Infoprint Select;C:\Notes;C:\Program Files\XLView;C:\lotus\compnent;C:\Utilities;C:\Program Files\IBM\Personal Communications\;C:\Program Files\IBM\Trace Facility\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\ThinkPad\ConnectUtilities;C:\Program Files\Provision Networks\Virtual Access Client\;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_11"
    Java(TM) SE Runtime Environment (build 1.6.0_11-b03)
    Java HotSpot(TM) Client VM (build 11.0-b16, mixed mode)
    Starting WLS with line:
    C:\Oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Xverify:none -da -Dplatform.home=C:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Ddomain.home=C:\DOCUME~1\ADMINI~1\APPLIC~1\JDEVEL~1\SYSTEM~1.07\DEFAUL~1 -Doracle.home=C:\Oracle\MIDDLE~1\JDEVEL~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=C:\Oracle\MIDDLE~1\JDEVEL~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.security.jps.config=C:\DOCUME~1\ADMINI~1\APPLIC~1\JDEVEL~1\SYSTEM~1.07\DEFAUL~1\config\fmwconfig\jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.alternateTypesDirectory=C:\Oracle\MIDDLE~1\JDEVEL~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~1\JDEVEL~1\modules\oracle.oamprovider_11.1.1 -Dsso.filter.enable=true -DUSE_JAAS=false -Djps.policystore.hybrid.mode=false -Djps.combiner.optimize.lazyeval=true -Djps.combiner.optimize=true -Djps.auth=ACC -noverify -Doracle.core.ojdl.logging.usercontextprovider=oracle.core.ojdl.logging.impl.UserContextImpl -XX:+UseParallelGC -XX:+DisableExplicitGC -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1\patch_wls1031\profiles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic.Server
    <Nov 18, 2009 12:52:12 AM IST> <Notice> <WebLogicServer> <BEA-000395> <Following extensions directory contents added to the end of the classpath:
    C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\lib\mbeantypes\csp-id-asserter.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\beehive_ja.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\beehive_ko.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\beehive_zh_CN.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\beehive_zh_TW.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_ja.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_ko.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_zh_CN.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\p13n_wls_zh_TW.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\testclient_ja.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\testclient_ko.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\testclient_zh_CN.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\testclient_zh_TW.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_ja.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_ko.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_zh_CN.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\tuxedocontrol_zh_TW.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\workshop_ja.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\workshop_ko.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\workshop_zh_CN.jar;C:\Oracle\Middleware\wlserver_10.3\L10N\workshop_zh_TW.jar>
    <Nov 18, 2009 12:52:13 AM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 11.0-b16 from Sun Microsystems Inc.>
    <Nov 18, 2009 12:52:14 AM IST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.1.0 Wed Jun 10 22:24:41 MDT 2009 1227385 >
    <Nov 18, 2009 12:52:16 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Nov 18, 2009 12:52:16 AM IST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Nov 18, 2009 12:52:16 AM IST> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Nov 18, 2009 12:52:16 AM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00049. Log messages will continue to be logged in C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <Nov 18, 2009 12:52:16 AM IST> <Notice> <Log Management> <BEA-170019> <The server log file C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <Nov 18, 2009 12:52:25 AM IST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Nov 18, 2009 12:52:32 AM IST> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddi was not deployed. Error: [Deployer:149158]No application files exist at 'C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\uddi.war'.>
    <Nov 18, 2009 12:52:32 AM IST> <Warning> <Deployer> <BEA-149617> <Non-critical internal application uddiexplorer was not deployed. Error: [Deployer:149158]No application files exist at 'C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\uddiexplorer.war'.>
    <Nov 18, 2009 12:52:35 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Nov 18, 2009 12:52:35 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Nov 18, 2009 12:52:45 AM IST> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application TDM_FusionWeb is not versioned.>
    Nov 18, 2009 12:52:45 AM oracle.mds.internal.lcm.logging.MDSLCMLogger info
    INFO: Application ID : TDM_FusionWeb
    Nov 18, 2009 12:52:46 AM oracle.mds.internal.lcm.logging.MDSLCMLogger info
    INFO: "Metadata Services: Metadata archive (MAR) not found."
    Nov 18, 2009 12:52:46 AM JpsApplicationLifecycleListener Migrate Application Credential Store
    WARNING: Overwriting credentials is allowed in application credential store migration with Weblogic server running in Development Mode and system property 'jps.app.credential.overwrite.allowed' set to true
    <Nov 18, 2009 12:52:57 AM IST> <Warning> <HTTP> <BEA-101299> <The servlet-mapping for servlet-name "jsp" will override the default mapping for *.jsp. This can lead to a show code vulnerability.>
    Nov 18, 2009 12:52:57 AM oracle.mds.internal.lcm.logging.MDSLCMLogger info
    INFO: Application ID : TDM_FusionWeb_ADF
    <Nov 18, 2009 12:53:04 AM IST> <Error> <Deployer> <BEA-149605> <Failed to create App/Comp mbeans for AppDeploymentMBean wsm-pm. Error - weblogic.management.DeploymentException: C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear (The system cannot find the file specified) with : C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear (The system cannot find the file specified) with : C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:88)
         Truncated. see log file for complete stacktrace
    java.io.IOException: C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear (The system cannot find the file specified) with : C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:114)
         at java.util.jar.JarFile.<init>(JarFile.java:133)
         at java.util.jar.JarFile.<init>(JarFile.java:97)
         at weblogic.utils.jars.JarFileDelegate.<init>(JarFileDelegate.java:32)
         Truncated. see log file for complete stacktrace
    >
    <Nov 18, 2009 12:53:04 AM IST> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'wsm-pm' due to error weblogic.management.DeploymentException: C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear (The system cannot find the file specified) with : C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear.
    weblogic.management.DeploymentException: C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear (The system cannot find the file specified) with : C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear
         at weblogic.application.internal.EarDeploymentFactory.findOrCreateComponentMBeans(EarDeploymentFactory.java:193)
         at weblogic.application.internal.MBeanFactoryImpl.findOrCreateComponentMBeans(MBeanFactoryImpl.java:48)
         at weblogic.application.internal.MBeanFactoryImpl.createComponentMBeans(MBeanFactoryImpl.java:110)
         at weblogic.application.internal.MBeanFactoryImpl.initializeMBeans(MBeanFactoryImpl.java:76)
         at weblogic.management.deploy.internal.MBeanConverter.createApplicationMBean(MBeanConverter.java:88)
         Truncated. see log file for complete stacktrace
    java.io.IOException: C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear (The system cannot find the file specified) with : C:\Oracle\Middleware\user_projects\applications\DefaultDomain\wsm-pm.ear
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:114)
         at java.util.jar.JarFile.<init>(JarFile.java:133)
         at java.util.jar.JarFile.<init>(JarFile.java:97)
         at weblogic.utils.jars.JarFileDelegate.<init>(JarFileDelegate.java:32)
         Truncated. see log file for complete stacktrace
    >
    Nov 18, 2009 12:53:16 AM oracle.adf.share.config.ADFConfigFactory getInstance
    INFO: ADF Config instance implementation in use is : oracle.adf.share.config.MDSConfigFactory
    Nov 18, 2009 12:53:21 AM oracle.adf.mbean.share.connection.ConnectionsRuntimeMXBeanImpl getNonCachedConnectionsContext
    INFO: Registering Connection Runtime MBean
    Nov 18, 2009 12:53:21 AM oracle.adf.share.jndi.MDSBackingStore isReadOnlyMDSStore
    INFO: Read only backing store
    Nov 18, 2009 12:53:22 AM oracle.adf.share.jndi.MDSBackingStore isReadOnlyMDSStore
    INFO: Read only backing store
    Nov 18, 2009 12:53:22 AM oracle.adf.share.jndi.MDSBackingStore isReadOnlyMDSStore
    INFO: Read only backing store
    Nov 18, 2009 12:53:32 AM oracle.adf.mbean.share.connection.ConnectionsRuntimeMXBeanImpl getNonCachedConnectionsContext
    INFO: Registering Connection Runtime MBean
    Nov 18, 2009 12:53:32 AM oracle.adf.share.jndi.MDSBackingStore isReadOnlyMDSStore
    INFO: Read only backing store
    Nov 18, 2009 12:53:32 AM oracle.adf.share.jndi.MDSBackingStore documentExists
    INFO: MDS-00013: no metadata found for metadata object "/META-INF/connections.xml"
    Nov 18, 2009 12:53:32 AM oracle.adf.share.jndi.MDSBackingStore isReadOnlyMDSStore
    INFO: Read only backing store
    Nov 18, 2009 12:53:32 AM oracle.adf.share.jndi.MDSBackingStore isReadOnlyMDSStore
    INFO: Read only backing store
    Nov 18, 2009 12:53:32 AM oracle.adf.share.jndi.MDSBackingStore obtainMetadataObject
    SEVERE: Exception while getting mutable object
    oracle.mds.core.MetadataNotFoundException: MDS-00013: no metadata found for metadata object "/META-INF/adf-config.xml"
         at oracle.mds.core.MetadataObject.getBaseMOFromCache(MetadataObject.java:1625)
         at oracle.mds.core.MetadataObject.getBaseMO(MetadataObject.java:927)
         at oracle.mds.core.MDSSession.getBaseMO(MDSSession.java:2627)
         at oracle.mds.core.MDSSession.getMetadataObject(MDSSession.java:1144)
         at oracle.adf.share.jndi.MDSBackingStore.obtainMetadataObject(MDSBackingStore.java:401)
         at oracle.adf.share.jndi.MDSBackingStore.getMOBean(MDSBackingStore.java:462)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.init(RuntimeMXBeanImpl.java:151)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.<init>(RuntimeMXBeanImpl.java:146)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.<init>(RuntimeMXBeanImpl.java:139)
         at oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack.contextInitialized(ADFConfigLifeCycleCallBack.java:100)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1799)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3041)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1374)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:452)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:629)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:206)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:53)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
         at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:196)
         at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
         at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Nov 18, 2009 12:53:32 AM oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack contextInitialized
    SEVERE: Failed to create config mbean.
    java.lang.Exception: oracle.mds.core.MetadataNotFoundException: MDS-00013: no metadata found for metadata object "/META-INF/adf-config.xml"
         at oracle.adf.share.jndi.MDSBackingStore.obtainMetadataObject(MDSBackingStore.java:422)
         at oracle.adf.share.jndi.MDSBackingStore.getMOBean(MDSBackingStore.java:462)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.init(RuntimeMXBeanImpl.java:151)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.<init>(RuntimeMXBeanImpl.java:146)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.<init>(RuntimeMXBeanImpl.java:139)
         at oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack.contextInitialized(ADFConfigLifeCycleCallBack.java:100)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1799)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3041)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1374)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:452)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:629)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:206)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:53)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
         at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
         at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:196)
         at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
         at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: oracle.mds.core.MetadataNotFoundException: MDS-00013: no metadata found for metadata object "/META-INF/adf-config.xml"
         at oracle.mds.core.MetadataObject.getBaseMOFromCache(MetadataObject.java:1625)
         at oracle.mds.core.MetadataObject.getBaseMO(MetadataObject.java:927)
         at oracle.mds.core.MDSSession.getBaseMO(MDSSession.java:2627)
         at oracle.mds.core.MDSSession.getMetadataObject(MDSSession.java:1144)
         at oracle.adf.share.jndi.MDSBackingStore.obtainMetadataObject(MDSBackingStore.java:401)
         ... 41 more
    <Nov 18, 2009 12:53:40 AM IST> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Nov 18, 2009 12:53:40 AM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00058. Log messages will continue to be logged in C:\Documents and Settings\Administrator\Application Data\JDeveloper\system11.1.1.1.33.54.07\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <Nov 18, 2009 12:53:40 AM IST> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    Nov 18, 2009 12:53:41 AM oracle.wsm.common.logging.WsmMessageLogger logSevere
    SEVERE: Failure in looking up EJB component QueryService#oracle.wsm.policymanager.ejb.IStringQueryServiceRemote.
    <Nov 18, 2009 12:53:41 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Nov 18, 2009 12:53:41 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Nov 18, 2009 12:53:41 AM IST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Nov 18, 2009 12:53:41 AM IST> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <Nov 18, 2009 12:53:41 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Nov 18, 2009 12:53:41 AM IST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    DefaultServer startup time: 91718 ms.
    DefaultServer started.
    [Running application Application12 on Server Instance DefaultServer...]
    <Nov 18, 2009 12:53:47 AM IST> <Warning> <Deployer> <BEA-149124> <Failures were detected while initiating deploy task for application 'Application12'. Error is: '[Deployer:149164]The domain edit lock is owned by another session in exclusive mode - hence this deployment operation cannot proceed.'>
    [12:53:47 AM] Weblogic Server Exception: weblogic.management.ManagementException: [Deployer:149164]The domain edit lock is owned by another session in exclusive mode - hence this deployment operation cannot proceed.
    [12:53:47 AM] See server logs or server console for more details.
    oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
    [12:53:47 AM] #### Deployment incomplete. ####
    oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:341)
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.deployImpl(Jsr88RemoteDeployer.java:235)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdeveloper.deploy.common.BatchDeployer.deployImpl(BatchDeployer.java:82)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.WrappedDeployer.deployImpl(WrappedDeployer.java:39)
         at oracle.jdeveloper.deploy.common.AbstractDeployer.deploy(AbstractDeployer.java:94)
         at oracle.jdevimpl.deploy.fwk.DeploymentManagerImpl.deploy(DeploymentManagerImpl.java:442)
         at oracle.jdeveloper.deploy.DeploymentManager.deploy(DeploymentManager.java:209)
         at oracle.jdevimpl.runner.adrs.AdrsStarter$6$1.run(AdrsStarter.java:1469)
    Caused by: oracle.jdeveloper.deploy.DeployException: oracle.jdeveloper.deploy.DeployException: Deployment Failed
         at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:483)
         at oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer.doDeploymentAction(Jsr88RemoteDeployer.java:332)
         ... 11 more
    Caused by: oracle.jdeveloper.deploy.DeployException: Deployment Failed
         at oracle.jdevimpl.deploy.common.Jsr88DeploymentHelper.deployApplication(Jsr88DeploymentHelper.java:465)
         ... 12 more
    #### Cannot run application Application12 due to error deploying to DefaultServer.
    [Application Application12 stopped and undeployed from Server Instance DefaultServer]

    Hi,
    Welcome to OTN.
    Check out Re: how to deply ADF application on weblogic 10.3 thread to know how to release the lock.
    -Arun

  • Webservice deployment failed

    Recently I decided to make a webserver along my "currentdensity.vi" design to have access to the data through explorer. I read the instructions for configurations of webserver but I have still problem in correct implementation of it. I am afraid I have left some simple steps or hints to successfully accomplish it. (http://localhost:8080/webservice1)--->but no result displayed
    Please give me your feedback.
    Solved!
    Go to Solution.
    Attachments:
    1-Project explorer.JPG ‏36 KB
    2- webserver configurations.jpg ‏108 KB
    6- webserver deployement failed.jpg ‏134 KB

    Hey Kira,
    we just have one Web Service in place.
    So only this one causes us problems.
    We never have any trouble with the build process. The problems starts when trying to deploy.
    Actually, I mentioned earlier that sometimes a restart of the computer solves the problem but not always.
    Just now it is one of the rare moments that the webservice could be deployed.
    However I think that this does not mean that from now on it will work stably. So right now trouble shooting is compromised as the problem has not occured.
    But what should I do when it will happen next time? Plenty of computer restarts cannot be the solution.
    I followed your advice and took a look under Start»Control Panel»System and Security»Administrative Tools»Services.
    I did not find any service named NI Application Web Server there. In the task manager the is the process "ApplicationWebServer.exe" (while the web service is currently running).
    When the deployment fails the progress bar does not go further than two bars. When to my surprise the deployment just worked I could capture a screen shot from the deployment progress window. I attach it to the post. Maybe this helps to find out why the deployment so often does not work.
    Attachments:
    Deployment successfull.PNG ‏82 KB
    Services after Restart.PNG ‏125 KB

  • Deployment fails in Weblogic 12c

    Hi ,
    I am using web logic server stand alone 12c on linux . And when i try to deploy web app below error is coming , any suggestions.
    [01:45:52 PM] weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: adf.oracle.domain, Implementation-Version: 11.1.1.1.0, exact-match: false]
    [01:45:53 PM] Deployment cancelled.
    [01:45:53 PM] ----  Deployment incomplete  ----.
    [01:45:53 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)
    Thanks
    Raghav

    Here is some useful information from WLS 12C guide
    Development features
    WebLogic 12c has support for many IDEs. WebLogic already supports JDeveloper
    11.1.1.5, but will come out with 11.1.1.6 later on. However, anyone developing
    applications using WLS 11.1.1.5 can deploy them to WLS 12c.

  • WS Deployment failed

    Hi,
    I got a problem with WebService. I developer WS from WSDL and from DB generated code. Compiled it... I deployed it to WAR file and try to Deploy to OC4J Container through EM.
    Deployment failed with compiler error. How could I find out any info about compilation error?
    I attached Deployment log:
    [1.2.2012 8:14:54] Application Deployer for WSName STARTS.
    [1.2.2012 8:14:54] Copy the archive to /oracle/product/OC4J_10135/j2ee/home/applications/WSName.ear
    [1.2.2012 8:14:54] Initialize /oracle/product/OC4J_10135/j2ee/home/applications/WSName.ear begins...
    [1.2.2012 8:14:54] Unpacking WSName.ear
    [1.2.2012 8:14:54] Done unpacking WSName.ear
    [1.2.2012 8:14:54] Unpacking WSName.war
    [1.2.2012 8:14:54] Done unpacking WSName.war
    [1.2.2012 8:14:54] Initialize /oracle/product/OC4J_10135/j2ee/home/applications/WSName.ear ends...
    [1.2.2012 8:14:54] Starting application : WSName
    [1.2.2012 8:14:54] Initializing ClassLoader(s)
    [1.2.2012 8:14:54] Initializing EJB container
    [1.2.2012 8:14:54] Loading connector(s)
    [1.2.2012 8:14:54] Starting up resource adapters
    [1.2.2012 8:14:54] Initializing EJB sessions
    [1.2.2012 8:14:54] Committing ClassLoader(s)
    [1.2.2012 8:14:54] Initialize WSName begins...
    [1.2.2012 8:14:54] Initialize WSName ends...
    [1.2.2012 8:14:54] Started application : WSName
    [1.2.2012 8:14:54] Binding web application(s) to site default-web-site begins...
    [1.2.2012 8:14:54] Binding WSName web-module for application WSName to site default-web-site under context root WSName-context-root
    [1.2.2012 8:15:07] Operation failed with error: Error compiling :/oracle/product/OC4J_10135/j2ee/home/applications/WSName/WSName: compilation error occurred

    There should be an xml file with more descriptions of the error in /oracle/product/OC4J_10135/j2ee/home/applications/WSName/WSName
    Also, OC4J doesn't support JAX-WS web services, if this is the case, you can use WebLogic instead of OC4J or create a JAX-RPC Web Service
    In any case, try to deploy only the WAR file, instead of EAR
    Best regards,
    Alfonso Vicente

  • MDT 2013 - Litetouch deployment failed, Return Code = -2147467259 0x80004005

    I'm attempting to deploy an image that I have recently captured with MDT.  I was able to capture the image without any problems and after capturing, it booted up properly.  But now when I go to deploy the image using a Standard Task Sequence it
    errors out.  It does boot into WinPE and gets to the installing operating system portion then spits out the following 8 errors:
    (5624):2: Run ImageX: /apply "\\PDC31089\DeploymentShare$\Operating Systems\Win7_BUP_1-31-14\Win7_BUP_1-31-14.wim" 1 C:
    Litetouch deployment failed, Return Code = -2147467259 0x80004005
    Failed to run the action: Install Operating System.
    Unknown error (Error: 000015F8; Source: Unknown)
    The execution of the group (Install) has failed and the execution has been aborted. An action failed.
    Operation aborted (Error: 80004004; Source: Windows)
    Failed to run the last action: Install Operating System. Execution of task sequence failed.
    Unknown error (Error: 000015F8; Source: Unknown)
    Task Sequence Engine failed! Code: enExecutionFail
    Task sequence execution failed with error code 80004005
    Error Task Sequence Manager failed to execute task sequence. Code 0x80004005After I receive the error messages if I attempt to restart the computer and allow it to boot up it just comes up with:"An operating system wasn't found. Try disconnecting any drives that don't contain an operating system"
    I have tried the following to resolve this issue:
    Create a new deployment share with only network drivers added and the one .WIM that was captured with MDT as well as one Task sequence.
    Update to MDT 2013
    Update Deployment share and completely regenerate Boot images
    Tried starting deployment from within Windows by mapping the drive and executing litetouch.vbs
    Also tried starting deployment using USB boot disk
    I'm running out of ideas and seem to keep getting the same 8 error messages.  It's very aggravating and am hoping that someone can point me in the right direction.
    I've included some log files on Skydrive at:  https://skydrive.live.com/redir?resid=6375A8F9E8089918%21105

    I came across this post recently. I am having the same string of errors suddenly when I try to deploy any image from my MDT 2013 server now. Previous images now fail to install soon after the Inject Drivers task sequence at the Install Operating System sequence.
    Each time I try to deploy an image(have tried several each with different task sequences), I get the same 7 errors.
    The errors produced are:
    Litetouch deployment failed, Return Code = -2147467259 0x80004005
    Failed to run the action: Install Operating System.
    Incorrect Function (Error: 00000001; Source: Windows)
    The execution of the group (Install) has failed and the execution has been
    aborted. An action failed.
    Operation aborted (Error: 80004004; Source: Windows)
    Failed to run the last action: Install Operating System. Execution of task
    sequence failed.
    Incorrect Function
    (Error: 00000001;
    Source: Windows)
    Task Sequence Engine failed! Code: enExecutionFail
    Task sequence execution failed with error code 80004005
    Error Task Sequence Manager failed to execute task sequence. Code 0x80004005
    My HD size is 146GB with about 71GB being free.
    The BDD.log file is too large to post here apparently. Here are the
    last bits of it.
    <![LOG[Assume this disk is the destination Disk, and verify.]LOG]!><time="11:36:58.000+000" date="09-26-2014" component="ZTIDiskpart"
    context="" type="1" thread="" file="ZTIDiskpart">
    <![LOG[TargetPartitionIdentifier is set, find disk: SELECT * FROM Win32_LogicalDisk WHERE Size = '499577253888' and VolumeName = 'OSDisk' and VolumeSerialNumber = 'CA3BC8A9']LOG]!><time="11:36:58.000+000" date="09-26-2014"
    component="ZTIDiskpart" context="" type="1" thread="" file="ZTIDiskpart">
    <![LOG[Search for Drive: TargetPartitionIdentifier  SELECT * FROM Win32_LogicalDisk WHERE Size = '499577253888' and VolumeName = 'OSDisk' and VolumeSerialNumber = 'CA3BC8A9']LOG]!><time="11:36:58.000+000" date="09-26-2014"
    component="ZTIDiskpart" context="" type="1" thread="" file="ZTIDiskpart">
    <![LOG[Found Drive: C:]LOG]!><time="11:36:58.000+000" date="09-26-2014" component="ZTIDiskpart" context="" type="1" thread="" file="ZTIDiskpart">
    <![LOG[Property OSDTargetDriveCache is now = C:]LOG]!><time="11:36:58.000+000" date="09-26-2014" component="ZTIDiskpart" context="" type="1" thread="" file="ZTIDiskpart">
    <![LOG[Property OSDisk is now = C:]LOG]!><time="11:36:58.000+000" date="09-26-2014" component="ZTIDiskpart" context="" type="1" thread="" file="ZTIDiskpart">
    <![LOG[Target Drive Letter Found: C:]LOG]!><time="11:36:58.000+000" date="09-26-2014" component="ZTIDiskpart" context="" type="1" thread="" file="ZTIDiskpart">
    <![LOG[Found OS Drive: C   0]LOG]!><time="11:36:58.000+000" date="09-26-2014" component="ZTIDiskpart" context="" type="1" thread="" file="ZTIDiskpart">
    <![LOG[New ZTIDiskPartition : \\MININT-I3DUVLI\root\cimv2:Win32_LogicalDisk.DeviceID="C:"    \\MININT-I3DUVLI\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #1"]LOG]!><time="11:36:58.000+000"
    date="09-26-2014" component="ZTIDiskpart" context="" type="1" thread="" file="ZTIDiskpart">
    <![LOG[Check Disk [0] <> [0] OK to skip.]LOG]!><time="11:36:58.000+000" date="09-26-2014" component="ZTIDiskpart" context="" type="1" thread="" file="ZTIDiskpart">
    <![LOG[####### NOTE:  If this is one of the  last lines in your BDD.log file, check C: for the most up to date bdd.log!!!]LOG]!><time="11:36:58.000+000" date="09-26-2014" component="ZTIDiskpart"
    context="" type="1" thread="" file="ZTIDiskpart">
    <![LOG[ZTIDiskpart processing completed successfully.]LOG]!><time="11:36:58.000+000" date="09-26-2014" component="ZTIDiskpart" context="" type="1" thread="" file="ZTIDiskpart">
    <![LOG[Event 41001 sent: ZTIDiskpart processing completed successfully.]LOG]!><time="11:36:58.000+000" date="09-26-2014" component="ZTIDiskpart" context="" type="1" thread=""
    file="ZTIDiskpart">

  • [WLP 700] Hot Deploy fails

    Hi all,
    I hope qomeone will be able to help me with this: I'm trying to deploy a new portal,
    but it fails.
    This is the message I receive:
    HotDeply failed with the following message: Unable to add module: foremPortalApp
    to application descriptor for: portalApp
    If i check the details, this is what I see:
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\portlets\Portlet1.portlet
    to sync list.
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\webapps\foremPortalApp\portal.wf
    to sync list.
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\webapps\foremPortalApp\security.wf
    to sync list.
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\webapps\foremPortalApp\tools.wf
    to sync list.
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\webapps\foremPortalApp\user_account.wf
    to sync list.
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\webapps\foremPortalApp\webflow-extensions.wfx
    to sync list.
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\webapps\foremPortalApp\ForemPortal.portal
    to sync list.
    Attempting sync...
    Sync complete.
    Searching for portalApp application descriptor...
    Found it.
    Error - please check log for details.
    If I check the log, this is what I can read:
    [INFO] HotDeployer.runDeployer() called
    [ERROR] Operation timed out: connect
    [ERROR] No Message
    com.bea.commerce.tools.util.XmlFileException: No Message
         at com.bea.commerce.tools.util.XmlFile.init(XmlFile.java:106)
         at com.bea.commerce.tools.util.XmlFile.<init>(XmlFile.java:79)
         at com.bea.commerce.tools.util.XmlFile.<init>(XmlFile.java:69)
         at com.bea.portal.tools.portal.wizard.hotdeploy.HotDeployer.addModuleToApplicationDescriptor(HotDeployer.java:349)
         at com.bea.portal.tools.portal.wizard.hotdeploy.HotDeployer.runDeployer(HotDeployer.java:117)
         at com.bea.portal.tools.portal.wizard.hotdeploy.HotDeployThread.run(HotDeployThread.java:72)
    And, finally, this is the error message I recieve in the 'dos' box from my running
    server:
    <02-dÚc.-02 13:56:48 CET> <Error> <PortalManager> <415454> <Attempt to created
    a
    duplicate Portal Definition within web App: foremPortalApp URI:/webapps/foremPo
    rtalApp/ForemPortal.portal.>
    <02-dÚc.-02 13:56:48 CET> <Error> <Data Synchronization> <000000> <Application:
    portalApp; Persistence Failure executing DataItemMessage with Persistence Manage
    r: com.bea.portal.manager.internal.PortalPersistenceManager [DR: Portal Applica
    tion Data Repository, URI: /webapps/foremPortalApp/ForemPortal.portal, Action:
    C
    REATE]
    Exception[com.bea.p13n.management.data.repository.PersistenceException: Attempt
    to created a duplicate Portal Definition within web App: foremPortalApp URI: /we
    bapps/foremPortalApp/ForemPortal.portal.]
    at com.bea.portal.manager.internal.PortalPersistenceManager.updatePortal
    Model(PortalPersistenceManager.java:239)
    at com.bea.portal.manager.internal.PortalPersistenceManager.createDataIt
    em(PortalPersistenceManager.java:201)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.handleDataItemMessage(AbstractDataRepository.java:814)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onDataSyncMessage(AbstractDataRepository.java:990)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:252)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onSyncRequestResultMessage(AbstractDataRepository.java:1185)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:261)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onSyncRequestMessage(AbstractDataRepository.java:1086)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:257)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.notifyDataRepository(AbstractDataRepository.java:706)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.notifyDataRepositories(AbstractDataRepository.java:658)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.notifyDataRepositories(AbstractDataRepository.java:606)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onDataSyncMessage(AbstractDataRepository.java:994)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:252)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.transport.servlets.DataSyncServlet.dispa
    tchMessage(DataSyncServlet.java:351)
    at com.bea.p13n.management.data.transport.servlets.DataSyncServlet.doPos
    t(DataSyncServlet.java:276)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
    (ServletStubImpl.java:945)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:332)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:242)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:5360)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
    eManager.java:721)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:3043)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2468)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
    Is this meaningfull to anyone???
    Thank you for helping me out...
    Philippe

    Ok, it works now, thank you very much for your help
    Bye,
    Philippe
    "tanya" <[email protected]> wrote:
    >
    there is also another workaround described here:
    http://edocs.bea.com/wlp/docs70/relnotes/relnotes.htm#292355
    look for "CR080390 Hot Deploy fails with "Unable to add module" message"
    fyi, this will be fixed in 7.0sp2
    -tanya
    "Kunal Mittal" <[email protected]> wrote:
    Phillippe -
    I was having a similar problem. Mine was fixed by ensuring that theserver
    had
    an internet connection to go to the web to verify the DTD's. That might
    be your
    problem too, but u never know.
    Thanks
    Kunal Mittal
    CTO, Microsec Technologies Ltd.
    "Philippe Blockmans" <[email protected]> wrote:
    Hi all,
    I hope qomeone will be able to help me with this: I'm trying to deploy
    a new portal,
    but it fails.
    This is the message I receive:
    HotDeply failed with the following message: Unable to add module: foremPortalApp
    to application descriptor for: portalApp
    If i check the details, this is what I see:
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\portlets\Portlet1.portlet
    to sync list.
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\webapps\foremPortalApp\portal.wf
    to sync list.
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\webapps\foremPortalApp\security.wf
    to sync list.
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\webapps\foremPortalApp\tools.wf
    to sync list.
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\webapps\foremPortalApp\user_account.wf
    to sync list.
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\webapps\foremPortalApp\webflow-extensions.wfx
    to sync list.
    Adding file: D:\bea\user_projects\foremPortalDomain\beaApps\portalApp-project\application-sync\webapps\foremPortalApp\ForemPortal.portal
    to sync list.
    Attempting sync...
    Sync complete.
    Searching for portalApp application descriptor...
    Found it.
    Error - please check log for details.
    If I check the log, this is what I can read:
    [INFO] HotDeployer.runDeployer() called
    [ERROR] Operation timed out: connect
    [ERROR] No Message
    com.bea.commerce.tools.util.XmlFileException: No Message
         at com.bea.commerce.tools.util.XmlFile.init(XmlFile.java:106)
         at com.bea.commerce.tools.util.XmlFile.<init>(XmlFile.java:79)
         at com.bea.commerce.tools.util.XmlFile.<init>(XmlFile.java:69)
         at com.bea.portal.tools.portal.wizard.hotdeploy.HotDeployer.addModuleToApplicationDescriptor(HotDeployer.java:349)
         at com.bea.portal.tools.portal.wizard.hotdeploy.HotDeployer.runDeployer(HotDeployer.java:117)
         at com.bea.portal.tools.portal.wizard.hotdeploy.HotDeployThread.run(HotDeployThread.java:72)
    And, finally, this is the error message I recieve in the 'dos' box
    from
    my running
    server:
    <02-dÚc.-02 13:56:48 CET> <Error> <PortalManager> <415454> <Attemptto
    created
    a
    duplicate Portal Definition within web App: foremPortalApp URI:/webapps/foremPo
    rtalApp/ForemPortal.portal.>
    <02-dÚc.-02 13:56:48 CET> <Error> <Data Synchronization> <000000> <Application:
    portalApp; Persistence Failure executing DataItemMessage with Persistence
    Manage
    r: com.bea.portal.manager.internal.PortalPersistenceManager [DR: Portal
    Applica
    tion Data Repository, URI: /webapps/foremPortalApp/ForemPortal.portal,
    Action:
    C
    REATE]
    Exception[com.bea.p13n.management.data.repository.PersistenceException:
    Attempt
    to created a duplicate Portal Definition within web App: foremPortalApp
    URI: /we
    bapps/foremPortalApp/ForemPortal.portal.]
    at com.bea.portal.manager.internal.PortalPersistenceManager.updatePortal
    Model(PortalPersistenceManager.java:239)
    at com.bea.portal.manager.internal.PortalPersistenceManager.createDataIt
    em(PortalPersistenceManager.java:201)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.handleDataItemMessage(AbstractDataRepository.java:814)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onDataSyncMessage(AbstractDataRepository.java:990)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:252)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onSyncRequestResultMessage(AbstractDataRepository.java:1185)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:261)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onSyncRequestMessage(AbstractDataRepository.java:1086)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:257)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.notifyDataRepository(AbstractDataRepository.java:706)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.notifyDataRepositories(AbstractDataRepository.java:658)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.notifyDataRepositories(AbstractDataRepository.java:606)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.onDataSyncMessage(AbstractDataRepository.java:994)
    at com.bea.p13n.management.data.repository.internal.AbstractDataReposito
    ry.executeMessage(AbstractDataRepository.java:252)
    at com.bea.p13n.management.data.message.internal.JvmCommunicationPipe.se
    ndMessage(JvmCommunicationPipe.java:116)
    at com.bea.p13n.management.data.transport.servlets.DataSyncServlet.dispa
    tchMessage(DataSyncServlet.java:351)
    at com.bea.p13n.management.data.transport.servlets.DataSyncServlet.doPos
    t(DataSyncServlet.java:276)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
    (ServletStubImpl.java:945)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:332)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:242)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
    n.run(WebAppServletContext.java:5360)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
    eManager.java:721)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:3043)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2468)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
    Is this meaningfull to anyone???
    Thank you for helping me out...
    Philippe

  • When printing labels for each printed label a blank label comes out of the printer

    Hello Experts
    We have a CR report which is designed to prints labels for the items using a label printer. After an upgrade that we have last month the settings for this report are missing so the labels were coming out wrong.
    Due to this I have had to reconfigure this report and its printing preferences and so far I have managed to make the prints fit in each label. But the problem is that if I try to print 5 copies of a label, the 5 labels come out of the printer just fine, butt after it another 5 blank labels come out of the printer too.
    I have tried with all parameters in "Printing preferences", mainly in the "Material" tab but nothing works.
    Thanks in advance and regards

    Hi,
    Please check below SAP note and let me know your feedback:
    1043235 - Label/thermal printers are not supported by SAP Business
    One
    Thanks & Regards,
    Nagarajan

  • Error while deploying BPEL Process(Error during deployment: Deployment Fail

    Hi,
    when i try to deploying 11.1.1.3 - bpel project with thirdpartyparty adapter from jdeveloper to weblogic server, I got the following error.
    [04:53:50 PM] Error deploying archive sca_TPASOAProject_rev1.0.jar to partition "default" on server soa_server1 [10.150.67.195:8001]
    [04:53:50 PM] HTTP error code returned [500]
    [04:53:50 PM] Error message from server:
    Error during deployment: Deployment Failed: [JCABinding] [TPASOAProject.Service1/1.0]Unable to complete load due to: Generic error.
    Generic error.
    Cause: Unable to find suitable outbound binding.
    Please create a Service Request with Oracle Support.
    : Generic error.
    Generic error.
    Cause: Unable to find suitable outbound binding.
    Please create a Service Request with Oracle Support.
    [04:53:50 PM] Check server log for more details.
    [04:53:50 PM] Error deploying archive sca_TPASOAProject_rev1.0.jar to partition "default" on server soa_server1 [10.150.67.195:8001]
    [04:53:50 PM] #### Deployment incomplete. ####
    [04:53:50 PM] Error deploying archive file:/C:/JDeveloper/mywork/Application16/TPASOAProject/deploy/sca_TPASOAProject_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)
    Please, any one can tell solution for this.
    Thanks In advance
    Amar.
    Edited by: 897448 on Dec 13, 2011 8:48 PM

    Hi,
    when i try to deploying 11.1.1.3 - bpel project with thirdpartyparty adapter from jdeveloper to weblogic server, I got the following error.
    [04:53:50 PM] Error deploying archive sca_TPASOAProject_rev1.0.jar to partition "default" on server soa_server1 [10.150.67.195:8001]
    [04:53:50 PM] HTTP error code returned [500]
    [04:53:50 PM] Error message from server:
    Error during deployment: Deployment Failed: [JCABinding] [TPASOAProject.Service1/1.0]Unable to complete load due to: Generic error.
    Generic error.
    Cause: Unable to find suitable outbound binding.
    Please create a Service Request with Oracle Support.
    : Generic error.
    Generic error.
    Cause: Unable to find suitable outbound binding.
    Please create a Service Request with Oracle Support.
    [04:53:50 PM] Check server log for more details.
    [04:53:50 PM] Error deploying archive sca_TPASOAProject_rev1.0.jar to partition "default" on server soa_server1 [10.150.67.195:8001]
    [04:53:50 PM] #### Deployment incomplete. ####
    [04:53:50 PM] Error deploying archive file:/C:/JDeveloper/mywork/Application16/TPASOAProject/deploy/sca_TPASOAProject_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)
    Please, any one can tell solution for this.
    Thanks In advance
    Amar.
    Edited by: 897448 on Dec 13, 2011 8:48 PM

Maybe you are looking for

  • Alligning Select Options in WebDynpro

    Hi, I need to align the select options with that of parameter vertically in a single row.Kindly suggest me the procedure to proceed.I have given the link of my screen below. http://selectoptions.blogspot.in/2012/02/blog-post.html#!http://selectoption

  • Using Media Monkey and ITunes help

    I have used Media Monkey for years to sync, burn, play... (I used to have a Sansa Mp3). I like the interface much better on Media Monkey and my children find it easier to just pull up and play music. We now have 2 ipod in our family and I am trying t

  • Issue while installing MAXDB-- wrong parameters

    Appreciate your help !!!!! While I was installing MAXDB which is for open source users, it alwasy prompt following error while installation proceed to create a database instance... have anybody met this error before and how to solve it? error message

  • Make to order availability check scenario with production order

    We have a make-to order scenario where we build custom products for our customers. In SAP, we specify a strategy group so a production order is automatically generated when an sales order item is entered. However, we sometimes create a small amount o

  • Installing Adobe on a new computer

    I have adobe writer on my old computer.  I have a new computer.  I have downloaded Adobe Writer on my new computer and entered the serial number and registered the program but I still get the gold circles on printed pages.  What do I do.  Do I need t