Classpath of startWebLogic.cmd

How to know the contents of classpath of startWebLogic.cmd?
I need to know what jars are loaded.

Thanks.
Following is setDomainEnv.cmd. Should I change all "export PRE_CLASSPATH" ?
@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/E17904_01/web.1111/e13708/overview.htm).
@REM *************************************************************************
set COMMON_COMPONENTS_HOME=D:\Oracle\Middleware\oracle_common
for %%i in ("%COMMON_COMPONENTS_HOME%") do set COMMON_COMPONENTS_HOME=%%~fsi
set APPLICATIONS_DIRECTORY=D:\Oracle\Middleware\user_projects\applications\test_EM_32JKD_7071
set WL_HOME=D:\Oracle\Middleware\wlserver_10.3
for %%i in ("%WL_HOME%") do set WL_HOME=%%~fsi
set BEA_JAVA_HOME=
set SUN_JAVA_HOME=E:\JDK_32_20110222
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=E:\JDK_32_20110222
@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=D:\Oracle\Middleware\user_projects\domains\test_EM_32JKD_7071
for %%i in ("%DOMAIN_HOME%") do set DOMAIN_HOME=%%~fsi
set LONG_DOMAIN_HOME=D:\Oracle\Middleware\user_projects\domains\test_EM_32JKD_7071
if "%DEBUG_PORT%"=="" (
     set DEBUG_PORT=8453
if "%SERVER_NAME%"=="" (
     set SERVER_NAME=AdminServer
set DERBY_FLAG=false
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
set XMS_SUN_64BIT=256
set XMS_SUN_32BIT=256
set XMX_SUN_64BIT=512
set XMX_SUN_32BIT=512
set XMS_JROCKIT_64BIT=256
set XMS_JROCKIT_32BIT=256
set XMX_JROCKIT_64BIT=512
set XMX_JROCKIT_32BIT=512
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
if "%JAVA_VENDOR%"=="Oracle" (
     set CUSTOM_MEM_ARGS_64BIT=-Xms%XMS_JROCKIT_64BIT%m -Xmx%XMX_JROCKIT_64BIT%m
     set CUSTOM_MEM_ARGS_32BIT=-Xms%XMS_JROCKIT_32BIT%m -Xmx%XMX_JROCKIT_32BIT%m
) else (
     set CUSTOM_MEM_ARGS_64BIT=-Xms%XMS_SUN_64BIT%m -Xmx%XMX_SUN_64BIT%m
     set CUSTOM_MEM_ARGS_32BIT=-Xms%XMS_SUN_32BIT%m -Xmx%XMX_SUN_32BIT%m
set MEM_ARGS_64BIT=%CUSTOM_MEM_ARGS_64BIT%
set MEM_ARGS_32BIT=%CUSTOM_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=512m
set MEM_MAX_PERM_SIZE_32BIT=-XX:MaxPermSize=512m
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 ORACLE_DOMAIN_CONFIG_DIR=%DOMAIN_HOME%\config\fmwconfig
for %%i in ("%ORACLE_DOMAIN_CONFIG_DIR%") do set ORACLE_DOMAIN_CONFIG_DIR=%%~fsi
set WLS_JDBC_REMOTE_ENABLED=-Dweblogic.jdbc.remoteEnabled=false
set JAVA_PROPERTIES=-Dplatform.home=%WL_HOME% -Dwls.home=%WLS_HOME% -Dweblogic.home=%WLS_HOME%
set ALT_TYPES_DIR=%COMMON_COMPONENTS_HOME%\modules\oracle.ossoiap_11.1.1,%COMMON_COMPONENTS_HOME%\modules\oracle.oamprovider_11.1.1
set PROTOCOL_HANDLERS=oracle.mds.net.protocol
set PROTOCOL_HANDLERS=%PROTOCOL_HANDLERS:;="|"%
@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 EXTRA_JAVA_PROPERTIES=%EXTRA_JAVA_PROPERTIES% -Dem.oracle.home=D:\Oracle\Middleware\oracle_common -Djava.awt.headless=true
set EXTRA_JAVA_PROPERTIES=-Dcommon.components.home=%COMMON_COMPONENTS_HOME% -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=%DOMAIN_HOME% -Djrockit.optfile=%COMMON_COMPONENTS_HOME%\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.server.config.dir=%ORACLE_DOMAIN_CONFIG_DIR%\servers\%SERVER_NAME% -Doracle.domain.config.dir=%ORACLE_DOMAIN_CONFIG_DIR% -Digf.arisidbeans.carmlloc=%ORACLE_DOMAIN_CONFIG_DIR%\carml -Digf.arisidstack.home=%ORACLE_DOMAIN_CONFIG_DIR%\arisidprovider -Doracle.security.jps.config=%DOMAIN_HOME%\config\fmwconfig\jps-config.xml -Doracle.deployed.app.dir=%DOMAIN_HOME%\servers\%SERVER_NAME%\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=%ALT_TYPES_DIR% -Djava.protocol.handler.pkgs=%PROTOCOL_HANDLERS% %WLS_JDBC_REMOTE_ENABLED% %EXTRA_JAVA_PROPERTIES%
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 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 "%POST_CLASSPATH%"=="" (
     set POST_CLASSPATH=%COMMON_COMPONENTS_HOME%\modules\oracle.jrf_11.1.1\jrf.jar;%POST_CLASSPATH%
) else (
     set POST_CLASSPATH=%COMMON_COMPONENTS_HOME%\modules\oracle.jrf_11.1.1\jrf.jar
if NOT "%PRE_CLASSPATH%"=="" (
     set PRE_CLASSPATH=%COMMON_COMPONENTS_HOME%\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;%PRE_CLASSPATH%
) else (
     set PRE_CLASSPATH=%COMMON_COMPONENTS_HOME%\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar
set POST_CLASSPATH=%COMMON_COMPONENTS_HOME%\soa\modules\commons-cli-1.1.jar;%COMMON_COMPONENTS_HOME%\soa\modules\oracle.soa.mgmt_11.1.1\soa-infra-mgmt.jar;%POST_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%
)

Similar Messages

  • WL 5.1.0 startWebLogic.cmd License Error (works via wlserver.exe)

    I have spent several hours trying to figure out how to start Web Logic 5.1.0
    from the command line or via the startWebLogic.cmd script. The sever starts
    up fine when running bin\wlserver.exe via the start menu or from the command
    line, but my startWebLogic.cmd script comes up with the following errors
    everytime:
    C:\weblogic>startWebLogic.cmd
    $$$$$$$$$$$$$$$$ License Exception $$$$$$$$$$$$$$$$
    Loaded License : C:/weblogic/license/WebLogicLicense.xml
    However Unable to start because :
    No License found for WebLogic
    As well as the fact that: No License found for Tengah
    As well as the fact that: No License found for WebLogic/JDB
    As well as the fact that: No License found for Tengah/JDBC
    As well as the fact that: No License found for jdbcKona/T3
    Here is a version of the startWebLogic.cmd file I was using:
    @echo off
    @rem http://www.weblogic.com/docs51/install/index.html
    SETLOCAL
    set JAVA_HOME=C:\weblogic\jre1_2\jre
    set
    JAVA_CLASSPATH=.\myserver\serverclasses;.\weblogic510spboot.jar;.\classes\bo
    ot;.\eval\cloudscape\lib\cloudscape.jar
    set
    WEBLOGIC_CLASSPATH=.\myserver\serverclasses;.\lib\weblogic510sp.jar;.\licens
    e;.\classes;.\lib\weblogicaux.jar;.\myserver\serverclasses
    %JAVA_HOME%\bin\java -ms64m -mx64m -classpath
    %JAVA_CLASSPATH% -Dweblogic.class.path=%WEBLOGIC_CLASSPATH% -Dweblogic.home=
    . -Djava.security.manager -Djava.security.policy==.\weblogic.policy
    weblogic.Server
    ENDLOCAL
    Here is the output from bin\wlconfig.exe:
    C:\weblogic>bin\wlconfig.exe
    WebLogic startup settings are presently:
    CLASSPATH Prefix C:\weblogic\myserver\serverclasses
    CLASSPATH
    C:\weblogic\myserver\serverclasses;C:\weblogic\jre1_2\lib\to
    ols.jar;C:\weblogic\jre1_2\jre\lib\rt.jar;C:\weblogic\jre1_2\jre\lib\i18n.ja
    r;C:
    \weblogic\license;C:\weblogic\classes\boot;C:\weblogic\classes;C:\weblogic\l
    ib\w
    eblogicaux.jar;C:\weblogic\eval\cloudscape\lib\cloudscape.jar
    JAVA_HOME C:\weblogic\jre1_2
    WEBLOGIC_LICENSEDIR C:\weblogic\license
    WEBLOGIC_HOME C:\weblogic
    system properties:
    java.security.manager
    java.security.policy==C:\weblogic\weblogic.policy
    weblogic.system.home=C:\weblogic
    java.compiler=symcjit
    weblogic.class.path=C:\weblogic\license;C:\weblogic\classes;
    C:\weblogic\myserver\serverclasses;C:\weblogic\lib\weblogicaux.jar
    INITIAL_HEAP 64 MB
    MAX_HEAP 64 MB
    SERVERCLASSPATH
    C:\weblogic\myserver\serverclasses;C:\weblogic\jre1_2\jre\li
    b\rt.jar;C:\weblogic\jre1_2\jre\lib\i18n.jar;C:\weblogic\classes\boot;C:\web
    logi
    c\eval\cloudscape\lib\cloudscape.jar
    Type "wlconfig -help" for program usage.
    I also tried a startWebLogic.cmd file version with absolute paths, but I got
    the same license error. I really can't figure out what I'm doing wrong
    here. What is different between the wlserver.exe executable and the
    startWebLogic.cmd files I'm running?
    @rem http://www.weblogic.com/docs51/install/index.html
    set JAVA_HOME=C:\weblogic\jre1_2\jre
    set PATH=%JAVA_HOME%\bin;%PATH%
    set
    JAVA_CLASSPATH=C:\weblogic\myserver\serverclasses;C:\weblogic\jre1_2\lib\too
    ls.jar;C:\weblogic\jre1_2\jre\lib\rt.jar;C:\weblogic\jre1_2\jre\lib\i18n.jar
    ;C:\weblogic\license;C:\weblogic\classes\boot;C:\weblogic\lib\weblogicaux.ja
    r;C:\weblogic\eval\cloudscape\lib\cloudscape.jar
    set
    WEBLOGIC_CLASSPATH=C:\weblogic\license;C:\weblogic\classes;C:\weblogic\myser
    ver\serverclasses;C:\weblogic\lib\weblogicaux.jar
    java -ms64m -mx64m -classpath
    %JAVA_CLASSPATH% -Dweblogic.class.path=%WEBLOGIC_CLASSPATH% -Dweblogic.home=
    . -Djava.security.manager -Djava.security.policy==C:\weblogic\weblogic.polic
    y -Dweblogic.system.home=C:\weblogic -Djava.compiler=symcjit weblogic.Server

    Thanks for your help Raj. I found out it was a PeopleSoft problem. They
    make us run one of their Java class files to startup the server from the
    command line instead of weblogic.Server. Once I changed it from
    weblogic.Server to PSweblogic, it started correctly.
    Cameron
    "Raj Alagumalai" <[email protected]> wrote in message
    news:[email protected]..
    Cameron,
    Are you running setEnv.cmd before running startweblogic.cmd ?
    The SetEnv.cmd script sets the WL_HOME variable. Make sure you have this
    variable set.
    Alternatively, try adding the absolute path for the license folder (inyour
    case C:\weblogic\license ) in the weblogic.class.path entry in the
    startweblogic.cmd file.
    The server will look for the WebLogicLicense.xml in this folder at startup
    time.
    The reason why the server starts from the start menu is the fact that this
    entry is part of the weblogic.class.path
    From your posting
    weblogic.class.path=C:\weblogic\license;C:\weblogic\classes;C:\weblogic
    \myserver\serverclasses;C:\weblogic\lib\weblogicaux.jar
    Thanks
    Raj Alagumalai

  • Domain- server (JVM) mapping and startWebLogic.cmd

    I just started using WebLogic 8.1.x on Windows platform and my web application requires a classpath entry to be added to the startWebLogic.cmd. I located this file under bea_home/user_projects/domains/mydomain directory. I noticed that the JVM is started by this file.
    Per documentation, a domain can host one or more servers and each server is a JVM. Although, I created my own servers under the domain, I don't see startWebLogic.cmd in the server directory to control the start/stop of the JVM associated with the server. I don't understand how the startWebLogic.cmd in the domain directory can control one or more servers within a domain. Besides, each server may require its own classpath customization needs and I like to keep the customization at the server level if possible.
    I also like to understand the best practice along these lines. Is it typical to create multiple servers under a domain with each server hosting logically realated applications?
    Any insight would be greatly appreciated.

    Hi,
    What you probably read was that a domain can have one admin and multiple managed servers.
    In the mydomain directory you will find a startWeblogic.cmd - which will start the admin server and you will find a startManagedWeblogic-X.cmd which will start your managed instance called X.
    You can specify the classpath for the managed instance in startManagedWeblogic-X.cmd.
    Hope this helped.
    Regards
    Shikhar

  • Cannot find the file 'startWebLogic.cmd"...

    I installed to 7.0+Cajun to d:\bea3 as my beahome. I have two other BEA homes d:\bea
    and d:\bea2. I made my user-domains folder name to be "domains". Otherwise its
    a standard install. I'm on NT.
    When I try and start the WLS server from inside Workshop, I get the following
    error message:
    "Cannot find the file 'startWebLogic.cmd' (or one of its components). Make sure
    the path and filename are correct and that all required libraries are available."
    I dismiss the dialog and Workshop will continue showing a progress bar and I have
    to cancel it.
    Looks like a standard path problem. Is anyone else getting this out of the box?
    Should Workshop.cmd be setting up the path to the sample workshop WLS? An easy
    workaround is to start the server manually outside of Workshop.
    PJL

    Actually, Peter and all,
    No need to send me the files listed below as I woke up after re-reading your
    post. There is an issue we are tracking down with regards to what Mike
    Wooten said on an earlier post and those people running on Windows NT4.x
    only, seems the start command changed somewhat for the better in Win2K.
    If you ARE running on Windows 2000 and you are still seeing the problems
    outlined below, please reply back with the files attached and we will get
    someone on looking at your issue.
    Since this beta is targeted at Win2K and Solaris only, the solution will
    have to be starting it from the start menu which you have mentioned
    previously. We are tracking this as an issue from beta and will probably
    support NT4 for the GA.
    Thanks for letting us know !
    Art
    "Art Becker" <[email protected]> wrote in message
    news:[email protected]...
    Peter,
    Thank you for your question. In order for me to better narrow down the
    problem, would you please either post or send me the Jellybeans.properties
    file from d:\bea2\weblogic700b\samples\workshop and your .Jellybeans (note
    the period at the beginning) from your %systemdrive%\documents and
    settings\%username% folder ?
    This information should help us determine what the issue you are running
    into is. Other people are seeing this issue out of the box though I have
    had trouble reproducing the problem and need some more input to determine
    where it lies.
    The installer should be setting the properties for the "start path"
    correctly during install.
    Thanks,
    Art
    "Peter Laird" <[email protected]> wrote in message
    news:[email protected]...
    I installed to 7.0+Cajun to d:\bea3 as my beahome. I have two other BEAhomes d:\bea
    and d:\bea2. I made my user-domains folder name to be "domains".
    Otherwise
    its
    a standard install. I'm on NT.
    When I try and start the WLS server from inside Workshop, I get thefollowing
    error message:
    "Cannot find the file 'startWebLogic.cmd' (or one of its components).
    Make
    sure
    the path and filename are correct and that all required libraries areavailable."
    I dismiss the dialog and Workshop will continue showing a progress bar
    and
    I have
    to cancel it.
    Looks like a standard path problem. Is anyone else getting this out of
    the
    box?
    Should Workshop.cmd be setting up the path to the sample workshop WLS?
    An
    easy
    workaround is to start the server manually outside of Workshop.
    PJL

  • Solution for starting weblogic server 6.1 SP4 after changing of JVM to JDK 1.4 in startweblogic.cmd file

    Hi,
    I am using WebLogic 6.1 SP4 on a windows 2000 system.
    I have changed the JAVA_HOME variable in startweblogic.cmd file to point to j2sdk1.4.0_01
    instead of the default. I have set the weblogic startup password also in the WLS_PW
    variable in startweblogic.cmd file. After this change when i start the server,
    i get the following stack trace error and the server does not start up at all.
    Stack trace:
    java.lang.SecurityException: Unable to locate a login configuration
    at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:97)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at java.lang.Class.newInstance0(Class.java:296)
    at java.lang.Class.newInstance(Class.java:249)
    at javax.security.auth.login.Configuration$3.run(Configuration.java:221)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.Configuration.getConfiguration(Configuratio
    n.java:215)
    at javax.security.auth.login.LoginContext$1.run(LoginContext.java:170)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.init(LoginContext.java:167)
    at javax.security.auth.login.LoginContext.<init>(LoginContext.java:393)
    at weblogic.security.internal.ServerAuthenticate.main(ServerAuthenticate
    .java:78)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:210)
    at weblogic.Server.main(Server.java:35)
    Caused by: java.io.IOException: Unable to locate a login configuration
    at com.sun.security.auth.login.ConfigFile.init(ConfigFile.java:206)
    at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:95)
    For the above problem there is a workaround suggested at this link
    http://www.genuitec.com/products/JDK14_WLS61.pdf
    The same does not happen in WebLogic 7.0 even after i change the default JAVA_HOME
    variable . It starts without any problem.
    So is there any solution given by WebLogic . If so please do let me know.
    Thanks in advance
    Raj Kumar

    Hi,
    I am using WebLogic 6.1 SP4 on a windows 2000 system.
    I have changed the JAVA_HOME variable in startweblogic.cmd file to point to j2sdk1.4.0_01
    instead of the default. I have set the weblogic startup password also in the WLS_PW
    variable in startweblogic.cmd file. After this change when i start the server,
    i get the following stack trace error and the server does not start up at all.
    Stack trace:
    java.lang.SecurityException: Unable to locate a login configuration
    at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:97)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at java.lang.Class.newInstance0(Class.java:296)
    at java.lang.Class.newInstance(Class.java:249)
    at javax.security.auth.login.Configuration$3.run(Configuration.java:221)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.Configuration.getConfiguration(Configuratio
    n.java:215)
    at javax.security.auth.login.LoginContext$1.run(LoginContext.java:170)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.init(LoginContext.java:167)
    at javax.security.auth.login.LoginContext.<init>(LoginContext.java:393)
    at weblogic.security.internal.ServerAuthenticate.main(ServerAuthenticate
    .java:78)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:210)
    at weblogic.Server.main(Server.java:35)
    Caused by: java.io.IOException: Unable to locate a login configuration
    at com.sun.security.auth.login.ConfigFile.init(ConfigFile.java:206)
    at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:95)
    For the above problem there is a workaround suggested at this link
    http://www.genuitec.com/products/JDK14_WLS61.pdf
    The same does not happen in WebLogic 7.0 even after i change the default JAVA_HOME
    variable . It starts without any problem.
    So is there any solution given by WebLogic . If so please do let me know.
    Thanks in advance
    Raj Kumar

  • StartWebLogic.cmd in debug mode

    Can someone help tell me what modifications I need to make in the startWebLogic.cmd file to have the server (WebLogic version is 8.1 SP3) start up in debug mode?
    Thanks.
    gtata

    After several searches on the internet, I did figure out how to do it. This chapter is closed.

  • Java parameters in startWeblogic.cmd

    Hi,
    did anyone notice that in startWeblogic.cmd the following parameters
    appear -ms and -mx and in Jdk 1.3 and later these parameters should be:
    -Xms and -Xmx.
    Did anyone notice this too ?
    - Evgenya

    Hi,
    did anyone notice that in startWeblogic.cmd the following parameters
    appear -ms and -mx and in Jdk 1.3 and later these parameters should be:
    -Xms and -Xmx.
    Did anyone notice this too ?
    - Evgenya

  • Read  startweblogic.cmd in another file

    I have to refllect status of weblogic server in separate html page .lf the server is running the page should show status as running and if it is stopped it should reflect the status.Also I should be able to control the server startup from html page(like start button should start the server) .Please let me know how i can achieve this
    Pandu

    After several searches on the internet, I did figure out how to do it. This chapter is closed.

  • WLS running as Service - Classpath setting

    How can I set weblogic's classpath, if Weblogic 6.1 is running as a service on Windows 2000? I know if it is run from startWebLogic.cmd, we can change the classpath in startWebLogic.cmd.
    Thanks,
    Siva.

    Check the installntservice.cmd script that comes with the server
    You need to use the cmdline option for the service
    set CLASSPATH=.;C:\beas\wlserver6.1sp1\lib\weblogic_sp.jar;C:\beas\wlserver6.1sp1\lib\weblogic.jar
    rem *** Set Command Line for service to execute
    rem *** %JAVA_HOME%\java will automatically be prepended.
    set CMDLINE="-ms64m -mx64m -classpath \"%CLASSPATH%\" -Dweblogic.Domain=mydomain -Dweblogic.Name=myserver -Djava.security.policy==\"C:\beas\wlserver6.1sp1/lib/weblogic.policy\"
    -Dbea.home=\"C:\beas\" weblogic.Server"
    rem *** Install the service
    "C:\beas\wlserver6.1sp1\bin\beasvc" -install -svcname:myserver -javahome:"C:\beas\jdk131" -execdir:"C:\beas\wlserver6.1sp1" -extrapath:"C:\beas\wlserver6.1sp1\bin" -cmdline:%CMDLINE%
    Details are at
    http://e-docs.bea.com/wls/docs61/adminguide/startstop.html#1026476
    Yeshwant
    Siva K Koralla wrote:
    How can I set weblogic's classpath, if Weblogic 6.1 is running as a service on Windows 2000? I know if it is run from startWebLogic.cmd, we can change the classpath in startWebLogic.cmd.
    Thanks,
    Siva.

  • Got exception with p13n_app.jar and p13n_system.jar into classpath for 9.2

    Hi, Portal guru:
    I installed wls9.2&portal9.2, and put p13n_app.jar and p13n_system.jar into classpath from startWeblogic.cmd.
    then looks portalApp can not be loaded due to the following exception:
    java.lang.Error: Clonable is not clonable: java.lang.CloneNotSupportedException: com.bea.p13n.expression.operator.c
    omparative.Equals: 4138928
    com.bea.content.expression.PropertyRef: 4138900
    java.lang.String
    cm_nodeName
    java.lang.String
    CmxControlUniqueKeysFolder
    : com.bea.content.expression.PropertyRef
    at com.bea.content.expression.Search.clone(Search.java:568)
    at com.bea.content.manager.internal.SearchOpsImpl.createSearchForRepo(SearchOpsImpl.java:376)
    at com.bea.content.manager.internal.SearchOpsImpl.searchRepository(SearchOpsImpl.java:203)
    at com.bea.content.manager.internal.SearchOpsImpl.search(SearchOpsImpl.java:159)
    any know what is the problem?
    Thanks in advance.

    I don't think it's supported to have app-scoped class in the system
    classpath. I'm surprised your 814 app worked that way.
    It might be that changes in 9.2 have caused some of the classes the
    system classloader is hitting to now try to load other classes that are
    only available in an application classloader, which the system
    classloader cannot access.
    http://e-docs.bea.com/wls/docs90/programming/classloading.html has
    information about the classloader hierarchy in WLS/WLP.
    One way to have a system-classloader class access an
    appliation-classloader is via the
    Thread.currentThread().getContextClassLoader(), and then either use
    reflection or have the class implement an interface available in the
    system classloader. This allows code at the system classpath level to
    access implementation classes loaded up as part of an application,
    rather than relying upon the built-in classloading which can't see
    classes in children classloaders. However, this would entail having a
    system classpath jar and an application jar, which is why WLP has
    p13n_system.jar and p13n_app.jar.
    Greg

  • Log4j classes not found in custom RoleMapper (sometimes)

    WLS8.1 sp2, using wlserver ant task to start the server. Not sure if this is
    the best group, but...
    I have a custom RolerMapper provider that I can successfully add to a
    running server through the admin console, but when I try to start the server
    via ant (essentially a coldstart with a saved config.xml file,
    boot.properties and ldift files), the server throws a NoClassDefFoundError:
    [wlserver] <Mar 19, 2004 2:57:08 PM EST> <Info> <Security> <BEA-090075>
    <The RoleMapper provider has had its LDIF information loaded from:
    C:\bea\user_projects\domains\combinenet\.\DefaultRoleMapperInit.ldift>
    [wlserver]
    [wlserver] The WebLogic Server did not start up properly.
    [wlserver] java.lang.NoClassDefFoundError: org/apache/log4j/Logger
    [wlserver] at com.combinenet.util.Logger.<init>(Logger.java:113)
    [wlserver] at com.combinenet.util.Logger.getLogger(Logger.java:125)
    [wlserver] at com.combinenet.util.Logger.getLogger(Logger.java:136)
    [wlserver] at
    com.combinenet.security.CNRoleMapperProvider.<clinit>(CNRoleMapperProvider.j
    ava:65)
    I tried adding "Class-Path: log4j.jar" to the manifest of the provider jar
    file, and I even stuffed the log4j.jar in there too, but neither worked.
    log4j.jar is in the server's common/lib directory, and other parts of our
    app use log4j without a problem.
    I worked around this by unjarring log4j.jar and updating my provider jar
    with all of the classes, but obviously isn't a solution.
    Any idea why log4j.jar isn't being loaded by the server's bootstrap
    classloader at startup (from common/lib)?
    How can I add log4j.jar to the classpath in the wlserver task? (it doesn't
    support the classpath attribute).
    I've had more problems getting log4j to work properly with WLS...
    Thanks for any help,
    Miles

    I ran in the same problem... I tried to autogenerate the Manifest file from the
    weblogicMbeanMaker with no success. So instead of hacking the Manifest file (I
    could not do it from ANT)., I conceded the game to weblogic and put the log4j.jar
    in the Classpath in startWebLogic.cmd/startWebLogic.sh.
    It worked.
    How do you change the manifest? After generating the .jar or did u find a work
    around for the webLogicMbeanMaker class?
    "Miles Krivoshia" <mkrivoshia{{remove}}@combinenet.{{rem}}com> wrote:
    FYI, if anyone is interested, putting the log4j.jar in the mbeantypes
    directory and using the Class-Path: log4j.jar entry in the provider's
    manifest file got around this problem. It seems that jars in the system
    classpath is not available to security provider jars for some reason.
    I
    don't recall seeing that documented anywhere.
    "Miles Krivoshia" <mkrivoshia{{remove}}@combinenet.{{rem}}com> wrote
    in
    message news:[email protected]...
    Thanks for the reply. I have tried placing the jar in the system classpath
    (that's how our ejbs access log4j, just fine), but that didn't workeither.
    Seems to be something special about provider jars. I'll follow up onthe
    mgmt newsgroup.
    -Miles
    "Craig" <[email protected]> wrote in message
    news:[email protected]...
    I believe you will need to place the jar in the system classpath.
    You
    can
    ask about
    provider jars and using the class path from the manifest file in
    the
    weblogic.developer.interest.management
    newsgroup.
    "Miles Krivoshia" <mkrivoshia{{remove}}@combinenet.{{rem}}com> wrote:
    WLS8.1 sp2, using wlserver ant task to start the server. Not sure
    if
    this is
    the best group, but...
    I have a custom RolerMapper provider that I can successfully addto a
    running server through the admin console, but when I try to startthe
    server
    via ant (essentially a coldstart with a saved config.xml file,
    boot.properties and ldift files), the server throws aNoClassDefFoundError:
    [wlserver] <Mar 19, 2004 2:57:08 PM EST> <Info> <Security>
    <BEA-090075>
    <The RoleMapper provider has had its LDIF information loaded from:
    C:\bea\user_projects\domains\combinenet\.\DefaultRoleMapperInit.ldift>
    [wlserver]***************************************************************************
    [wlserver] The WebLogic Server did not start up properly.
    [wlserver] java.lang.NoClassDefFoundError: org/apache/log4j/Logger
    [wlserver] at com.combinenet.util.Logger.<init>(Logger.java:113)
    [wlserver] at
    com.combinenet.util.Logger.getLogger(Logger.java:125)
    [wlserver] atcom.combinenet.util.Logger.getLogger(Logger.java:136)
    [wlserver] atcom.combinenet.security.CNRoleMapperProvider.<clinit>(CNRoleMapperProvider.
    j
    ava:65)
    I tried adding "Class-Path: log4j.jar" to the manifest of the provider
    jar
    file, and I even stuffed the log4j.jar in there too, but neither
    worked.
    log4j.jar is in the server's common/lib directory, and other partsof
    our
    app use log4j without a problem.
    I worked around this by unjarring log4j.jar and updating my provider
    jar
    with all of the classes, but obviously isn't a solution.
    Any idea why log4j.jar isn't being loaded by the server's bootstrap
    classloader at startup (from common/lib)?
    How can I add log4j.jar to the classpath in the wlserver task? (itdoesn't
    support the classpath attribute).
    I've had more problems getting log4j to work properly with WLS...
    Thanks for any help,
    Miles

  • XALAN and XERCES on WL6

    Hi!
    I just can't get WLS6.0 to use new versions of XALAN and XERCES. I keep
    getting errors that are obviously because Weblogic is loading an older
    version of XALAN before my app ever gets loaded, and as a result I'm having
    trouble with <xsl:param> and <xsl:variable> tags not being able to recognise
    other params and variables in the top level scope. This is crucial to my
    application but after a day of messing around with everything from
    classpaths to startweblogic.cmd, I'm pretty much stuck.
    Does ANYONE know how to fix this?
    TIA,
    Navneet

    Hmm.. what's this I'm hearing about an XML registry for weblogic?
    "Jeffrey Winter" <[email protected]> wrote in message
    news:3ae702c5$[email protected]..
    >
    If you put the latest xerces.jar and xalan.jar file before anything elsein the
    CLASSPATH in your startup command file it will work. I'm doing in rightnow with
    Xerces 1.3.1 and Xalan 2.0.1.
    If you're trying to use JAXP however, you'll have problems because WLalways returns
    their own internal version of the DocumentBuilderFactory even if you putthe JAXP
    1.1 jar file in the class path and specify theorg.apache.xerces.jaxp.DocumentBuilderFactory
    in your registry.
    We got around this by defining a stub subclass of DocumentBuilderFactoryand instantiating
    is directly instead of through DocumentBuilderFactory.newInstance(). It'sa pain,
    but after that you can get around using the older versions that they'vebaked
    in.

  • Classnotfound exception in Studio

    I have this entity bean that I have deployed in weblogic. I am now trying to use
    the studio to create a business operation from one of the Bean methods. When I
    click on Configuration->Business Operations, I get a Classnotfound exception for
    the beans remote class.
    To get around this, I placed the bean jar file in the classpath in startweblogic.cmd
    for the domain. After this the problem went away and I was able to create the operation.
    Question is, is this the right way to have WLI find the class? Since I have deployed
    this in weblogic, shouldn't it be able to find the class files? What is the recommended
    way or am I doing something wrong.
    Thanks,
    --Krish.

    Use
    Class.forName("com.mysql.jdbc.Driver");Is the MySQL JDBC JAR file listed in project path.?

  • Finding resource files deployed inside RAR?

    Hi all,
    NB: First-time poster, please forgive any transgressions.
    I am deploying a RAR (not within an EAR) to WL 8.1 SP3, which has the following form:
    META-INF/
        ra.xml
        weblogic-ra.xml
    myconnector.jarClasses in myconnector.jar need to find a resource file, myresource.xml, on the classpath. I've tried placing myresource.xml in the root of the rar file, and in a jar file in the root of the rar (called it myresources.jar). In both cases, the resource is not found; the only way that it's ever found is by placing it in a directory that is on the server's classpath in startWebLogic.cmd.
    How can I package the resource file in my rar such that Class.getResourceAsStream and/or ClassLoader.getResourceAsStream can find it?
    TIA,
    Matthew

    A deployed application has no relation at all to a 'project'. What you want is the application to find a file in a specific directory.
    In your case you will probably only want to read from the file, so your best bet is to put the file on the classpath (for example, put it in the 'classes' subdirectory of your war) and load it using getClass().getClassLoader().getResourceAsStream(). In other words, make the properties file part of your project resources.

  • "NoClassDefFoundError" Exception while referring to EJB's

    Hi,
    We are planning to migrate from WLS 5.1 to WLS 6.1. While
    evaluating it we are facing the following problem.
    Whenever, any EJB classes are referred the exception,
    "java.lang.NoClassDefFoundError" occurs.
    The entry in the config.xml is as follows:
    <Application Deployed="true" Name="MstVisitTypeSes"
    Path=".\config\cclsdomain\applications" StagedTargets="myserver">
    <EJBComponent Name="MstVisitTypeSes" Targets="myserver" URI="MstVisitTypeSes.jar"/>
    </Application>
    However, if we place the jar file in the classpath(in startweblogic.cmd), while
    starting the server , WLS is able to find the EJB classes.
    Appreciate if anyone could help in this regard.
    Regards,
    Tejokiran.Y

    Hi ,
    I think I now understand why it happens so. I am supposed to copy the Home and
    Remote interface classes into WEB-INF/classes subdirectory.
    Please refer to this URL for more more info:
    http://edocs.bea.com/wls/docs70/programming/packaging.html

Maybe you are looking for

  • How-to get rid of ADF messages (10.1.3 Production)

    In JDev 10.1.3 Production, how does one get rid of these ADF WARNINGs and NOTIFICATIONs? Regards, Al Malin P.S. Thanks for the release :-) [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.] **** Unable to obtain password from

  • Why can't I access iCloud via IE or Firefox, but can via Safari?

    I've posed the question, but don't know what to do next or whether I'll be able to remember how I got here to get back.  Thanks Apple for making Help so frustrating - running around in circles and getting no where. btw, have been all over Apple with

  • My apple TV started to re-sync all its info

    My Apple seemed to lose all it's content and started a completely re-sync. Does anyone have any ideas why this would happen?

  • My mac mini won't read discs.

    My macmini has stopped reading any discs. They go in but just make a whirring noise. It tales a while to eject the disc. I have tried cleaning it with a DVD cleaning disc but it would not read either!!!!!

  • UNCAUGHT_EXCEPTION message when creating a Shopping Cart

    Hi All, I would appreciate it if someone could provide an insight to the error message below. It occurs when the user attemps to enter a text decription shopping cart. I have checked the org structure set-up and attributes but am at a loss to to find