Permission error when WebLogic Server starts up

Dear WebLogic gurus
When I try to startup WebLogic server with 80 listening port in Solaris 2.6,
it did not startup due to permission problem.
The error log said that
Sat Dec 11 06:11:02 GMT 1999:<E> <ListenThread> **** Unable to create server
socket. Perhaps another process is using port 80.
Sat Dec 11 06:11:02 GMT 1999:<E> <ListenThread> java.net.BindException:
Permission denied
To solve this problem, I just tried to startup WebLogic with root user
because I was sure that another process did not run with port 80.
It works now but with only super user. This kind of problems did not happen
with 7001 port.
What's the reason of this ?
Thanks in advance

Hi there.. Looking at your error, it appears that you there is a web server
already running and bound to port 80. Check with your system admins to see if
you have a web server installed on port 80. Another easy way to figure out
would be a simple telnet to your server name at port 80. Try this:
$ telnet localhost (or servername) 80
GET / HTTP/1.0
If that works any returns any data, you've got a webserver running at port 80.
Work with your system admin's to turn off that running webserver and picking
another port for WebLogic.
Under UNIX, anything under port 1024 is considered a privileged port and root
would have to start the server to be able to bind to port 80. You'll also want
to enable the setUID program in weblogic.properties. Look for the following
lines in your weblogic.properties and see if they apply.
# UNIX only: If running on port 80 on UNIX, enable the setUID program
#weblogic.system.enableSetUID=false
# UNIX only: Unprivileged user to setUID to after starting up
# WebLogic Server on port 80
#weblogic.system.nonPrivUser=nobody
Hope this helps.
--Vinny
Changyong wrote:
Dear WebLogic gurus
When I try to startup WebLogic server with 80 listening port in Solaris 2.6,
it did not startup due to permission problem.
The error log said that
Sat Dec 11 06:11:02 GMT 1999:<E> <ListenThread> **** Unable to create server
socket. Perhaps another process is using port 80.
Sat Dec 11 06:11:02 GMT 1999:<E> <ListenThread> java.net.BindException:
Permission denied
To solve this problem, I just tried to startup WebLogic with root user
because I was sure that another process did not run with port 80.
It works now but with only super user. This kind of problems did not happen
with 7001 port.
What's the reason of this ?
Thanks in advance

Similar Messages

  • Bind custom object in weblogic server start

    I want to bind my custom object to jndi when weblogic server start. how can i do?

    Bonjour Yiwen,
    That could easily done by registering a startup class in weblogic server that will do the binding of the object in the JNDI tree (it can also create all the subcontexts you need).
    Below is some code that works fine on WLS 5.1:
    a.. a custom object
    package StartupJNDI;
    public class CustomObject extends Object
    protected String name;
    public CustomObject ( String aszName )
    name = aszName;
    public String getName()
    return name;
    public void setName(String newName)
    name = newName;
    a.. a startup class
    package StartupJNDI;
    import javax.naming.*;
    public class Registration
    public Registration()
    InitialContext initCtx = null;
    try
    initCtx = new InitialContext ();
    initCtx.bind ( "Startup Registered Object" , new CustomObject ( "This is a void object" ) );
    catch ( Exception ex )
    ex.printStackTrace ( System.err );
    public static void main(String[] args)
    new Registration();
    a.. a startup class in weblogic.properties:
    weblogic.system.startupClass.JNDIStartupRegistration=StartupJNDI.Registration
    Please, be sure that the path to these classes is also registered in the WEBLOGIC_CLASSPATH system property (e.g. : in your startweblogic.cmd file on Windows NT).
    You can check that the object is bound in the JNDI tree through the console.
    Hope this helps,
    Cordialement,
    Etienne
    Yiwen Tian <[email protected]> a écrit dans le message : [email protected]..
    >
    I want to bind my custom object to jndi when weblogic server start. how can i do?
    [att1.html]

  • Weblogic server start error: java.lang.OutOfMemoryError

    Hi:
              when i start weblogic server, i met following error !
              java.lang.OutOfMemoryError
              <<no stack trace available>>
              why?
              thanks!
              starting output as follow :
              C:\bea7\user_projects\zhudomain>startweblogic
              C:\bea7\user_projects\zhudomain>echo off
              CLASSPATH=C:\bea7\jdk131_03\lib\tools.jar;C:\bea7\weblogic700\integration\li
              b\wl
              pi-worklist.jar;C:\bea7\weblogic700\samples\server\eval\pointbase\lib\pbserv
              er42
              ECF172.jar;C:\bea7\weblogic700\server\lib\weblogic_sp.jar;C:\bea7\weblogic70
              0\se
              rver\lib\weblogic.jar;
              PATH=.;C:\bea7\weblogic700\server\bin;C:\bea7\jdk131_03\bin;C:\PROGRA~1\RATI
              ONAL
              \RATION~1\NUTCROOT\bin;C:\PROGRA~1\RATIONAL\RATION~1\NUTCROOT\bin\x11;C:\PRO
              GRA~
              1\RATIONAL\RATION~1\NUTCROOT\mksnt;c:\Oracle\Ora81\bin;C:\WINNT\system32;C:\
              WINN
              T;C:\WINNT\System32\Wbem;C:\PROGRA~1\ULTRAE~1;C:\CTEX\MiKTeX\TeXMF\miktex\bi
              n;C:
              \CTEX\MiKTeX\LocalT~1\cct\bin;C:\Program Files\Rational\common;C:\Program
              Files\
              Rational\ClearQuest;C:\Program Files\Rational\Rose\TopLink\;C:\Program
              Files\Rat
              ional\Rational Test;C:\bea7\jdk131_03\bin
              * To start WebLogic Server, use a username and *
              * password assigned to an admin-level user. For *
              * server administration, use the WebLogic Server *
              * console at http://[hostname]:[port]/console *
              C:\bea7\user_projects\zhudomain>"C:\bea7\jdk131_03\bin\java" -hotspot -Xms32
              m -X
              mx200m -Dweblogic.security.SSL.trustedCAKeyStore=C:\bea7\weblogic700\server\
              lib\
              cacerts -Dweblogic.Name=myserver -Dbea.home="C:\bea7" -Dweblogic.management.
              user
              name= -Dweblogic.management.password= -Dweblogic.ProductionModeEnabled= -Dja
              va.s
              ecurity.policy="C:\bea7\weblogic700\server\lib\weblogic.policy"
              weblogic.Server
              <2002-11-13 ÏÂÎç04ʱ21·Ö01Ãë> <Info> <Security> <090065> <Getting boot
              identity
              from user.>
              Enter username to boot WebLogic server:system
              Enter password to boot WebLogic server:
              Starting WebLogic Server...
              <2002-11-13 ÏÂÎç04ʱ21·Ö08Ãë> <Notice> <Management> <140005> <Loading
              configurat
              ion C:\bea7\user_projects\zhudomain\.\config.xml>
              java.lang.OutOfMemoryError
              <<no stack trace available>>
              

    Hi JLK,
    Now as you can see that you are getting "java.lang.OutOfMemoryError: PermGen space" during the activation on an application it means that you are application needs more space in the non-heap part of the JVM which is PermGen to create the Classes, Class Structures, Methods and Reflection Objects of this applications hence you are getting this issue.
    Now how to solve this issue you try the following check list which would help you resolve this issue and overcome same type of issue in future
    1). Make Sure that the PermGen Area is not set to a very less value.
    2). Usually if an Application has Many JSP Pages in that case every JSP will be converted to a *.class file before JSP Request Process. So a large number of JSPs causes generation of a Large number of *.class files all these classes gets loaded in the PermGen area.
    3). While allocating the -XX:MaxPermSize make sure that you follow a rough Formula… which works in most of the Application Servers.
    MaxPermSize = (Xmx/3) —- Very Special Cases (One Third of maximum Heap Size)
    MaxPermSize = (Xmx/4) —- Recommended (One Fourth Of maximum Heap Size
    To get more information on this I would suggest you to have look at the below link which would surely help you in this case
    Topic: OutOfMemory Causes and First Aid Steps?
    http://middlewaremagic.com/weblogic/?p=4464
    Regards,
    Ravish Mody

  • Error when the engine starts

    Hi all,
    I'm getting this error when my engine starts. What can be happening? How can I avoid it?
    fuego.transaction.DatabaseException: Se ha producido un error al acceder a la base de datos.
    Detalle:Instrucción SQL: 'DELETE FROM PWKTODO WHERE WKTDKEY = ? WKTDKEY:'caducator.'
    at fuego.server.persistence.jdbc.JdbcToDoItemPersMgr.delete(JdbcToDoItemPersMgr.java:806)
    at fuego.server.persistence.Persistence.deleteToDoItem(Persistence.java:758)
    at fuego.server.execution.AbstractToDoQueue.persist(AbstractToDoQueue.java:46)
    at fuego.server.execution.EngineExecutionContext.persistToDoItems(EngineExecutionContext.java:2054)
    at fuego.server.execution.EngineExecutionContext.persist(EngineExecutionContext.java:1207)
    at fuego.transaction.TransactionAction.beforeCompletion(TransactionAction.java:132)
    at fuego.connector.ConnectorTransaction.beforeCompletion(ConnectorTransaction.java:692)
    at fuego.connector.ConnectorTransaction.commit(ConnectorTransaction.java:375)
    at fuego.transaction.TransactionAction.commit(TransactionAction.java:302)
    at fuego.transaction.TransactionAction.startBaseTransaction(TransactionAction.java:481)
    at fuego.transaction.TransactionAction.startTransaction(TransactionAction.java:551)
    at fuego.transaction.TransactionAction.start(TransactionAction.java:212)
    at fuego.server.execution.DefaultEngineExecution.executeImmediate(DefaultEngineExecution.java:123)
    at fuego.server.execution.EngineExecution.executeImmediate(EngineExecution.java:66)
    at fuego.ejbengine.ItemExecutionBean.processMessage(ItemExecutionBean.java:207)
    at fuego.ejbengine.ItemExecutionBean.onMessage(ItemExecutionBean.java:118)
    at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:466)
    at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:371)
    at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:327)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4547)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:4233)
    at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3709)
    at weblogic.jms.client.JMSSession.access$000(JMSSession.java:114)
    at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5058)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.sql.SQLException: Unexpected exception while enlisting XAConnection java.sql.SQLException: Transaction rolled back: Transaction timed out after 29 seconds
    BEA1-29DC678B1DDE2A93EEAE
    at weblogic.jdbc.jta.DataSource.enlist(DataSource.java:1418)
    at weblogic.jdbc.jta.DataSource.refreshXAConnAndEnlist(DataSource.java:1330)
    at weblogic.jdbc.wrapper.JTAConnection.getXAConn(JTAConnection.java:189)
    at weblogic.jdbc.wrapper.JTAConnection.checkConnection(JTAConnection.java:64)
    at weblogic.jdbc.wrapper.Connection.preInvocationHandler(Connection.java:92)
    at weblogic.jdbc.wrapper.Connection.prepareStatement(Connection.java:482)
    at fuego.jdbc.FaultTolerantConnection.prepareStatement(FaultTolerantConnection.java:541)
    at fuego.server.persistence.jdbc.JdbcToDoItemPersMgr.delete(JdbcToDoItemPersMgr.java:763)
    at fuego.server.persistence.Persistence.deleteToDoItem(Persistence.java:758)
    at fuego.server.execution.AbstractToDoQueue.persist(AbstractToDoQueue.java:46)
    at fuego.server.execution.EngineExecutionContext.persistToDoItems(EngineExecutionContext.java:2054)
    at fuego.server.execution.EngineExecutionContext.persist(EngineExecutionContext.java:1207)
    at fuego.transaction.TransactionAction.beforeCompletion(TransactionAction.java:132)
    at fuego.connector.ConnectorTransaction.beforeCompletion(ConnectorTransaction.java:692)
    at fuego.connector.ConnectorTransaction.commit(ConnectorTransaction.java:375)
    at fuego.transaction.TransactionAction.commit(TransactionAction.java:302)
    at fuego.transaction.TransactionAction.startBaseTransaction(TransactionAction.java:481)
    at fuego.transaction.TransactionAction.startTransaction(TransactionAction.java:551)
    at fuego.transaction.TransactionAction.start(TransactionAction.java:212)
    at fuego.server.execution.DefaultEngineExecution.executeImmediate(DefaultEngineExecution.java:123)
    at fuego.server.execution.EngineExecution.executeImmediate(EngineExecution.java:66)
    at fuego.ejbengine.ItemExecutionBean.processMessage(ItemExecutionBean.java:207)
    at fuego.ejbengine.ItemExecutionBean.onMessage(ItemExecutionBean.java:118)
    at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:466)
    at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:371)
    at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:327)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4547)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:4233)
    at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3709)
    at weblogic.jms.client.JMSSession.access$000(JMSSession.java:114)
    at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5058)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    at weblogic.jdbc.jta.DataSource.refreshXAConnAndEnlist(DataSource.java:1343)
    at weblogic.jdbc.wrapper.JTAConnection.getXAConn(JTAConnection.java:189)
    at weblogic.jdbc.wrapper.JTAConnection.checkConnection(JTAConnection.java:64)
    at weblogic.jdbc.wrapper.Connection.preInvocationHandler(Connection.java:92)
    at weblogic.jdbc.wrapper.Connection.prepareStatement(Connection.java:482)
    at fuego.jdbc.FaultTolerantConnection.prepareStatement(FaultTolerantConnection.java:541)
    at fuego.server.persistence.jdbc.JdbcToDoItemPersMgr.delete(JdbcToDoItemPersMgr.java:763)
    ... 26 more

    The only thing I'd caution you strongly against doing is to undeploy a project that has active instances in production.
    If you do this, the instances currently running through the processes in the project will be lost and cannot be resurrected.
    If this is not in production, then undeploying the project obviously won't do you any harm.
    Probably not the cause of the problem, but the only time I've seen a similar error was when an incorrect JDBC driver was used for the Engine. If this is not a new installation and you're on the latest patchset and you haven't done anything odd with the JDBC driver, then you might want to give support a call to see if they've run into a similar issue in the past.
    Dan

  • Dns error when trying to start ssgd 4.4

    Hi,
    I get the following error when trying to start a fresh install of SSGD 4.4 on sun solaris 10 sparc machine
    bash-3.00# /opt/tarantella/bin/tarantella start
    Starting Secure Global Desktop server (version 4.40.917). Please wait...
    2008/05/12 18:34:43.082 (pid 27580) server/common/fatalerror #1210597482966
    Sun Secure Global Desktop Software (4.4) FATAL ERROR:
    The configured DNS name of the server (unknown) couldn't be
    resolved in DNS.
    The server can't start.
    Check your DNS configuration.
    I tried changing the servername in the httpd.conf file but still get the above errors. What could be the possibel reasons for this error.
    Thanks,

    Hi,
    I changed the peerdns name to "penguin.everett.nl"
    Cbash-3.00# /opt/tarantella/bin/tarantella status
    Array members (1):
    - penguin.everett.nl (primary): NOT ACCEPTING CONNECTIONS.
    bash-3.00#
    However, when I now start the tarantella I get the following error :
    bash-3.00# /opt/tarantella/bin/tarantella stop
    Secure Global Desktop services are not currently running.
    bash-3.00# /opt/tarantella/bin/tarantella start
    Starting Secure Global Desktop server (version 4.40.917). Please wait...
    javax.naming.NameNotFoundException: asad.properties [Root exception is java.io.FileNotFoundException: /opt/tarantella/var/serverconfig/global/beans/asad.properties]
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at com.sco.jndi.toolkit.provider.SimpleContinuation.getSimpleException(SimpleContinuation.java:62)
    at com.sco.jndi.toolkit.provider.SimpleContinuation.getSimpleException(SimpleContinuation.java:82)
    at com.sco.jndi.toolkit.provider.ToolkitContext.namingException(ToolkitContext.java:386)
    at com.sco.jndi.toolkit.provider.ToolkitContext.namingException(ToolkitContext.java:401)
    at com.sco.jndi.toolkit.provider.ToolkitContext.nameNotFound(ToolkitContext.java:436)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.io.FileNotFoundException: /opt/tarantella/var/serverconfig/global/beans/asad.properties
    at com.sco.jndi.provider.file.FileCacheObject.<init>(FileCacheObject.java:62)
    at com.sco.jndi.provider.file.FileCacheObject.<init>(FileCacheObject.java:39)
    at com.sco.jndi.provider.file.FileCache.lookup(FileCache.java:83)
    at com.sco.jndi.provider.file.FileCache.lookup(FileCache.java:68)
    at com.sco.jndi.provider.file.FileContext.child(FileContext.java:612)
    at com.sco.jndi.provider.file.FileContext.f_lookupLink(FileContext.java:889)
    ... 12 more
    java.io.IOException: Failed to load all Beans : javax.naming.NameNotFoundException: asad.properties [Root exception is java.io.FileNotFoundException: /opt/tarantella/var/serverconfig/global/beans/asad.properties]
    at com.sco.tta.server.server.JServer.<init>(JServer.java:327)
    at TTAServer.run(TTAServer.java:391)
    at java.lang.Thread.run(Thread.java:619)
    bash-3.00# /opt/tarantella/bin/tarantella status
    Array members (1):
    - penguin.everett.nl (primary): NOT ACCEPTING CONNECTIONS.
    bash-3.00#

  • Permission error when syncing

    I just started getting a permission error when I tried syncing my iPhone, than iPod to iTunes.
    Have tried all the normal options, reboot iPhone, iPod and iMac, but still getting error.
    Any suggestions?

    I uninstalled, than reinstalled iTunes and it is working again.

  • EJB deployment error for Weblogic server 9.2 mp4

    Hi,
    While trying to deploy a small EJB jar file which uses EJB 2.1 CMP beans with relationships, getting the following error from Weblogic server 9.2 MP4:
    =================================================================================================
    <Error> <EJB> <VinodThinkPad> <AdminServer> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1320143988333> <BEA-012036> <Compiling generated EJB classes produced the following Java compiler error message:
    C:\bea\user_projects\domains\base_domain\servers\AdminServer\cache\EJBCompilerCache\19ivqhpr6jvsc\Test1\Order_cpl9bk__WebLogic_CMP_RDBMS.java:570: incompatible types
    found : <nulltype>
    required: int
    shipmentId = null;
    ^
    Note: Some input files use unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    1 error
    >
    ####<Nov 1, 2011 4:09:48 PM IST> <Error> <Deployer> <VinodThinkPad> <AdminServer> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1320143988380> <BEA-149265> <Failure occured in the execution of deployment request with ID '1320143984947' for task '1'. Error is: 'weblogic.application.ModuleException: Exception preparing module: EJBModule(EJBTest)
    Unable to deploy EJB: EJBTest.jar from EJBTest.jar:
    There are 1 nested errors:
    java.io.IOException: Compiler failed executable.exec:
    C:\bea\user_projects\domains\base_domain\servers\AdminServer\cache\EJBCompilerCache\19ivqhpr6jvsc\Test1\Order_cpl9bk__WebLogic_CMP_RDBMS.java:570: incompatible types
    found : <nulltype>
    required: int
    shipmentId = null;
    ^
    Note: Some input files use unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    1 error
         at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:493)
         at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:332)
         at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:340)
         at weblogic.ejb.container.ejbc.EJBCompiler.doCompile(EJBCompiler.java:309)
         at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:497)
         at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:464)
         at weblogic.ejb.container.deployer.EJBDeployer.runEJBC(EJBDeployer.java:432)
         at weblogic.ejb.container.deployer.EJBDeployer.compileJar(EJBDeployer.java:754)
         at weblogic.ejb.container.deployer.EJBDeployer.compileIfNecessary(EJBDeployer.java:657)
         at weblogic.ejb.container.deployer.EJBDeployer.prepare(EJBDeployer.java:1201)
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:355)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:360)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:56)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:46)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:615)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:147)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:61)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:189)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:87)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:718)
         at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1185)
         at weblogic.deploy.internal.targetserver.DeploymentManager.configPrepareCompleted(DeploymentManager.java:594)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepareCompleted(DeploymentServiceDispatcher.java:171)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCompletedCallback(DeploymentReceiverCallbackDeliverer.java:228)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$300(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$4.run(DeploymentReceiverCallbackDeliverer.java:95)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    weblogic.application.ModuleException: Exception preparing module: EJBModule(EJBTest)
    Unable to deploy EJB: EJBTest.jar from EJBTest.jar:
    There are 1 nested errors:
    java.io.IOException: Compiler failed executable.exec:
    C:\bea\user_projects\domains\base_domain\servers\AdminServer\cache\EJBCompilerCache\19ivqhpr6jvsc\Test1\Order_cpl9bk__WebLogic_CMP_RDBMS.java:570: incompatible types
    found : <nulltype>
    required: int
    shipmentId = null;
    ^
    Note: Some input files use unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    1 error
         at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:493)
         at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:332)
         at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:340)
         at weblogic.ejb.container.ejbc.EJBCompiler.doCompile(EJBCompiler.java:309)
         at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:497)
         at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:464)
         at weblogic.ejb.container.deployer.EJBDeployer.runEJBC(EJBDeployer.java:432)
         at weblogic.ejb.container.deployer.EJBDeployer.compileJar(EJBDeployer.java:754)
         at weblogic.ejb.container.deployer.EJBDeployer.compileIfNecessary(EJBDeployer.java:657)
         at weblogic.ejb.container.deployer.EJBDeployer.prepare(EJBDeployer.java:1201)
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:355)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:360)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:56)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:46)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:615)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:147)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:61)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:189)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:87)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:718)
         at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1185)
         at weblogic.deploy.internal.targetserver.DeploymentManager.configPrepareCompleted(DeploymentManager.java:594)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepareCompleted(DeploymentServiceDispatcher.java:171)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCompletedCallback(DeploymentReceiverCallbackDeliverer.java:228)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$300(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$4.run(DeploymentReceiverCallbackDeliverer.java:95)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:382)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:360)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:56)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:46)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:615)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:147)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:61)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:189)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:87)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:718)
         at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1185)
         at weblogic.deploy.internal.targetserver.DeploymentManager.configPrepareCompleted(DeploymentManager.java:594)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepareCompleted(DeploymentServiceDispatcher.java:171)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCompletedCallback(DeploymentReceiverCallbackDeliverer.java:228)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$300(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$4.run(DeploymentReceiverCallbackDeliverer.java:95)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    java.io.IOException: Compiler failed executable.exec:
    C:\bea\user_projects\domains\base_domain\servers\AdminServer\cache\EJBCompilerCache\19ivqhpr6jvsc\Test1\Order_cpl9bk__WebLogic_CMP_RDBMS.java:570: incompatible types
    found : <nulltype>
    required: int
    shipmentId = null;
    ^
    Note: Some input files use unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    1 error
         at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:493)
         at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:332)
         at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:340)
         at weblogic.ejb.container.ejbc.EJBCompiler.doCompile(EJBCompiler.java:309)
         at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:497)
         at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:464)
         at weblogic.ejb.container.deployer.EJBDeployer.runEJBC(EJBDeployer.java:432)
         at weblogic.ejb.container.deployer.EJBDeployer.compileJar(EJBDeployer.java:754)
         at weblogic.ejb.container.deployer.EJBDeployer.compileIfNecessary(EJBDeployer.java:657)
         at weblogic.ejb.container.deployer.EJBDeployer.prepare(EJBDeployer.java:1201)
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:355)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:360)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:56)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:46)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:615)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:147)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:61)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.createAndPrepareContainer(ActivateOperation.java:189)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doPrepare(ActivateOperation.java:87)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:718)
         at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1185)
         at weblogic.deploy.internal.targetserver.DeploymentManager.configPrepareCompleted(DeploymentManager.java:594)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepareCompleted(DeploymentServiceDispatcher.java:171)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCompletedCallback(DeploymentReceiverCallbackDeliverer.java:228)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$300(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$4.run(DeploymentReceiverCallbackDeliverer.java:95)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    >
    =================================================================================================
    While I'm able to deploy without the CMP 1-1 relationship, the moment I introduce the 1-1 relationship, I get this error. Database used is Oracle 10g XE.
    I have been battling this error for more than a day now. Kindly help me fix this.
    Thanks in advance!
    Regards,
    Vinod

    Hi,
    I was able to figure out the root cause. I was using the primitive data type "int" for primary key and foreign key for one of the beans in the relationship. After I changed it to "Integer" wrapper type, the issue got resolved.
    -Vinod

  • Permission errors when using File Sharing

    I am having permission errors when trying to transfer from Mac to Mac over the network using Filesharing.
    I mount the other computer, but when I try to copy I get:
    "You may need to enter the name and password for an adminstrator on this computer to change the item named "xxxxxx""
    (but I am signed in with adminstrator accounts)...I click continue then get:
    "The item "xxxxxx" contains one or more items you do not have permission to read. Do you want to copy the items you are allowed to read?" ....I click continue then get:
    "The operation cannot be completed because you do not have sufficient privileges for some of the items"
    thanks

    I had to reset the permissions on the "other" machine as well using the Installation boot disk.
    That seem to fix the issue.

  • How to add an object in JNDI when a server starts?

    I have an integration app. The app contains EJB project. The project contains EJB which reads data from LDAP.
    My first version of EJB contains the following code:
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, strProvider);
    env.put(Context.SECURITY_AUTHENTICATION, strAuth); env.put(Context.SECURITY_PRINCIPAL,strPrincipal); env.put(Context.SECURITY_CREDENTIALS,strCredentials);
    DirContext dirCtx = new InitialDirContext(env); // exception
    All connection properties are hardcoded and it is not a good practice.
    Also I can put those properties into deployment descriptor. But I am going to have some EJBs and each EJB has to have those properties into descriptors. It is not useful.
    My idea: I would like to have whatever object which is called automatically when a server starts; this object creates InitialDirContext and put the context into JNDI. All EJBs lookup the context by a name. But I don't know how to do that.
    And another question: how to change connection properties dynamically? My idea is putting the properties in XML Cache. And my object (which creates InitialDirContext) reads the properties from XML Cache. Can I handle a message that my properties in XML Cache have been changed and in this cases my object reads new properties and calls rebind() to update InitialDirContext?
    Thanks,
    Ivan

    To bind an object into the JNDI tree check the documentation here:
    http://e-docs.bea.com/wls/docs81/jndi/jndi.html#475702
    If this is to be used by all your applications that you deploy on the server check out the startup/shutdown class documentation here:
    http://edocs.bea.com/wls/docs81/ConsoleHelp/startup_shutdown.html
    Cheers
    IV

  • Help-Cubes are not getting started when Analytical server started in 11.1.1

    Installed Oracle Essbase Analytical server along with Shared Services, Provider Services and Integration Services thru EPM v11.1.1.3. Shared services and provider services on Windows 2003 and Essbase Analytical Services and Integration Services on UNIX/AIX. All the components got configured successfully. Copied the essbase.sec from the server which has previous version (v11.1.1.1.0) of Essbase. We have been encountering couple of problems. The first one is the applications(cubes) didn't start when the analytical server started. The second one is when trying to start using MAXL script, the applications took long time (more than 30 minutes) to start.
    Any suggestions that you may have in resolving this are appreciated. Thanks,

    In the application properties, is the box 'Start application when Essbase server starts' checked? If not, that's why they didn't automatically start. Also, once you started them manually, does it still take 30 minutes to start? Or is shutdown and startup faster now?
    Sabrina

  • I get an error when attempting to start genius. It says "Unsuccessful Action: The action you attempted to perform did not complete successfully. Please try again later." Help!

    I get an error when attempting to start genius. It says "Unsuccessful Action: The action you attempted to perform did not complete successfully. Please try again later." Help!

    From an existing Discussion:
    Go to Safari --> Preferences
    Click Security
    Show Cookies
    Type "apple.com" in to top search field
    Select All
    Click Remove
    Click Done
    Repeat the above to confirm they are gone (mine took two attempts)
    Choose Update Genius again in iTunes.
    iTunes 9 - can't update genius https://discussions.apple.com/thread/2151150

  • Error when trying to start the ToolsAndFrameworks to access Endeca workbenc

    Hi All,
    I am getting the below error when trying to start the ToolsAndFrameworks.
    Starting Workbench (background process)
    The BASEDIR environment variable is not defined correctly
    This environment variable is needed to run this program
    Regards
    SK

    Hi SK,
    This occurs in those cases where the Endeca environment variables are not set properly. Make sure all the Endeca environment variables are set before starting the Tools services.
    Executing the 'mdex_setup_ini' and 'installar_sh.ini' will setup the Endeca environment variables. Below are the commands for the same.
    source /local/endeca/MDEX/6.3.0/mdex_setup_sh.ini
    source /local/endeca/PlatformServices/workspace/setup/installer_sh.ini
    HTH,
    Mahesh

  • I get an error that says that LR5 encounterd a preview cach error when trying to start LR5 and that it will try to fix it the next time it starts. What can I do to fix this error?

    I get an error that says that LR5 encountered a preview cache error when trying to start LR5 and that it will try to fix it the next time it starts. What can I do to fix this error?

    Go to the folder with you Lightroom Catalog (usually in Pictures) and delete the folder ending in .lrpreviews
    This contains the previews for the files Lightroom has linked to. They will need to be rebuilt which can be done while working or selecting an amount you want to rebuild and accessing the rebuild command in the Library Dropdown menu...

  • Error when trying to start managed server from node manager

    I have a managed server which is authenticated through a WeblogicAuthenticProvider. When starting the managed server from command line I need to setup certain jars in the classpath in order to start it successfully. However when I try and start the managed server from a node manager, I receive the following error.
    Any ideas as to what is going on are appreciated. Is there any way to force Weblogic Node manager to invoke the actual startManagedWeblogic.cmd when bringing up the managed server
    Thanks
    <Jun 5, 2006 9:21:05 AM EDT> <Info> <NodeManager@*.*:5555> <Starting Server TweCluster::TaxwareServer1 ...>
    <Jun 5, 2006 9:21:07 AM EDT> <Info> <NodeManager@*.*:5555> <Server TweCluster::TaxwareServer1 started, process id = 3,012>
    <Jun 5, 2006 9:21:11 AM EDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with BEA WebLogic JRockit(TM) 1.4.2_05 JVM R24.4.0-1 Version ari-38120-20041118-1131-win-ia32 from BEA Systems, Inc.>
    <Jun 5, 2006 9:21:12 AM EDT> <Info> <Management> <BEA-141140> <The managed server is going to contact the admin server at http://zeus3dev:7001 to check if there exists a running admin server at this URL.>
    <Jun 5, 2006 9:21:12 AM EDT> <Info> <Configuration Management> <BEA-150017> <This server is being started as a dependent managed server.>
    <Jun 5, 2006 9:21:12 AM EDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP4 Mon Nov 29 16:21:29 PST 2004 471647
    WebLogic XMLX Module 8.1 SP4 Mon Nov 29 16:21:29 PST 2004 471647 >
    <Jun 5, 2006 9:21:12 AM EDT> <Info> <Configuration Management> <BEA-150015> <Connecting to the administration server http://zeus3dev:7001 to retrieve the initial configuration.>
    <Jun 5, 2006 9:21:16 AM EDT> <Notice> <Log Management> <BEA-170019> <The server log file E:\bea8.1\weblogic81\common\nodemanager\TaxwareServer1\TaxwareServer1.log is opened. All server side log events will be written to this file.>
    The WebLogic Server did not start up properly.
    java.lang.NoClassDefFoundError: com/taxware/twe/util/crypto/CryptoUtil
    at com.taxware.twe.auth.server.GenericPrincipalValidator.<init>()V(GenericPrincipalValidator.java:41)
    at com.taxware.twe.auth.server.WeblogicPrincipalValidator.<init>()V(WeblogicPrincipalValidator.java:38)
    at com.taxware.twe.auth.server.WeblogicAuthenticationProvider.getPrincipalValidator()Lweblogic.security.spi.PrincipalValidator;(WeblogicAuthenticationProvider.java:188)
    at weblogic.security.service.PrincipalAuthenticator.initialize(Ljava.lang.String;[Lweblogic.management.security.ProviderMBean;)V(PrincipalAuthenticator.java:154)
    at weblogic.security.service.PrincipalAuthenticator.<init>(Ljava.lang.String;[Lweblogic.management.security.ProviderMBean;)V(PrincipalAuthenticator.java:262)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.doATN(Ljava.lang.String;Lweblogic.management.security.RealmMBean;)Lweblogic.security.service.PrincipalAuthenticator;(SecurityServiceManagerDelegateImpl.java:581)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initializeRealm(Lweblogic.management.security.RealmMBean;Ljava.util.HashMap;)V(SecurityServiceManagerDelegateImpl.java:420)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.loadRealm(Ljava.lang.String;)V(SecurityServiceManagerDelegateImpl.java:700)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initializeRealms()V(SecurityServiceManagerDelegateImpl.java:733)
    at weblogic.security.service.SecurityServiceManagerDelegateImpl.initialize(Lweblogic.security.acl.internal.AuthenticatedSubject;)V(SecurityServiceManagerDelegateImpl.java:876)
    at weblogic.security.service.SecurityServiceManager.initialize(Lweblogic.security.acl.internal.AuthenticatedSubject;)V(SecurityServiceManager.java:734)
    at weblogic.t3.srvr.T3Srvr.initializeHere()V(T3Srvr.java:822)
    at weblogic.t3.srvr.T3Srvr.initialize()V(T3Srvr.java:670)
    at weblogic.t3.srvr.T3Srvr.run([Ljava.lang.String;)I(T3Srvr.java:344)
    at weblogic.Server.main([Ljava.lang.String;)V(Server.java:32)
    Reason: com/taxware/twe/util/crypto/CryptoUtil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Found a workaround:
    Manually, add PATH (and probably the other environment variables also) to
    ${WLS_HOME}/common/bin/commEnv.sh.

  • Error when trying to start BPEL PM server

    Hi ,
    I encountered the following error when i try to boot the BPEL PM server.
    Can somebody help me with this problem.
    Error compiling D:\OraBPELPM_1\integration\orabpel\system\appserver\oc4j\j2ee\ho
    me\applications\orabpel_ear\ejb_ob_engine.jar: Syntax error in source
    06/09/13 10:48:38 done.
    06/09/13 10:48:38 Error instantiating application 'orabpel' at file:/D:/OraBPELP
    M_1/integration/orabpel/system/appserver/oc4j/j2ee/home/applications/orabpel_ear
    /: Error initializing ejb-module; Exception Error in application orabpel: Error
    loading package at file:/D:/OraBPELPM_1/integration/orabpel/system/appserver/oc4
    j/j2ee/home/applications/orabpel_ear/ejb_ob_engine.jar,
    Error compiling D:\OraBPELPM_1\integration\orabpel\system\appserver\oc4j\j2ee\ho
    me\applications\orabpel_ear\ejb_ob_engine.jar: Syntax error in source
    06/09/13 10:48:38 Application bc4j (bc4j) initialized...
    06/09/13 10:48:38 Auto-deploying - hw_services.war (No previous deployment found
    06/09/13 10:48:38 Auto-deploying - compiling and loading...
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Error compiling D:\OraBPELPM_1\integration\orabpel\system\appserver\oc4j\j2ee\ho
    me\applications\hw_services\hw_services.war: Syntax error in source
    Error in application hw_services: Error loading package at file:/D:/OraBPELPM_1/
    integration/orabpel/system/appserver/oc4j/j2ee/home/applications/hw_services/hw_
    services.war,
    Error compiling D:\OraBPELPM_1\integration\orabpel\system\appserver\oc4j\j2ee\ho
    me\applications\hw_services\hw_services.war: Syntax error in source
    06/09/13 10:48:39 done.
    06/09/13 10:48:39 Error instantiating application 'hw_services' at file:/D:/OraB
    PELPM_1/integration/orabpel/system/appserver/oc4j/j2ee/home/applications/hw_serv
    ices.ear: Error initializing ejb-module; Exception Error in application hw_servi
    ces: Error loading package at file:/D:/OraBPELPM_1/integration/orabpel/system/ap
    pserver/oc4j/j2ee/home/applications/hw_services/hw_services.war,
    Error compiling D:\OraBPELPM_1\integration\orabpel\system\appserver\oc4j\j2ee\ho
    me\applications\hw_services\hw_services.war: Syntax error in source
    06/09/13 10:48:39 Auto-deploying - OWFWrapperEJB.jar (No previous deployment fou
    nd)...
    06/09/13 10:48:39 Auto-deploying - compiling and loading...
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    Error compiling D:\OraBPELPM_1\integration\orabpel\system\appserver\oc4j\j2ee\ho
    me\applications\owf\OWFWrapperEJB.jar: Syntax error in source
    Error in application owf: Error loading package at file:/D:/OraBPELPM_1/integrat
    ion/orabpel/system/appserver/oc4j/j2ee/home/applications/owf/OWFWrapperEJB.jar,
    Error compiling D:\OraBPELPM_1\integration\orabpel\system\appserver\oc4j\j2ee\ho
    me\applications\owf\OWFWrapperEJB.jar: Syntax error in source
    06/09/13 10:48:43 done.
    06/09/13 10:48:43 Error instantiating application 'owf' at file:/D:/OraBPELPM_1/
    integration/orabpel/system/appserver/oc4j/j2ee/home/applications/owf.ear: Error
    initializing ejb-module; Exception Error in application owf: Error loading packa
    ge at file:/D:/OraBPELPM_1/integration/orabpel/system/appserver/oc4j/j2ee/home/a
    pplications/owf/OWFWrapperEJB.jar,
    Error compiling D:\OraBPELPM_1\integration\orabpel\system\appserver\oc4j\j2ee\ho
    me\applications\owf\OWFWrapperEJB.jar: Syntax error in source
    06/09/13 10:48:43 Application b2bwsilplugin (BPEL-B2B adapter WSIL plugin) initi
    alized...
    06/09/13 10:48:43 Application icwsilplugin (BPEL-IC adapter WSIL plugin) initial
    ized...
    06/09/13 10:48:43 Web-App default:defaultWebApp (0.0.0.0/0.0.0.0:9700/) started.
    06/09/13 10:48:43 Building Global TagLibrary Persistent Cache
    06/09/13 10:48:43 Looking for global resource at D:\OraBPELPM_1\integration\orab
    pel\system\appserver\oc4j\j2ee\home\config\..\jsp\lib\taglibDone getting applica
    tion current resources
    06/09/13 10:48:43 Done initializing cache
    06/09/13 10:48:43 Refreshing global cache - from existing cache ...
    06/09/13 10:48:43 Building Application TagLibrary Persistent Cache for defaultWe
    bApp
    06/09/13 10:48:44 Done getting application current resources
    06/09/13 10:48:44 Done initializing cache
    06/09/13 10:48:44 Refreshing application cache - from existing cache ...
    06/09/13 10:48:44 Found 0 listeners
    06/09/13 10:48:44 Web-App orabpel:admin_war (0.0.0.0/0.0.0.0:9700/BPELAdmin) sta
    rted...
    06/09/13 10:48:44 Building Application TagLibrary Persistent Cache for admin_war
    06/09/13 10:48:44 Done getting application current resources
    06/09/13 10:48:44 Done initializing cache
    06/09/13 10:48:44 Refreshing application cache - from existing cache ...
    06/09/13 10:48:44 Found 0 listeners
    06/09/13 10:48:44 Web-App orabpel:console_war (0.0.0.0/0.0.0.0:9700/BPELConsole)
    started...
    06/09/13 10:48:44 Building Application TagLibrary Persistent Cache for console_w
    ar
    06/09/13 10:48:44 Done getting application current resources
    06/09/13 10:48:44 Done initializing cache
    06/09/13 10:48:44 Refreshing application cache - from existing cache ...
    06/09/13 10:48:44 Found 0 listeners
    06/09/13 10:48:44 Web-App orabpel:startup_war (0.0.0.0/0.0.0.0:9700/orabpel) sta
    rted...
    06/09/13 10:48:44 Building Application TagLibrary Persistent Cache for startup_w
    ar
    06/09/13 10:48:44 Done getting application current resources
    06/09/13 10:48:44 Done initializing cache
    06/09/13 10:48:44 Refreshing application cache - from existing cache ...
    06/09/13 10:48:44 Found 0 listeners
    06/09/13 10:48:44 log4j:WARN No appenders could be found for logger (org.collaxa
    .thirdparty.apache.axis.transport.http.AxisServlet).
    06/09/13 10:48:44 log4j:WARN Please initialize the log4j system properly.
    06/09/13 10:48:47 java.lang.Exception: Failed to create "ejb/collaxa/system/Serv
    erBean" bean; exception reported is: "javax.naming.NameNotFoundException: ejb/co
    llaxa/system/ServerBean not found
    at com.evermind.server.rmi.RMIContext.lookup(RMIContext.java:164)
    at com.evermind.server.ApplicationContext.lookup(ApplicationContext.java
    :333)
    at com.evermind.server.ApplicationContext.lookup(ApplicationContext.java
    :120)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at com.oracle.bpel.client.util.BeanRegistry.lookupServerBean(BeanRegistr
    y.java:95)
    at com.oracle.bpel.client.util.BeanRegistry.lookupServerBean(BeanRegistr
    y.java:81)
    at com.oracle.bpel.client.util.BeanCache.getServerBean(BeanCache.java:88
    at com.collaxa.cube.admin.CXLoaderServlet.init(CXLoaderServlet.java:59)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.
    java:2354)
    at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.
    java:4795)
    at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpAppl
    ication.java:4889)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.
    java:1015)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:
    549)
    at com.evermind.server.Application.getHttpApplication(Application.java:8
    90)
    at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.jav
    a:707)
    at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServe
    r.java:2394)
    at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.jav
    a:1551)
    at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLa
    uncher.java:92)
    at java.lang.Thread.run(Thread.java:534)
    06/09/13 10:48:47 at com.oracle.bpel.client.util.BeanRegistry.lookupServer
    Bean(BeanRegistry.java:109)
    06/09/13 10:48:47 at com.oracle.bpel.client.util.BeanRegistry.lookupServer
    Bean(BeanRegistry.java:81)
    06/09/13 10:48:47 at com.oracle.bpel.client.util.BeanCache.getServerBean(B
    eanCache.java:88)
    06/09/13 10:48:47 at com.collaxa.cube.admin.CXLoaderServlet.init(CXLoaderS
    ervlet.java:59)
    06/09/13 10:48:47 at javax.servlet.GenericServlet.init(GenericServlet.java
    :258)
    06/09/13 10:48:47 at com.evermind.server.http.HttpApplication.loadServlet(
    HttpApplication.java:2354)
    06/09/13 10:48:47 at com.evermind.server.http.HttpApplication.findServlet(
    HttpApplication.java:4795)
    06/09/13 10:48:47 at com.evermind.server.http.HttpApplication.initPreloadS
    ervlets(HttpApplication.java:4889)
    06/09/13 10:48:47 at com.evermind.server.http.HttpApplication.initDynamic(
    HttpApplication.java:1015)
    06/09/13 10:48:47 at com.evermind.server.http.HttpApplication.<init>(HttpA
    pplication.java:549)
    06/09/13 10:48:47 at com.evermind.server.Application.getHttpApplication(Ap
    plication.java:890)
    06/09/13 10:48:47 at com.evermind.server.http.HttpServer.getHttpApplicatio
    n(HttpServer.java:707)
    06/09/13 10:48:47 at com.evermind.server.http.HttpSite.initApplications(Ht
    tpSite.java:625)
    06/09/13 10:48:47 at com.evermind.server.http.HttpSite.setConfig(HttpSite.
    java:278)
    06/09/13 10:48:47 at com.evermind.server.http.HttpServer.setSites(HttpServ
    er.java:278)
    06/09/13 10:48:47 at com.evermind.server.http.HttpServer.setConfig(HttpSer
    ver.java:179)
    06/09/13 10:48:47 at com.evermind.server.ApplicationServer.initializeHttp(
    ApplicationServer.java:2394)
    06/09/13 10:48:47 at com.evermind.server.ApplicationServer.setConfig(Appli
    cationServer.java:1551)
    06/09/13 10:48:47 at com.evermind.server.ApplicationServerLauncher.run(App
    licationServerLauncher.java:92)
    06/09/13 10:48:47 at java.lang.Thread.run(Thread.java:534)
    06/09/13 10:48:47 Web-App orabpel:httpbinding (0.0.0.0/0.0.0.0:9700/httpbinding)
    started...
    06/09/13 10:48:47 Building Application TagLibrary Persistent Cache for httpbindi
    ng
    06/09/13 10:48:47 Done getting application current resources
    06/09/13 10:48:47 Done initializing cache
    06/09/13 10:48:47 Refreshing application cache - from existing cache ...
    06/09/13 10:48:47 Found 0 listeners
    06/09/13 10:48:47 Web-App bc4j:webapp (0.0.0.0/0.0.0.0:9700/webapp) started...
    06/09/13 10:48:47 Building Application TagLibrary Persistent Cache for webapp
    06/09/13 10:48:47 Done getting application current resources
    06/09/13 10:48:47 Done initializing cache
    06/09/13 10:48:47 Refreshing application cache - from existing cache ...
    06/09/13 10:48:48 Found 0 listeners
    06/09/13 10:48:48 Web-App hw_services:deploy (0.0.0.0/0.0.0.0:9700/integration/s
    ervices/deploy) started...
    06/09/13 10:48:48 Building Application TagLibrary Persistent Cache for deploy
    06/09/13 10:48:48 Done getting application current resources
    06/09/13 10:48:48 Done initializing cache
    06/09/13 10:48:48 Refreshing application cache - from existing cache ...
    06/09/13 10:48:48 Found 0 listeners
    06/09/13 10:48:48 Web-App hw_services:hw_services (0.0.0.0/0.0.0.0:9700/integrat
    ion/services) started...
    06/09/13 10:48:48 Building Application TagLibrary Persistent Cache for hw_servic
    es
    06/09/13 10:48:48 Done getting application current resources
    06/09/13 10:48:48 Done initializing cache
    06/09/13 10:48:48 Refreshing application cache - from existing cache ...
    06/09/13 10:48:48 Found 0 listeners
    06/09/13 10:48:48 Web-App hw_services:testconnection (0.0.0.0/0.0.0.0:9700/integ
    ration/services/testconnection) started...
    06/09/13 10:48:48 Building Application TagLibrary Persistent Cache for testconne
    ction
    06/09/13 10:48:48 Done getting application current resources
    06/09/13 10:48:48 Done initializing cache
    06/09/13 10:48:48 Refreshing application cache - from existing cache ...
    06/09/13 10:48:48 Found 0 listeners
    06/09/13 10:48:48 Web-App hw_services:worklistxpress (0.0.0.0/0.0.0.0:9700/integ
    ration/worklistapp) started...
    06/09/13 10:48:48 Building Application TagLibrary Persistent Cache for worklistx
    press
    06/09/13 10:48:48 Done getting application current resources
    06/09/13 10:48:48 Done initializing cache
    06/09/13 10:48:48 Refreshing application cache - from existing cache ...
    06/09/13 10:48:49 Found 0 listeners
    06/09/13 10:48:49 Web-App owf:owf (0.0.0.0/0.0.0.0:9700/integration/owf) started
    06/09/13 10:48:49 Building Application TagLibrary Persistent Cache for owf
    06/09/13 10:48:49 Done getting application current resources
    06/09/13 10:48:49 Done initializing cache
    06/09/13 10:48:49 Refreshing application cache - from existing cache ...
    06/09/13 10:48:49 Found 0 listeners
    06/09/13 10:48:49 NOT running under appserver environment
    06/09/13 10:48:49 javax.naming.NameNotFoundException: loc/jdbc/BPELServerDataSou
    rce not found
    06/09/13 10:48:49 at com.evermind.server.rmi.RMIContext.lookup(RMIContext.
    java:164)
    06/09/13 10:48:49 at com.evermind.server.ApplicationContext.lookup(Applica
    tionContext.java:333)
    06/09/13 10:48:49 at com.evermind.server.ApplicationContext.lookup(Applica
    tionContext.java:120)
    06/09/13 10:48:49 at javax.naming.InitialContext.lookup(InitialContext.jav
    a:347)
    06/09/13 10:48:49 at oracle.tip.pc.services.owf.AppWrapper.getDataSource(A
    ppWrapper.java:53)
    06/09/13 10:48:49 at oracle.tip.pc.services.owf.BridgeDBWrapper.<init>(Bri
    dgeDBWrapper.java:77)
    06/09/13 10:48:49 at oracle.tip.pc.services.owf.callback.OWFMonitorServlet
    .init(OWFMonitorServlet.java:45)
    06/09/13 10:48:49 at com.evermind.server.http.HttpApplication.loadServlet(
    HttpApplication.java:2354)
    06/09/13 10:48:49 at com.evermind.server.http.HttpApplication.findServlet(
    HttpApplication.java:4795)
    06/09/13 10:48:49 at com.evermind.server.http.HttpApplication.initPreloadS
    ervlets(HttpApplication.java:4889)
    06/09/13 10:48:49 at com.evermind.server.http.HttpApplication.initDynamic(
    HttpApplication.java:1015)
    06/09/13 10:48:49 at com.evermind.server.http.HttpApplication.<init>(HttpA
    pplication.java:549)
    06/09/13 10:48:49 at com.evermind.server.Application.getHttpApplication(Ap
    plication.java:890)
    06/09/13 10:48:49 at com.evermind.server.http.HttpServer.getHttpApplicatio
    n(HttpServer.java:707)
    06/09/13 10:48:49 at com.evermind.server.http.HttpSite.initApplications(Ht
    tpSite.java:625)
    06/09/13 10:48:49 at com.evermind.server.http.HttpSite.setConfig(HttpSite.
    java:278)
    06/09/13 10:48:49 at com.evermind.server.http.HttpServer.setSites(HttpServ
    er.java:278)
    06/09/13 10:48:49 at com.evermind.server.http.HttpServer.setConfig(HttpSer
    ver.java:179)
    06/09/13 10:48:49 at com.evermind.server.ApplicationServer.initializeHttp(
    ApplicationServer.java:2394)
    06/09/13 10:48:49 at com.evermind.server.ApplicationServer.setConfig(Appli
    cationServer.java:1551)
    06/09/13 10:48:49 at com.evermind.server.ApplicationServerLauncher.run(App
    licationServerLauncher.java:92)
    06/09/13 10:48:49 at java.lang.Thread.run(Thread.java:534)
    06/09/13 10:48:49 Web-App b2bwsilplugin:b2bwsilplugin (0.0.0.0/0.0.0.0:9700/B2BW
    SIL) started...
    06/09/13 10:48:49 Building Application TagLibrary Persistent Cache for b2bwsilpl
    ugin
    06/09/13 10:48:49 Done getting application current resources
    06/09/13 10:48:49 Done initializing cache
    06/09/13 10:48:49 Refreshing application cache - from existing cache ...
    06/09/13 10:48:49 Found 0 listeners
    06/09/13 10:48:49 B2B not installed
    06/09/13 10:48:49 Web-App icwsilplugin:icwsilplugin (0.0.0.0/0.0.0.0:9700/ic) st
    arted...
    06/09/13 10:48:49 Building Application TagLibrary Persistent Cache for icwsilplu
    gin
    06/09/13 10:48:49 Done getting application current resources
    06/09/13 10:48:49 Done initializing cache
    06/09/13 10:48:49 Refreshing application cache - from existing cache ...
    06/09/13 10:48:49 Found 0 listeners
    06/09/13 10:48:49 Interconnect not installed
    06/09/13 10:48:49 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    initialized

    Hi guys:
    I got exactly the same error. I recently installed BPEL Process Manager for Developers 10g Release 2 (10.1.2) in windows XP.
    The default setting for BPEL VM memory is Xms512m -Xmx512m -Xmn300m. I tried to set maximum size to 1024 but I had this error.
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    if any body can suggest a solution will be great .
    Thanks.
    Message was edited by:
    user533906
    Message was edited by:
    user533906

Maybe you are looking for