Error deploying jpa from oepe tutorial example on Weblogic 12c server

I am having the next error trying to deploy jpa in to Weblogic 12c server from the oepe tutorial example at http://www.oracle.com/webfolder/technetwork/tutorials/obe/jdev/obe11jdev/11/eclipse_intro/eclipse_intro.html. The "I---------I" markups are below, "bean.Hello", "hello" and "response.jsp". I've tried to find a solution on the web but nothing. I'll apreciate any help. thanks.
greeting.jsp:1:1: Needed class "bean.Hello" is not found.
^
greeting.jsp:5:44: The bean type "bean.Hello" was not found.
<jsp:useBean id="hello" scope="page" class="bean.Hello"></jsp:useBean>
I----------I
greeting.jsp:6:23: This bean name does not exist.
<jsp:setProperty name="hello" property="*" />
I-----I
greeting.jsp:34:18: Error in "C:\Users\Andres Tobar\workspace\DemoEARWeb\WebContent\pages\response.jsp" at line 13: This bean does not exist.
<%@ include file="response.jsp" %>
I------------I

I have started again all the tutorial from the begining, trying to not miss any configuration setting even the ones displayed on pictures, finding that the tutorial example now works. I think the first time i have tryed it i missed to activate the anotations facet in project properties because this configuration step is not explained in the tutorial unless you take a close look into the tutorial images. Probably that was the cause of the mentioned error, not so sure, but the tutorial example really works.

Similar Messages

  • CDI Fails when deployed twice from OEPE 12c to WebLogic 12c

    Hi,
    First when I use CDI on WebLogic 12c it works the first time without any problems , First I had to do this ( From Steve Button ) else I get some inject problems
    Just as an out there kind of thought, OEPE does use the split-directory model for deployment by default -- perhaps try adjusting it to use the exploded archive model instead, just as a test to see if it removes the error?
    Right click the server config and select Properties > WebLogic > Publishing > Publish as exploded archive
    then it works once , when I deploy it twice then the Named beans are not found. ( I use a empty beans.xml in the web-inf )
    I need to restart the wls 12c then it works. Same project with OEPE 12c and glassfish works fine.
    thanks

    Arun,
    Do you see the application status active in the Admin console?
    Are you testing the web application by typing the complete URL in the browser that includes the name of the webpage including the context root , ipaddress/hostname and port number of Server..?
    404 indicates application doesn't exist.
    Please share the URL you are testing.
    Please check the server log if you found any deployment issues when deploying your application?
    Thanks,
    Vijaya

  • Error using eclipse from oepe with weblogic 12.1

    I have written a very simple jsp and have tried to run it on the eclipse. I cannot start the server as it says jdk1.7_0_9 is unexpected. I have used the new server wizard, i believe, correctly and have tried to the path to java-home without spaces.
    Can anybody help?
    quick note:
    this is how my setDomainEnv looks like:
    @ECHO OFF
    @REM WARNING: This file is created by the Configuration Wizard.
    @REM Any changes to this script may be lost when adding extensions to this configuration.
    @REM *************************************************************************
    @REM This script is used to setup the needed environment to be able to start Weblogic Server in this domain.
    @REM
    @REM This script initializes the following variables before calling commEnv to set other variables:
    @REM
    @REM WL_HOME - The BEA home directory of your WebLogic installation.
    @REM JAVA_VM - The desired Java VM to use. You can set this environment variable before calling
    @REM this script to switch between Sun or BEA or just have the default be set.
    @REM JAVA_HOME - Location of the version of Java used to start WebLogic
    @REM Server. Depends directly on which JAVA_VM value is set by default or by the environment.
    @REM USER_MEM_ARGS - The variable to override the standard memory arguments
    @REM passed to java.
    @REM PRODUCTION_MODE - The variable that determines whether Weblogic Server is started in production mode.
    @REM DOMAIN_PRODUCTION_MODE
    @REM - The variable that determines whether the workshop related settings like the debugger,
    @REM testconsole or iterativedev should be enabled. ONLY settable using the
    @REM command-line parameter named production
    @REM NOTE: Specifying the production command-line param will force
    @REM the server to start in production mode.
    @REM
    @REM Other variables used in this script include:
    @REM SERVER_NAME - Name of the weblogic server.
    @REM JAVA_OPTIONS - Java command-line options for running the server. (These
    @REM will be tagged on to the end of the JAVA_VM and
    @REM MEM_ARGS)
    @REM
    @REM For additional information, refer to "Managing Server Startup and Shutdown for Oracle WebLogic Server"
    @REM (http://download.oracle.com/docs/cd/E24329_01/web.1211/e21048/overview.htm).
    @REM *************************************************************************
    set WL_HOME=C:\Oracle\Middleware\wlserver_12.1
    for %%i in ("%WL_HOME%") do set WL_HOME=%%~fsi
    set BEA_JAVA_HOME=C:\Progra~2\jdk1.7.0_09
    set SUN_JAVA_HOME=C:\Progra~2\jdk1.7.0_09
    if "%JAVA_VENDOR%"=="Oracle" (
         set JAVA_HOME=%BEA_JAVA_HOME%
    ) else (
         if "%JAVA_VENDOR%"=="Sun" (
              set JAVA_HOME=%SUN_JAVA_HOME%
         ) else (
              set JAVA_VENDOR=Sun
              set JAVA_HOME=C:\Program Files (x86)\Java\jdk1.7.0_09
    @REM We need to reset the value of JAVA_HOME to get it shortened AND
    @REM we can not shorten it above because immediate variable expansion will blank it
    set JAVA_HOME=%JAVA_HOME%
    for %%i in ("%JAVA_HOME%") do set JAVA_HOME=%%~fsi
    set SAMPLES_HOME=%WL_HOME%\samples
    set DOMAIN_HOME=C:\Oracle\Middleware\wlserver_12.1\samples\domains\wl_server
    for %%i in ("%DOMAIN_HOME%") do set DOMAIN_HOME=%%~fsi
    set LONG_DOMAIN_HOME=C:\Oracle\Middleware\wlserver_12.1\samples\domains\wl_server
    if "%DEBUG_PORT%"=="" (
         set DEBUG_PORT=8453
    if "%SERVER_NAME%"=="" (
         set SERVER_NAME=examplesServer
    set DERBY_FLAG=true
    set enableHotswapFlag=
    set PRODUCTION_MODE=
    set doExitFlag=false
    set verboseLoggingFlag=false
    for %%p in (%*) do call :SET_PARAM %%p
    GOTO :CMD_LINE_DONE
         :SET_PARAM
         for %%q in (%1) do set noQuotesParam=%%~q
         if /i "%noQuotesParam%" == "nodebug" (
              set debugFlag=false
              GOTO :EOF
         if /i "%noQuotesParam%" == "production" (
              set DOMAIN_PRODUCTION_MODE=true
              GOTO :EOF
         if /i "%noQuotesParam%" == "notestconsole" (
              set testConsoleFlag=false
              GOTO :EOF
         if /i "%noQuotesParam%" == "noiterativedev" (
              set iterativeDevFlag=false
              GOTO :EOF
         if /i "%noQuotesParam%" == "noLogErrorsToConsole" (
              set logErrorsToConsoleFlag=false
              GOTO :EOF
         if /i "%noQuotesParam%" == "noderby" (
              set DERBY_FLAG=false
              GOTO :EOF
         if /i "%noQuotesParam%" == "doExit" (
              set doExitFlag=true
              GOTO :EOF
         if /i "%noQuotesParam%" == "noExit" (
              set doExitFlag=false
              GOTO :EOF
         if /i "%noQuotesParam%" == "verbose" (
              set verboseLoggingFlag=true
              GOTO :EOF
         if /i "%noQuotesParam%" == "enableHotswap" (
              set enableHotswapFlag=-javaagent:%WL_HOME%\server\lib\diagnostics-agent.jar
              GOTO :EOF
         ) else (
              set PROXY_SETTINGS=%PROXY_SETTINGS% %1
         GOTO :EOF
    :CMD_LINE_DONE
    set MEM_DEV_ARGS=
    if "%DOMAIN_PRODUCTION_MODE%"=="true" (
         set PRODUCTION_MODE=%DOMAIN_PRODUCTION_MODE%
    if "%PRODUCTION_MODE%"=="true" (
         set debugFlag=false
         set testConsoleFlag=false
         set iterativeDevFlag=false
         set logErrorsToConsoleFlag=false
    @REM If you want to override the default Patch Classpath, Library Path and Path for this domain,
    @REM Please uncomment the following lines and add a valid value for the environment variables
    @REM set PATCH_CLASSPATH=[myPatchClasspath] (windows)
    @REM set PATCH_LIBPATH=[myPatchLibpath] (windows)
    @REM set PATCH_PATH=[myPatchPath] (windows)
    @REM PATCH_CLASSPATH=[myPatchClasspath] (unix)
    @REM PATCH_LIBPATH=[myPatchLibpath] (unix)
    @REM PATCH_PATH=[myPatchPath] (unix)
    call "%WL_HOME%\common\bin\commEnv.cmd"
    set WLS_HOME=%WL_HOME%\server
    if "%JAVA_VENDOR%"=="Sun" (
         set WLS_MEM_ARGS_64BIT=-Xms256m -Xmx512m
         set WLS_MEM_ARGS_32BIT=-Xms256m -Xmx512m
    ) else (
         set WLS_MEM_ARGS_64BIT=-Xms512m -Xmx512m
         set WLS_MEM_ARGS_32BIT=-Xms512m -Xmx512m
    set MEM_ARGS_64BIT=%WLS_MEM_ARGS_64BIT%
    set MEM_ARGS_32BIT=%WLS_MEM_ARGS_32BIT%
    if "%JAVA_USE_64BIT%"=="true" (
         set MEM_ARGS=%MEM_ARGS_64BIT%
    ) else (
         set MEM_ARGS=%MEM_ARGS_32BIT%
    set MEM_PERM_SIZE_64BIT=-XX:PermSize=128m
    set MEM_PERM_SIZE_32BIT=-XX:PermSize=128m
    if "%JAVA_USE_64BIT%"=="true" (
         set MEM_PERM_SIZE=%MEM_PERM_SIZE_64BIT%
    ) else (
         set MEM_PERM_SIZE=%MEM_PERM_SIZE_32BIT%
    set MEM_MAX_PERM_SIZE_64BIT=-XX:MaxPermSize=256m
    set MEM_MAX_PERM_SIZE_32BIT=-XX:MaxPermSize=256m
    if "%JAVA_USE_64BIT%"=="true" (
         set MEM_MAX_PERM_SIZE=%MEM_MAX_PERM_SIZE_64BIT%
    ) else (
         set MEM_MAX_PERM_SIZE=%MEM_MAX_PERM_SIZE_32BIT%
    if "%JAVA_VENDOR%"=="Sun" (
         if "%PRODUCTION_MODE%"=="" (
              set MEM_DEV_ARGS=-XX:CompileThreshold=8000 %MEM_PERM_SIZE%
    @REM Had to have a separate test here BECAUSE of immediate variable expansion on windows
    if "%JAVA_VENDOR%"=="Sun" (
         set MEM_ARGS=%MEM_ARGS% %MEM_DEV_ARGS% %MEM_MAX_PERM_SIZE%
    if "%JAVA_VENDOR%"=="HP" (
         set MEM_ARGS=%MEM_ARGS% %MEM_MAX_PERM_SIZE%
    if "%JAVA_VENDOR%"=="Apple" (
         set MEM_ARGS=%MEM_ARGS% %MEM_MAX_PERM_SIZE%
    @REM IF USER_MEM_ARGS the environment variable is set, use it to override ALL MEM_ARGS values
    if NOT "%USER_MEM_ARGS%"=="" (
         set MEM_ARGS=%USER_MEM_ARGS%
    set JAVA_PROPERTIES=-Dplatform.home=%WL_HOME% -Dwls.home=%WLS_HOME% -Dweblogic.home=%WLS_HOME%
    @REM To use Java Authorization Contract for Containers (JACC) in this domain,
    @REM please uncomment the following section. If there are multiple machines in
    @REM your domain, be sure to edit the setDomainEnv in the associated domain on
    @REM each machine.
    @REM
    @REM -Djava.security.manager
    @REM -Djava.security.policy=location of weblogic.policy
    @REM -Djavax.security.jacc.policy.provider=weblogic.security.jacc.simpleprovider.SimpleJACCPolicy
    @REM -Djavax.security.jacc.PolicyConfigurationFactory.provider=weblogic.security.jacc.simpleprovider.PolicyConfigurationFactoryImpl
    @REM -Dweblogic.security.jacc.RoleMapperFactory.provider=weblogic.security.jacc.simpleprovider.RoleMapperFactoryImpl
    set JAVA_PROPERTIES=%JAVA_PROPERTIES% %EXTRA_JAVA_PROPERTIES%
    set ARDIR=%WL_HOME%\server\lib
    pushd %LONG_DOMAIN_HOME%
    @REM Clustering support (edit for your cluster!)
    if "%ADMIN_URL%"=="" (
         @REM The then part of this block is telling us we are either starting an admin server OR we are non-clustered
         set CLUSTER_PROPERTIES=-Dweblogic.management.discover=true
    ) else (
         set CLUSTER_PROPERTIES=-Dweblogic.management.discover=false -Dweblogic.management.server=%ADMIN_URL%
    if NOT "%LOG4J_CONFIG_FILE%"=="" (
         set JAVA_PROPERTIES=%JAVA_PROPERTIES% -Dlog4j.configuration=file:%LOG4J_CONFIG_FILE%
    set JAVA_PROPERTIES=%JAVA_PROPERTIES% %CLUSTER_PROPERTIES%
    set PRE_CLASSPATH=C:\Oracle\Middleware\wlserver_12.1\samples\server\examples\build\serverclasses
    set JAVA_DEBUG=
    if "%debugFlag%"=="true" (
         set JAVA_DEBUG=-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=%DEBUG_PORT%,server=y,suspend=n -Djava.compiler=NONE
         set JAVA_OPTIONS=%JAVA_OPTIONS% %enableHotswapFlag% -ea -da:com.bea... -da:javelin... -da:weblogic... -ea:com.bea.wli... -ea:com.bea.broker... -ea:com.bea.sbconsole...
    ) else (
         set JAVA_OPTIONS=%JAVA_OPTIONS% %enableHotswapFlag% -da
    if NOT exist %JAVA_HOME%\lib (
         echo The JRE was not found in directory %JAVA_HOME%. ^(JAVA_HOME^)
         echo Please edit your environment and set the JAVA_HOME
         echo variable to point to the root directory of your Java installation.
         popd
         pause
         GOTO :EOF
    if "%DERBY_FLAG%"=="true" (
         set DATABASE_CLASSPATH=%DERBY_CLASSPATH%
    ) else (
         set DATABASE_CLASSPATH=%DERBY_CLIENT_CLASSPATH%
    if NOT "%DATABASE_CLASSPATH%"=="" (
         if NOT "%POST_CLASSPATH%"=="" (
              set POST_CLASSPATH=%POST_CLASSPATH%;%DATABASE_CLASSPATH%
         ) else (
              set POST_CLASSPATH=%DATABASE_CLASSPATH%
    if NOT "%ARDIR%"=="" (
         if NOT "%POST_CLASSPATH%"=="" (
              set POST_CLASSPATH=%POST_CLASSPATH%;%ARDIR%\xqrl.jar
         ) else (
              set POST_CLASSPATH=%ARDIR%\xqrl.jar
    @REM PROFILING SUPPORT
    set JAVA_PROFILE=
    set SERVER_CLASS=weblogic.Server
    set JAVA_PROPERTIES=%JAVA_PROPERTIES% %WLP_JAVA_PROPERTIES%
    set JAVA_OPTIONS=%JAVA_OPTIONS% %JAVA_PROPERTIES% -Dwlw.iterativeDev=%iterativeDevFlag% -Dwlw.testConsole=%testConsoleFlag% -Dwlw.logErrorsToConsole=%logErrorsToConsoleFlag%
    if "%PRODUCTION_MODE%"=="true" (
         set JAVA_OPTIONS= -Dweblogic.ProductionModeEnabled=true %JAVA_OPTIONS%
    @REM -- Setup properties so that we can save stdout and stderr to files
    if NOT "%WLS_STDOUT_LOG%"=="" (
         echo Logging WLS stdout to %WLS_STDOUT_LOG%
         set JAVA_OPTIONS=%JAVA_OPTIONS% -Dweblogic.Stdout=%WLS_STDOUT_LOG%
    if NOT "%WLS_STDERR_LOG%"=="" (
         echo Logging WLS stderr to %WLS_STDERR_LOG%
         set JAVA_OPTIONS=%JAVA_OPTIONS% -Dweblogic.Stderr=%WLS_STDERR_LOG%
    @REM ADD EXTENSIONS TO CLASSPATHS
    if NOT "%EXT_PRE_CLASSPATH%"=="" (
         if NOT "%PRE_CLASSPATH%"=="" (
              set PRE_CLASSPATH=%EXT_PRE_CLASSPATH%;%PRE_CLASSPATH%
         ) else (
              set PRE_CLASSPATH=%EXT_PRE_CLASSPATH%
    if NOT "%EXT_POST_CLASSPATH%"=="" (
         if NOT "%POST_CLASSPATH%"=="" (
              set POST_CLASSPATH=%POST_CLASSPATH%;%EXT_POST_CLASSPATH%
         ) else (
              set POST_CLASSPATH=%EXT_POST_CLASSPATH%
    if NOT "%WEBLOGIC_EXTENSION_DIRS%"=="" (
         set JAVA_OPTIONS=%JAVA_OPTIONS% -Dweblogic.ext.dirs=%WEBLOGIC_EXTENSION_DIRS%
    set JAVA_OPTIONS=%JAVA_OPTIONS%
    @REM SET THE CLASSPATH
    if NOT "%WLP_POST_CLASSPATH%"=="" (
         if NOT "%CLASSPATH%"=="" (
              set CLASSPATH=%WLP_POST_CLASSPATH%;%CLASSPATH%
         ) else (
              set CLASSPATH=%WLP_POST_CLASSPATH%
    if NOT "%POST_CLASSPATH%"=="" (
         if NOT "%CLASSPATH%"=="" (
              set CLASSPATH=%POST_CLASSPATH%;%CLASSPATH%
         ) else (
              set CLASSPATH=%POST_CLASSPATH%
    if NOT "%WEBLOGIC_CLASSPATH%"=="" (
         if NOT "%CLASSPATH%"=="" (
              set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%
         ) else (
              set CLASSPATH=%WEBLOGIC_CLASSPATH%
    if NOT "%PRE_CLASSPATH%"=="" (
         set CLASSPATH=%PRE_CLASSPATH%;%CLASSPATH%
    if NOT "%JAVA_VENDOR%"=="BEA" (
         set JAVA_VM=%JAVA_VM% %JAVA_DEBUG% %JAVA_PROFILE%
    ) else (
         set JAVA_VM=%JAVA_VM% %JAVA_DEBUG% %JAVA_PROFILE%
    and this is hom my startWebLogic looks like:
    @REM --- Start Functions ---
    GOTO :ENDFUNCTIONS
    :stopAll
         @REM We separate the stop commands into a function so we are able to use the trap command in Unix (calling a function) to stop these services
         if NOT "X%ALREADY_STOPPED%"=="X" (
              GOTO :EOF
         @REM STOP DERBY (only if we started it)
         if "%DERBY_FLAG%"=="true" (
              echo Stopping Derby server...
              call "%WL_HOME%\common\derby\bin\stopNetworkServer.cmd" >"%DOMAIN_HOME%\derbyShutdown.log" 2>&1
              echo Derby server stopped.
         set ALREADY_STOPPED=true
    GOTO :EOF
    :classCaching
         echo Class caching enabled...
         set JAVA_OPTIONS=%JAVA_OPTIONS% -Dlaunch.main.class=%SERVER_CLASS% -Dlaunch.class.path="%CLASSPATH%" -Dlaunch.complete=weblogic.store.internal.LockManagerImpl -cp %WL_HOME%\server\lib\pcl2.jar
         set SERVER_CLASS=com.oracle.classloader.launch.Launcher
    GOTO :EOF
    :ENDFUNCTIONS
    @REM --- End Functions ---
    @REM *************************************************************************
    @REM This script is used to start WebLogic Server for this domain.
    @REM
    @REM To create your own start script for your domain, you can initialize the
    @REM environment by calling @USERDOMAINHOME\setDomainEnv.
    @REM
    @REM setDomainEnv initializes or calls commEnv to initialize the following variables:
    @REM
    @REM BEA_HOME - The BEA home directory of your WebLogic installation.
    @REM JAVA_HOME - Location of the version of Java used to start WebLogic
    @REM Server.
    @REM JAVA_VENDOR - Vendor of the JVM (i.e. BEA, HP, IBM, Sun, etc.)
    @REM PATH - JDK and WebLogic directories are added to system path.
    @REM WEBLOGIC_CLASSPATH
    @REM - Classpath needed to start WebLogic Server.
    @REM PATCH_CLASSPATH - Classpath used for patches
    @REM PATCH_LIBPATH - Library path used for patches
    @REM PATCH_PATH - Path used for patches
    @REM WEBLOGIC_EXTENSION_DIRS - Extension dirs for WebLogic classpath patch
    @REM JAVA_VM - The java arg specifying the VM to run. (i.e.
    @REM - server, -hotspot, etc.)
    @REM USER_MEM_ARGS - The variable to override the standard memory arguments
    @REM passed to java.
    @REM PRODUCTION_MODE - The variable that determines whether Weblogic Server is started in production mode.
    @REM DERBY_HOME - Derby home directory.
    @REM DERBY_CLASSPATH
    @REM - Classpath needed to start Derby.
    @REM
    @REM Other variables used in this script include:
    @REM SERVER_NAME - Name of the weblogic server.
    @REM JAVA_OPTIONS - Java command-line options for running the server. (These
    @REM will be tagged on to the end of the JAVA_VM and
    @REM MEM_ARGS)
    @REM CLASS_CACHE - Enable class caching of system classpath.
    @REM
    @REM For additional information, refer to "Managing Server Startup and Shutdown for Oracle WebLogic Server"
    @REM (http://download.oracle.com/docs/cd/E24329_01/web.1211/e21048/overview.htm).
    @REM *************************************************************************
    @REM Call setDomainEnv here.
    set DOMAIN_HOME=C:\Oracle\Middleware\wlserver_12.1\samples\domains\wl_server
    for %%i in ("%DOMAIN_HOME%") do set DOMAIN_HOME=%%~fsi
    call "%DOMAIN_HOME%\bin\setDomainEnv.cmd" %*
    set SAVE_JAVA_OPTIONS=%JAVA_OPTIONS%
    set SAVE_CLASSPATH=%CLASSPATH%
    set USER_MEM_ARGS=-Xms32m -Xmx200m -XX:MaxPermSize=350m
    @REM Start Derby
    set DERBY_DEBUG_LEVEL=0
    if "%DERBY_FLAG%"=="true" (
         call "%WL_HOME%\common\derby\bin\startNetworkServer.cmd" >"%DOMAIN_HOME%\derby.log" 2>&1
    set JAVA_OPTIONS=%SAVE_JAVA_OPTIONS%
    set SAVE_JAVA_OPTIONS=
    set CLASSPATH=%SAVE_CLASSPATH%
    set SAVE_CLASSPATH=
    if "%PRODUCTION_MODE%"=="true" (
         set WLS_DISPLAY_MODE=Production
    ) else (
         set WLS_DISPLAY_MODE=Development
    if NOT "%WLS_USER%"=="" (
         set JAVA_OPTIONS=%JAVA_OPTIONS% -Dweblogic.management.username=%WLS_USER%
    if NOT "%WLS_PW%"=="" (
         set JAVA_OPTIONS=%JAVA_OPTIONS% -Dweblogic.management.password=%WLS_PW%
    if NOT "%MEDREC_WEBLOGIC_CLASSPATH%"=="" (
         if NOT "%CLASSPATH%"=="" (
              set CLASSPATH=%CLASSPATH%;%MEDREC_WEBLOGIC_CLASSPATH%
         ) else (
              set CLASSPATH=%MEDREC_WEBLOGIC_CLASSPATH%
    echo .
    echo .
    echo JAVA Memory arguments: %MEM_ARGS%
    echo .
    echo WLS Start Mode=%WLS_DISPLAY_MODE%
    echo .
    echo CLASSPATH=%CLASSPATH%
    echo .
    echo PATH=%PATH%
    echo .
    echo ***************************************************
    echo * To start WebLogic Server, use a username and *
    echo * password assigned to an admin-level user. For *
    echo * server administration, use the WebLogic Server *
    echo * console at http:\\hostname:port\console *
    echo ***************************************************
    @REM CLASS CACHING
    if "%CLASS_CACHE%"=="true" (
         CALL :classCaching
    @REM START WEBLOGIC
    echo starting weblogic with Java version:
    %JAVA_HOME%\bin\java %JAVA_VM% -version
    if "%WLS_REDIRECT_LOG%"=="" (
         echo Starting WLS with line:
         echo %JAVA_HOME%\bin\java %JAVA_VM% %MEM_ARGS% -Dweblogic.Name=%SERVER_NAME% -Djava.security.policy=%WL_HOME%\server\lib\weblogic.policy %JAVA_OPTIONS% %PROXY_SETTINGS% %SERVER_CLASS%
         %JAVA_HOME%\bin\java %JAVA_VM% %MEM_ARGS% -Dweblogic.Name=%SERVER_NAME% -Djava.security.policy=%WL_HOME%\server\lib\weblogic.policy %JAVA_OPTIONS% %PROXY_SETTINGS% %SERVER_CLASS%
    ) else (
         echo Redirecting output from WLS window to %WLS_REDIRECT_LOG%
         %JAVA_HOME%\bin\java %JAVA_VM% %MEM_ARGS% -Dweblogic.Name=%SERVER_NAME% -Djava.security.policy=%WL_HOME%\server\lib\weblogic.policy %JAVA_OPTIONS% %PROXY_SETTINGS% %SERVER_CLASS% >"%WLS_REDIRECT_LOG%" 2>&1
    CALL :stopAll
    popd
    @REM Exit this script only if we have been told to exit.
    if "%doExitFlag%"=="true" (
         exit
    ENDLOCAL
    please help!

    How are you deploying - from an IDE, or weblogic.Deployer or the console...?
    With console....
    Have you opened an SR with Oracle?
    Not yet. How to do it?

  • Error deploying application from JDEVELOPER

    I am getting following in my log when I try to deploy application from my JDeveloper 10g to Application Server 10g. Application is deployed correctly but the status is never reflected in the Jdeveloper log.
    Please help.
    ---- Deployment started. ---- Mar 5, 2004 8:30:16 AM
    Target platform is Oracle9i Application Server (CCA_DEV_01_MIDT_OC4J_CCABID).
    Wrote WAR file to C:\mydata\Dev\bid\deploy\ccabid_war.war
    Wrote EAR file to C:\mydata\Dev\bid\deploy\ccabid_ear.ear
    Invoking DCM servlet client...
    C:\j2sdk1.4.1_05\jre\bin\javaw.exe -Djava.protocol.handler.pkgs=HTTPClient -jar C:\JDev905\jdev\lib\oc4j_remote_deploy.jar http://cca-dev-01.correctionscorp.com :1811/Oc4jDcmServletAPI/ ias_admin **** redeploy /opt/oracle/product/904midt C:\mydata\Dev\bid\deploy\ccabid_ear.ear ccabid OC4J_CCABID
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command redeploy /opt/oracle/product/904midt C:\mydata\Dev\bid\deploy\ccabid_ear.ear ccabid OC4J_CCABID
    Command = REDEPLOY
    Reading application's ear file
    Ear file was successfully read
    Opening connection to Oc4jDcmServlet
    Setting userName to ias_admin
    Sending command to DCM servlet
    HTTP response code = 200, HTTP response msg = OK
    Command was successfully sent to Oc4jDcmServlet
    Receiving session id from servlet to check command status
    Session id = 0a010146713c603e7aba452414fab32c1b98f475320
    Please, wait for command to finish...
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=0a010146713c603e7aba452414fab32c1b98f475320
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=0a010146713c603e7aba452414fab32c1b98f475320
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has finished
    Receiving command exit value
    Receiving command output
    **** No output was received from command
    Closing connection to Oc4jDcmServlet
    DCM command completed successfully.
    Output:
    Exit status of DCM servlet client: 0
    Elapsed time for deployment: 1 minute, 15 seconds
    ---- Deployment finished. ---- Mar 5, 2004 8:31:31 AM

    I have the same problem ,but I deployed the application to a standalone oc4j ,I got the following error message,C:\OC4J\j2ee\home>java -jar oc4j.jar
    04/03/13 15:47:28 Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)
    initialized
    04/03/13 15:57:44 Notification ==> Application Deployer for servletDemo STARTS [
    2004-03-13T15:57:44.000CST ]
    04/03/13 15:57:44 Notification ==> Undeploy previous deployment
    04/03/13 15:57:44 Notification ==> Copy the archive to C:\OC4J\j2ee\home\applica
    tions\servletDemo.ear
    04/03/13 15:57:44 Notification ==> Unpack servletDemo.ear begins...
    04/03/13 15:57:44 Auto-unpacking C:\OC4J\j2ee\home\applications\servletDemo.ear.
    .. done.
    04/03/13 15:57:44 Notification ==> Unpack servletDemo.ear ends...
    04/03/13 15:57:44 Notification ==> Initialize servletDemo.ear begins...
    04/03/13 15:57:44 Auto-unpacking C:\OC4J\j2ee\home\applications\servletDemo\serv
    letDemo.war... done.
    04/03/13 15:57:44 Copying default deployment descriptor from archive at C:\OC4J\
    j2ee\home\applications\servletDemo/META-INF/orion-application.xml to deployment
    directory C:\OC4J\j2ee\home\application-deployments\servletDemo...
    04/03/13 15:57:44 Notification ==> Initialize servletDemo.ear ends...
    04/03/13 15:57:44 Notification ==> Initialize servletDemo begins...
    04/03/13 15:57:44 Notification ==> Initialize servletDemo ends...
    oracle.oc4j.admin.internal.DeployerException: C:\OC4J\j2ee\home\config\server.xm
    l (¾Ü¾ø·ÃÎÊ¡£)
    at oracle.oc4j.admin.internal.ApplicationDeployer.storeConfig(Applicatio
    nDeployer.java:421)
    at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDe
    ployer.java:129)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:73)
    at com.evermind.server.administration.DefaultApplicationServerAdministra
    tor.internalDeploy(DefaultApplicationServerAdministrator.java:378)
    at com.evermind.server.administration.DefaultApplicationServerAdministra
    tor.deploy(DefaultApplicationServerAdministrator.java:278)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:124)
    at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:48)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:536)
    ---- Embedded exception
    java.io.FileNotFoundException: C:\OC4J\j2ee\home\config\server.xml (¾Ü¾ø·ÃÎÊ¡£)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:176)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
    at com.evermind.xml.XMLConfig.storeToURL(XMLConfig.java:439)
    at com.evermind.xml.XMLConfig.store(XMLConfig.java:426)
    at com.evermind.server.ServerComponent.store(ServerComponent.java:794)
    at com.evermind.server.ServerComponent.store(ServerComponent.java:766)
    at oracle.oc4j.admin.internal.ApplicationDeployer.storeConfig(Applicatio
    nDeployer.java:418)
    at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDe
    ployer.java:129)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:73)
    at com.evermind.server.administration.DefaultApplicationServerAdministra
    tor.internalDeploy(DefaultApplicationServerAdministrator.java:378)
    at com.evermind.server.administration.DefaultApplicationServerAdministra
    tor.deploy(DefaultApplicationServerAdministrator.java:278)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:124)
    at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:48)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:536)
    04/03/13 15:57:44 Notification ==> Application Deployer for servletDemo FAILED:
    C:\OC4J\j2ee\home\config\server.xml (¾Ü¾ø·ÃÎÊ¡£) [ 2004-03-13T15:57:44.500CST ]
    04/03/13 15:57:44 Notification ==> Application UnDeployer for servletDemo STARTS
    [ Sat Mar 13 15:57:44 CST 2004 ]
    04/03/13 15:57:44 Error updating file:/C:/OC4J/j2ee/home/config/server.xml: C:\O
    C4J\j2ee\home\config\server.xml (¾Ü¾ø·ÃÎÊ¡£)
    oracle.oc4j.admin.internal.DeployerException: Unable to remove web bindings for
    application servletDemo: C:\OC4J\j2ee\home\config\http-web-site.xml (¾Ü¾ø·ÃÎÊ¡£)
    at oracle.oc4j.admin.internal.ApplicationUnDeployer.doUndeploy(Applicati
    onUnDeployer.java:84)
    at oracle.oc4j.admin.internal.UnDeployerBase.execute(UnDeployerBase.java
    :52)
    at oracle.oc4j.admin.internal.ApplicationDeployer.undo(ApplicationDeploy
    er.java:146)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:89)
    at com.evermind.server.administration.DefaultApplicationServerAdministra
    tor.internalDeploy(DefaultApplicationServerAdministrator.java:378)
    at com.evermind.server.administration.DefaultApplicationServerAdministra
    tor.deploy(DefaultApplicationServerAdministrator.java:278)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:124)
    at com.evermind.server.rmi.RMICallHandler.run(RMICallHandler.java:48)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:536)
    04/03/13 15:57:44 Notification ==> Application UnDeployer for servletDemo FAILED
    : Unable to remove web bindings for application servletDemo: C:\OC4J\j2ee\home\c
    onfig\http-web-site.xml (¾Ü¾ø·ÃÎÊ¡£) [ Sat Mar 13 15:57:44 CST 2004 ]
    ÒÔÉÏÊÇÎÒÓÃJDeveloper 10gÏòStandaloneOC4JÖÐDeployÒ»¸ö¼òµ¥µÄJ2EE Web³ÌÐòµÄʱºò,OC4J·µ»ØµÄ´íÎóÐÅÏ¢,ÎҵĻúÆ÷ÊÇWindowns 2003 Server jdk 1.4»¹Çë¸ßÊÖÖ¸½Ì.

  • Error from building medrec example for weblogic 10

    Hi,
    I tried to re-build medrec example for weblogic 10 and got error below. What was wrong?
    Any information would be appreciated. Thanks in advance.
    D:\bea\wlserver_10.0\samples\server\medrec\src>ant
    Buildfile: build.xml
    init:
    [echo] #### S T A R T M E D R E C ####
    [echo] Started on December 10 2007 at 0856
    build:
    banner:
    [echo] --------------------------------------------
    [echo] + Building StartBrowser Ear +
    [echo] --------------------------------------------
    build:
    BUILD FAILED
    D:\bea\wlserver_10.0\samples\server\medrec\src\build.xml:26: The following error occurred while exec
    uting this line:
    D:\bea\wlserver_10.0\samples\server\medrec\src\startBrowserEar\build.xml:50: Problem: failed to crea
    te task or type wlcompile
    Cause: The name is undefined.
    Action: Check the spelling.
    Action: Check that any custom tasks/types have been declared.
    Action: Check that any <presetdef>/<macrodef> declarations have taken place.

    open a new command window , run setDomainEnv.cmd and in the same window run ant task.

  • Running Oracle ADF tutorial example to weblogic server

    Hi all,
    I am following the tutorial at [Developing RIA Web Applications with Oracle ADF|http://st-curriculum.oracle.com/obe/jdev/obe11jdev/ps1/ria_application/developriaapplication_long.htm] . However, I did something new here. I deployed the finished sample to weblogic admin server, and it went fine. But when I tried to access the page DeptEmpPage.jspx, I got exception:
    oracle.jbo.DMLException: JBO-26061: Error while opening JDBC connection.
    and also
    java.sql.SQLException: ORA-01005: null password given; logon denied
    Looks like the user hr was not logged in. I tried to give explicit plaintext password in the file connections.xml as following
    <SecureRefAddr addrType="password">
    <Contents>hr</Contents>
    </SecureRefAddr>
    , but this also did not work.
    Could you please let me know how to make it working? I know for security concerns, we may need to have a log in form to do authentication. But for the quick-fix and pedagogic purpose, could anyone here please help?
    Many thanks.

    Dou you need to change the bc4j.xcfg content to reference the JNDI connection created in the deployment. Note that the deployed EAR creates a HrDS JDBC connnection with the credentials and Security user and associations, see the JNDI url in your app, for example, for "jdbc/HrDSDS", the entry to be added to the config file must be <Custom JDBCDataSource="java:comp/env/jdbc/HrDSDS"/>
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BC4JConfig version="11.1" xmlns="http://xmlns.oracle.com/bc4j/configuration">
    <AppModuleConfigBag ApplicationName="lt.andrejusb.model.HrModule">
    <AppModuleConfig name="HrModuleLocal" ApplicationName="lt.andrejusb.model.HrModule" DeployPlatform="LOCAL" jbo.project="lt.andrejusb.model.Model">
    <Database jbo.TypeMapEntries="OracleApps"/>
    <Security AppModuleJndiName="lt.andrejusb.model.HrModule"/>
    *<Custom JDBCDataSource="java:comp/env/jdbc/HrDSDS"/>*
    </AppModuleConfig>
    <AppModuleConfig name="HrModuleShared" ApplicationName="lt.andrejusb.model.HrModule" DeployPlatform="LOCAL" jbo.project="lt.andrejusb.model.Model">
    <AM-Pooling jbo.ampool.maxpoolsize="1" jbo.ampool.isuseexclusive="false"/>
    <Database jbo.TypeMapEntries="OracleApps"/>
    <Security AppModuleJndiName="lt.andrejusb.model.HrModule"/>
    <Custom JDBCDataSource="java:comp/env/jdbc/HrDSDS"/>
    </AppModuleConfig>
    </AppModuleConfigBag>
    </BC4JConfig>

  • Java.lang.StackOverflowError Running BASIC JSF 2 example on Weblogic 12c

    *I followed the very basic tutorial found here  example and cannot seem to get past the following error:*
    Error 500--Internal Server Error
    java.lang.StackOverflowError
    at weblogic.servlet.internal.ServletResponseImpl.addHeader(ServletResponseImpl.java:567)
    at javax.servlet.http.HttpServletResponseWrapper.addHeader(HttpServletResponseWrapper.java:200)
    at javax.servlet.http.HttpServletResponseWrapper.addHeader(HttpServletResponseWrapper.java:200)
    at javax.servlet.http.HttpServletResponseWrapper.addHeader(HttpServletResponseWrapper.java:200)
    at javax.servlet.http.HttpServletResponseWrapper.addHeader(HttpServletResponseWrapper.java:200)
    Pressing shift + F5 a couple times I can generate a slightly different stacktrace as follows:
    Error 500--Internal Server Error
    java.lang.StackOverflowError
    at com.sun.faces.application.ViewHandlerResponseWrapper.setStatus(ViewHandlerResponseWrapper.java:88)
    at javax.servlet.http.HttpServletResponseWrapper.setStatus(HttpServletResponseWrapper.java:224)
    at com.sun.faces.application.ViewHandlerResponseWrapper.setStatus(ViewHandlerResponseWrapper.java:88)
    at javax.servlet.http.HttpServletResponseWrapper.setStatus(HttpServletResponseWrapper.java:224)
    Here is my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    id="WebApp_ID" version="2.5">
    <display-name>JavaServerFaces</display-name>
    <!-- JSF mapping -->
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <!-- Map these files with JSF -->
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.xhtml</url-pattern>
    </servlet-mapping>
    </web-app>
    Here is the pom.xml
    <project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
    http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.example</groupId>
    <artifactId>JavaServerFaces</artifactId>
    <packaging>war</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>JavaServerFaces Maven Webapp</name>
    <url>http://maven.apache.org</url>
    <dependencies>
    <dependency>
    <groupId>com.sun.faces</groupId>
    <artifactId>jsf-api</artifactId>
    <version>2.1.7</version>
    </dependency>
    <dependency>
    <groupId>com.sun.faces</groupId>
    <artifactId>jsf-impl</artifactId>
    <version>2.1.7</version>
    </dependency>
    <dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
    </dependency>
    <dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>2.5</version>
    </dependency>
    <dependency>
    <groupId>javax.servlet.jsp</groupId>
    <artifactId>jsp-api</artifactId>
    <version>2.1</version>
    </dependency>
    </dependencies>
    <build>
    <finalName>JavaServerFaces</finalName>
    <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>2.3.1</version>
    <configuration>
    <source>1.6</source>
    <target>1.6</target>
    </configuration>
    </plugin>
    </plugins>
    </build>
    </project>
    I have exhausted several hours searching the web and constructing new projects with no luck. I understand that the StackOverflowError is produced from bad recursion calls and infinite loops, however I can't see this as the case here.
    My current dev stack is eclipse juno (oepe-12.1.1.2.1-juno-distro-win32-x86_64.zip), m2e-wtp, weblogic 12c, Java EE 6 using JSF 2.1
    *If I export the war file using eclipse (Right click the project -> Export -> WAR file) then manually deploy it via the weblogic admin counsel the app works as expected. As soon as I add the project to the server inside eclipse and start the server I can no longer view the page. I noticed that in the autogenerated_ear_ folder per my domain that each project project folder is actually empty.*
    Any help would me MUCH appreciated!!
    UPDATE - Solved the problem! After adding JSF 2.1 in the pom.xml the JSF 2.1 checkbox was checked in project facets, however it did not add the faces-config.xml to the project. I simple created a new xml file named faces-config.xml under the webapp folder and added the following xml:
    <?xml version='1.0' encoding='UTF-8'?>
    <faces-config xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
    http://java.sun.com/xml/ns/javaee/web-facesconfig_2_1.xsd" version="2.1">
    <application></application>
    </faces-config>
    I hope this helps others!
    Edited by: 1006228 on May 15, 2013 8:21 PM
    Edited by: 1006228 on May 16, 2013 6:39 PM

    Hi.
    Try this http://oracleradio.blogspot.com/2012/01/error-durante-el-deployment-de-un.html
    It is in spanish, but the important part is that u may correct the issue, installing 11.1.1.5 with the Feature Pack.
    It seems to be happening with processes that have loop formed with boundary event inside a gateway circuit.
    Hope this helps.
    best

  • Error deploying page from 4.0 application to 4.1

    Hi:
    I have successfully deployed a page from a 4.0 apex application to the same application in apex 4.1.
    The page is imported successfully.
    However, when I run the page, I get the following error:
    Can't display page item because the HTML form was not yet opened
    Certain items on the page have to be deleted before the page will display and I am not sure why.
    Also, the standard reports do not display. If I re-create the report on the page with exactly the same query, it does display.
    What is the issue here. Why will my 4.0 page not display properly in 4.1?
    Regards,
    Bruce

    Here's a couple ideas . . . True, you can't downgrade without jailbreaking your phone. Which I personally don't recommend. Other folks may, you'll need to research and make your own decision.
    Here's a couple:
    http://www.tipb.com/2010/07/06/improve-ios-4-performance-iphone-3g/
    Or:
    A double hard reset can temporarily fix the problem. Hold both the home and sleep/wake buttons until the phone turns off. When it comes back up to your home or password screen, hold both buttons again. This time your phone should stay off. Let it sit for ~10 seconds or so, then turn it back on.
    Sharon

  • Error Deploying App from EPMA

    Hai Experts,
    I am getting an error while deploying an application from EPMA to HFM,
    Error details are:
    Error Reference Number: {AE9976BC-4543-4173-B808-C6EB135EFE96}
    Num: 0x800412c4;Type: 1;DTime: 9/1/2012 4:51:31 AM;Svr: STATION31;File: ;Line: -1;Ver: 11.1.1.3.0.2413;DStr: Error in UnregisterInstance();
    Num: 0x800412c4;Type: 0;DTime: 9/1/2012 4:51:31 AM;Svr: STATION31;File: CHFMCASSecurity.cpp;Line: 617;Ver: 11.1.1.3.0.2413;
    Num: 0x80040225;Type: 1;DTime: 9/1/2012 4:51:32 AM;Svr: STATION31;File: CHsxServerImpl.cpp;Line: 3537;Ver: 11.1.1.3.0.2413;
    Num: 0x80040225;Type: 0;DTime: 9/1/2012 4:51:37 AM;Svr: STATION31;File: CHsxServer.cpp;Line: 1115;Ver: 11.1.1.3.0.2413;
    Num: 0x80040225;Type: 0;DTime: 9/1/2012 4:51:37 AM;Svr: STATION31;File: CHsxServer.cpp;Line: 1010;Ver: 11.1.1.3.0.2413;
    Num: 0x80040225;Type: 0;DTime: 9/1/2012 4:51:37 AM;Svr: STATION31;File: AgentHelper.cpp;Line: 610;Ver: 11.1.1.3.0.2413;
    Num: 0x80040225;Type: 0;DTime: 9/1/2012 4:51:38 AM;Svr: STATION31;File: CHfmAwbAgent.cpp;Line: 546;Ver: 11.1.1.3.0.2413;
    Even when i am creating application in Windows client and Browser client also i cannot create application it is showing error
    %0
    Details:
    Error Reference Number: {5AD0BE1C-7280-4BB2-9ED9-6B26FBF8A8D9}
    Num: 0x800412c4;Type: 0;DTime: 9/1/2012 5:04:30 AM;Svr: STATION31;File: CHsxServerImpl.cpp;Line: 3512;Ver: 11.1.1.3.0.2413;
    Num: 0x800412c4;Type: 0;DTime: 9/1/2012 5:04:30 AM;Svr: STATION31;File: CHsxServer.cpp;Line: 1115;Ver: 11.1.1.3.0.2413;
    Num: 0x800412c4;Type: 0;DTime: 9/1/2012 5:04:30 AM;Svr: STATION31;File: CHsxServer.cpp;Line: 857;Ver: 11.1.1.3.0.2413;
    Num: 0x800412c4;Type: 0;DTime: 9/1/2012 5:04:30 AM;Svr: STATION31;File: CHsxClient.cpp;Line: 2106;Ver: 11.1.1.3.0.2413;
    Can anyone please solve the issue.
    Edited by: 7088 on Sep 1, 2012 5:07 AM

    Hi,
    Can anyone solve my issue urgent please.
    The error is while deploying my duplicate application i am getting an error " Application already exist" Aborted 100% but there is no application with the name
    2012-09-05 10:42:24,765 [TP-Processor3] DEBUG com.hyperion.bpm.webservice.util.ConnectionManager - returnService(http://vasavi-42146cdb:80/hyperion-bpma-server/,ObjectRepository.asmx, Object) - end
    2012-09-05 10:42:24,765 [TP-Processor3] DEBUG com.hyperion.awb.web.appmanager.Action - Application is in deploy pending state.
    2012-09-05 10:42:24,765 [TP-Processor3] DEBUG com.hyperion.awb.web.appmanager.Action - Timeout is set for [480]
    2012-09-05 10:42:24,765 [TP-Processor3] DEBUG com.hyperion.awb.web.util.CatalogCodec - The id is::1_4
    2012-09-05 10:42:24,765 [TP-Processor3] DEBUG com.hyperion.awb.web.util.CatalogCodec - The json element is::{"viewCreationDate":{"dateTime":"1346758230205","transId":"-1"},"dimensionServerApplicationID":4,"dimensionServerLibraryID":1,"rulesDeployStatus":1,"deployment":{"instance":{"datasource":"NONE","webServer":"vasavi-42146cdb","name":"HfmWeb:vasavi-42146cdb","cluster":"Hyperion"},"pendingDeployment":{"dateTime":"1346758524315","transId":"6732"}}}
    2012-09-05 10:42:24,765 [TP-Processor3] DEBUG com.hyperion.awb.web.appmanager.Action - Application [HFM:USRPT] deployment has timed out.
    2012-09-05 10:42:24,797 [TP-Processor3] INFO com.hyperion.awb.web.appmanager.Service - BaseService() - start
    2012-09-05 10:42:24,797 [TP-Processor3] INFO com.hyperion.awb.web.appmanager.Service - BaseService() - end
    2012-09-05 10:42:24,797 [TP-Processor3] INFO com.hyperion.awb.web.appmanager.Service - BaseService(Server) - start
    2012-09-05 10:42:24,797 [TP-Processor3] INFO com.hyperion.awb.web.appmanager.Service - BaseService(Server) - end
    2012-09-05 10:42:29,953 [TP-Processor3] ERROR com.hyperion.awb.web.appmanager.Action - Error code is AWB_WEB_ERR_UTIL_FIND_PROJ_APP
    2012-09-05 10:42:30,250 [TP-Processor3] ERROR com.hyperion.awb.web.appmanager.Action - Error finding project for application HFM:USRPT
    com.hyperion.interop.lib.OperationFailedException: Application does not exists by this Id 'HFM:USRPT'.
         at com.hyperion.interop.lib.helper.ApplicationHelper.getProjectForApplication(Unknown Source)
         at com.hyperion.interop.lib.CMSClient.getProjectForApplication(Unknown Source)
         at com.hyperion.awb.web.util.HSSRegistrationUtil.getHubProjectForApp(HSSRegistrationUtil.java:162)
         at com.hyperion.awb.web.appmanager.Action.checkPendingState(Action.java:1599)
         at com.hyperion.awb.web.appmanager.Action.getAppSummaryInfo(Action.java:1688)
         at com.hyperion.awb.web.appmanager.Action.getAppDetails(Action.java:1664)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:276)
         at org.apache.struts.actions.DispatchAction.execute(DispatchAction.java:196)
         at org.apache.struts.actions.MappingDispatchAction.execute(MappingDispatchAction.java:171)
         at com.hyperion.bpm.web.common.BaseAction.execute(BaseAction.java:69)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:421)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:226)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1158)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:415)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at com.hyperion.awb.web.util.HttpFilter.doFilter(HttpFilter.java:19)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:199)
         at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:282)
         at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:754)
         at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:684)
         at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:876)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:595)
    2012-09-05 10:42:30,250 [TP-Processor3] DEBUG com.hyperion.awb.web.appmanager.Action - Updating App View Status: iWspId[1] iAppId[4] deploySucceeded[false]
    2012-09-05 10:42:30,250 [TP-Processor3] DEBUG com.hyperion.bpm.webservice.util.ConnectionManager - getService(http://vasavi-42146cdb:80/hyperion-bpma-server/, Applications.asmx) - start
    2012-09-05 10:42:30,250 [TP-Processor3] INFO com.hyperion.awb.webservice.util.ConnectionPoolFactory - getServiceUrl(ServiceType) - start
    2012-09-05 10:42:30,250 [TP-Processor3] INFO com.hyperion.awb.webservice.util.ConnectionPoolFactory - getServiceUrl(ServiceType) - end : http://vasavi-42146cdb:80/hyperion-bpma-server/Applications.asmx
    Thanks in advance.

  • Error deploying Agent from EM12C

    Hi,
    I am busy upgrading my Enterprise Manager from 11.1.0.1 to 12.1.0.2 using the two system approach.
    I am trying to deploy the agent software to a host machine through the old Enterprise Manager (Deployments, Enterprise Manager 12c Upgrade Comsole, Deploy and Configure Agents) , but an getting the following error during the deploy stage...
    Updating home dependencies...
    Executing command: /oracle/agent12c/core/12.1.0.2.0/oui/bin/runInstaller -ignoreSysPrereqs -updateHomeDeps -waitForCompletion HOME_DEPENDENCY_LIST={oracle/agent12c/sbin:/oracle/agent12c/core/12.1.0.2.0,} -invPtrLoc /oracle/agent12c/core/12.1.0.2.0/oraInst.loc -force
    Update Home Dependencies Location:/oracle/agent12c/core/12.1.0.2.0/cfgtoollogs/agentDeploy/UpdateHomeDeps<timestamp>.log
    ERROR: Update home dependency failed.
    Failed to deploy agent bits.
    When i run through the process manually on the host, it runs through successfully.
    I managed to get the following from one of the log files (agentDeploy_2012-10-19_00-00-34-AM.log), before it was cleaned up as part of the automated deploy action.
    INFO: 'UpdateHomeDeps' failed.
    INFO: 'UpdateHomeDeps' failed.
    INFO: /oracle/product/agent12c/core/12.1.0.2.0/oui/bin/runInstaller -ignoreSysPrereqs -updateHomeDeps -waitForCompletion HOME_DEPENDENCY_LIST={/oracle/product/agent12c
    sbin:/oracle/product/agent12c/core/12.1.0.2.0,} -invPtrLoc /oracle/product/agent12c/core/12.1.0.2.0/oraInst.loc -force completed with status=255
    SEVERE: ERROR: Update home dependency failed.
    SEVERE: ERROR: Agent Deployment Failed
    Any assistance would be greatly appreciated.
    Mel

    while doing the agent upgarde we detach the plugins from 12.1.0.1 agent home and attache dto 12.1.0.2 agent home along with plugin upgrade. log SR with the oracle support and upload the logs.

  • Error deploying application from BPMA to HFM

    I am trying to deploy a consolidation application created in BPMA and I'm getting the error below (the application did validate properley). The app deployed fine initially but I've since added dimensions and members to it. The error is as follows:
    Errors occurred in load fileError Reference Number: {5BD72545-BE43-40D6-A556-97C428CAD87C}Num: 0x800456c8;Type: 0;DTime: 5/29/2008 9:25:35 AM;Svr: DIMENSIO-IGSF4M;File: CHsvMetadata.cpp;Line: 1103;Ver: 9.3.1.0.1502;Num: 0x800456c8;Type: 0;DTime: 5/29/2008 9:25:35 AM;Svr: DIMENSIO-IGSF4M;File: AgentHelper.cpp;Line: 884;Ver: 9.3.1.0.1502;Num: 0x800456c8;Type: 0;DTime: 5/29/2008 9:25:36 AM;Svr: DIMENSIO-IGSF4M;File: CHfmAwbAgent.cpp;Line: 610;Ver: 9.3.1.0.1502;
    I cannot access the error text file to see further details. When I click the log file link a window opens up and immediately closes again.
    Has anyone else had trouble deploying apps or viewing deploy logs?

    Hi,
    I've have had the same log problem myself. Support said that the log thing is a bug of some sort. For me it started to work after changing IE settings and rebooting the servers and services. You can see the messages on the server, however.
    Take a copy of the application, and when deploying that one, clear data and metadata + check referential ... (ticks on before deploying).
    Usually helps.

  • Error deploying ejb on websphere 4.0 or weblogic 6.1

    Hi
    i have problem deploying a BMP ejb (in ear) on websphere 4.0 or weblogic 6.1. I created the ear using forte 4 and have no problem deploying it on j2ee reference implementation. It actually works on j2ee reference implementation.
    When using the websphere application assembly tool to verify the jar, i get a multiple ejbFindByPrimaryKey error but i only got 1 ejbFindByPrimaryKey method (with a db method selectByPrimaryKey).
    the error i get on weblogic(using assembly tool) is
    Cleanup the expanded directory C:\Documents and Settings\Administrator\Local Settings\Temp\ProductApp_ear
    Deploy module ProductJar.jar
    Starting workbench.
    Shutting down workbench.
    Error starting EJBDeploy environment: null.
    java.lang.reflect.InvocationTargetException: java.lang.NullPointerException
         at org.eclipse.core.internal.runtime.InternalPlatform.activateDefaultPlugins(InternalPlatform.java:100)
         at org.eclipse.core.internal.runtime.InternalPlatform.loaderStartup(InternalPlatform.java:530)
         at java.lang.reflect.Method.invoke(Native Method)
         at org.eclipse.core.internal.boot.InternalBootLoader.startup(InternalBootLoader.java:912)
         at org.eclipse.core.boot.BootLoader.startup(BootLoader.java:340)
         at com.ibm.etools.ejbdeploy.batch.impl.BatchDeploy.startup(BatchDeploy.java:162)
         at com.ibm.etools.ejbdeploy.EJBDeploy.startup(EJBDeploy.java:268)
         at com.ibm.etools.ejbdeploy.EJBDeploy.execute(EJBDeploy.java:57)
         at com.ibm.etools.ejbdeploy.EJBDeploy.main(EJBDeploy.java:207)
    Delete undeployed module file C:\Documents and Settings\Administrator\Local Settings\Temp\ProductApp_ear\ProductJar_source.jar
    Save the deployed modules as EAR file E:\sch\ead\asgt\Deployed_ProductApp.ear

    sorry i made a mistake... the assembly tool is from webshpere.

  • IIS Forword problem from IIS 6.0 to weblogic 12c

    I am using IIS 6.0 in windows 2003. I have set the IIS forward to weblogic 12c in 32bits and 64bits windows 2008 R2. But it does not work when call the Action class such as "index.do" , call JSP page is work property. I want to know whether the iisproxy.dll or iisforward.dll is required to upgrade or not. Thank

    I am using IIS 6.0 in windows 2003. I have set the IIS forward to weblogic 12c in 32bits and 64bits windows 2008 R2. But it does not work when call the Action class such as "index.do" , call JSP page is work property. I want to know whether the iisproxy.dll or iisforward.dll is required to upgrade or not. Thank

  • Error deploying

    Hi while try to deploy a SOA composite which contains BPEL process, I am getting below error regarding variable initialization. I am not able to understand what exactly is this error referring can somebody provide some pointers
    [04:23:24 PM] ---- Deployment started. ----
    [04:23:24 PM] Target platform is (Weblogic 10.3).
    [04:23:24 PM] Running dependency analysis...
    [04:23:24 PM] Building...
    [04:23:57 PM] Deploying profile...
    [04:23:57 PM] Updating revision id for the SOA Project 'CODUserProvisionComposite.jpr' to '1.0'..
    [04:23:58 PM] Wrote Archive Module to /scratch/aachanda/view_storage/aachanda_t3/fusionapps/crm/components/serviceSoa/csy/businessAdmin/CODUserProvisionComposite/deploy/sca_CODUserProvisionComposite_rev1.0.jar
    [04:23:58 PM] Deploying sca_CODUserProvisionComposite_rev1.0.jar to partition "default" on server soa_server1 [http://host1.example.com:8001]
    [04:23:58 PM] Processing sar=/scratch/aachanda/view_storage/aachanda_t3/fusionapps/crm/components/serviceSoa/csy/businessAdmin/CODUserProvisionComposite/deploy/sca_CODUserProvisionComposite_rev1.0.jar
    [04:23:58 PM] Adding sar file - /scratch/aachanda/view_storage/aachanda_t3/fusionapps/crm/components/serviceSoa/csy/businessAdmin/CODUserProvisionComposite/deploy/sca_CODUserProvisionComposite_rev1.0.jar
    [04:23:58 PM] Preparing to send HTTP request for deployment
    [04:23:58 PM] Creating HTTP connection to host:host1.example.com, port:8001
    [04:23:58 PM] Sending internal deployment descriptor
    [04:23:59 PM] Sending archive - sca_CODUserProvisionComposite_rev1.0.jar
    [04:24:03 PM] Received HTTP response from the server, response code=500
    [04:24:03 PM] Error deploying archive sca_CODUserProvisionComposite_rev1.0.jar to partition "default" on server soa_server1 [http://host1.example.com:8001]
    [04:24:03 PM] HTTP error code returned [500]
    [04:24:03 PM] Error message from server:
    There was an error deploying the composite on soa_server1: Deployment Failed: Error occurred during deployment of component: CODAsyncUserProvProcess to service engine: implementation.bpel, for composite: CODUserProvisionComposite: ORABPEL-09705
    Could not initialize variable.
    An error occurs while initializing BPEL variable outputVariable; the schema processor cannot find the element {http://xmlns.oracle.com/serviceSoa/CODUserProvisionComposite/CODAsyncUserProvProcess}processResponse in the following schemas: oracle.fabric.common.wsdl.SchemaManager@12faefea.
    The XSD element on which the variable was based was not properly defined in XSD or the WSDL.
    Ensure that the element named in the error message is valid in the XSD or the WSDL.
    [04:24:03 PM] Check server log for more details.
    [04:24:03 PM] Error deploying archive sca_CODUserProvisionComposite_rev1.0.jar to partition "default" on server soa_server1 [http://host1.example.com:8001]
    [04:24:03 PM] #### Deployment incomplete. ####
    [04:24:03 PM] Error deploying archive file:/scratch/aachanda/view_storage/aachanda_t3/fusionapps/crm/components/serviceSoa/csy/businessAdmin/CODUserProvisionComposite/deploy/sca_CODUserProvisionComposite_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)

    Could not initialize variable.
    An error occurs while initializing BPEL variable outputVariable; *the schema processor cannot find the element {http://xmlns.oracle.com/serviceSoa/CODUserProvisionComposite/CODAsyncUserProvProcess}processResponse* in the following schemas: oracle.fabric.common.wsdl.SchemaManager@12faefea.
    The XSD element on which the variable was based was not properly defined in XSD or the WSDL.
    Ensure that the element named in the error message is valid in the XSD or the WSDL.One of the schema references is incorrect or deployer is unable to find it. Correct this reference and it should go through fine.
    Thanks,
    Patrick

  • BPM11G- Error deploying project due to integrity constraint on  BPM_CUBE_GL

    I have a 11.1.1.3 installation on XP where I have deployed other soa projects. I tried deploying a new bpm project from a tutorial but it always errors out with the following error. I checked the local database for all BPM_CUBE* tables. Only one table had a few entries that I cleaned out. No luck with deploying a bpm project. I checked the forums here as well, but there do not appear to be any earlier problems logged.
    Any ideas?
    03:53:43 PM] Sending internal deployment descriptor
    [03:53:43 PM] Sending archive - sca_Project1_rev1.0.jar
    [03:53:55 PM] Received HTTP response from the server, response code=500
    [03:53:55 PM] Error deploying archive sca_Project1_rev1.0.jar to partition "default" on server soa_server1 [192.168.1.115:8001]
    [03:53:55 PM] HTTP error code returned [500]
    [03:53:55 PM] Error message from server:
    Error during deployment: Deployment Failed: Error occurred during deployment of component: QuoteProcess to service engine: implementation.bpmn, for composite: Project1: javax.ejb.EJBException: BEA1-32C827E3058560994897: Local Exception Stack:
    Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
    Error Code: 1
    Call: INSERT INTO BPM_CUBE_GLOBALCREATETASK (ACTIVITYLABEL, ROLE, APPLICATIONCONTEXT, SYSTEMSTRING01, SYSTEMSTRING02, SYSTEMSTRING03, ACTIVITYNAME, PROCESSID) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
         bind => [Business Practices Review, Project1.BusinessPractices, OracleBPMProcessRolesApp, default/Project1!1.0*soa_22ea7615-677c-4e88-aaf3-dd24cfc61d16/BusinessPracticeReviewTask, null, null, activity1, 484]
    Query: InsertObjectQuery([email protected]facd1e)
         at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:324)
         at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:801)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:85)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:953)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1224)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3467)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1350)
         at weblogic.jdbc.wrapper.PreparedStatement.executeUpdate(PreparedStatement.java:172)
         at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:792)
         ... 102 more
    ; nested exception is:
         Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
    Error Code: 1
    Call: INSERT INTO BPM_CUBE_GLOBALCREATETASK (ACTIVITYLABEL, ROLE, APPLICATIONCONTEXT, SYSTEMSTRING01, SYSTEMSTRING02, SYSTEMSTRING03, ACTIVITYNAME, PROCESSID) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
         bind => [Business Practices Review, Project1.BusinessPractices, OracleBPMProcessRolesApp, default/Project1!1.0*soa_22ea7615-677c-4e88-aaf3-dd24cfc61d16/BusinessPracticeReviewTask, null, null, activity1, 484]
    Query: InsertObjectQuery([email protected]facd1e); nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
    Error Code: 1
    Call: INSERT INTO BPM_CUBE_GLOBALCREATETASK (ACTIVITYLABEL, ROLE, APPLICATIONCONTEXT, SYSTEMSTRING01, SYSTEMSTRING02, SYSTEMSTRING03, ACTIVITYNAME, PROCESSID) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
         bind => [Business Practices Review, Project1.BusinessPractices, OracleBPMProcessRolesApp, default/Project1!1.0*soa_22ea7615-677c-4e88-aaf3-dd24cfc61d16/BusinessPracticeReviewTask, null, null, activity1, 484]
    Query: InsertObjectQuery([email protected]facd1e): BEA1-32C827E3058560994897: Local Exception Stack:
    Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
    Error Code: 1
    Call: INSERT INTO BPM_CUBE_GLOBALCREATETASK (ACTIVITYLABEL, ROLE, APPLICATIONCONTEXT, SYSTEMSTRING01, SYSTEMSTRING02, SYSTEMSTRING03, ACTIVITYNAME, PROCESSID) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
         bind => [Business Practices Review, Project1.BusinessPractices, OracleBPMProcessRolesApp, default/Project1!1.0*soa_22ea7615-677c-4e88-aaf3-dd24cfc61d16/BusinessPracticeReviewTask, null, null, activity1, 484]
    Query: InsertObjectQuery([email protected]facd1e)
         at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:324)
         at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:801)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:85)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:953)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1224)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3467)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1350)
         at weblogic.jdbc.wrapper.PreparedStatement.executeUpdate(PreparedStatement.java:172)
         at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:792)
         ... 102 more
    ; nested exception is:
         Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
    Error Code: 1
    Call: INSERT INTO BPM_CUBE_GLOBALCREATETASK (ACTIVITYLABEL, ROLE, APPLICATIONCONTEXT, SYSTEMSTRING01, SYSTEMSTRING02, SYSTEMSTRING03, ACTIVITYNAME, PROCESSID) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
         bind => [Business Practices Review, Project1.BusinessPractices, OracleBPMProcessRolesApp, default/Project1!1.0*soa_22ea7615-677c-4e88-aaf3-dd24cfc61d16/BusinessPracticeReviewTask, null, null, activity1, 484]
    Query: InsertObjectQuery([email protected]facd1e); nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
    Error Code: 1
    Call: INSERT INTO BPM_CUBE_GLOBALCREATETASK (ACTIVITYLABEL, ROLE, APPLICATIONCONTEXT, SYSTEMSTRING01, SYSTEMSTRING02, SYSTEMSTRING03, ACTIVITYNAME, PROCESSID) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
         bind => [Business Practices Review, Project1.BusinessPractices, OracleBPMProcessRolesApp, default/Project1!1.0*soa_22ea7615-677c-4e88-aaf3-dd24cfc61d16/BusinessPracticeReviewTask, null, null, activity1, 484]
    Query: InsertObjectQuery([email protected]facd1e).
    [03:53:55 PM] Check server log for more details.
    [03:53:55 PM] Error deploying archive sca_Project1_rev1.0.jar to partition "default" on server soa_server1 [192.168.1.115:8001]
    [03:53:55 PM] #### Deployment incomplete. ####
    [03:53:55 PM] Error deploying archive file:/C:/JDeveloper/mywork/SalesQuoteApp/Project1/deploy/sca_Project1_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)

    hi peoples,
    i'm pretty new with Oracle BPM and now i have the same problem with deploying my application.
    Does anyone know how to resolve this problem?
    tnx

Maybe you are looking for