- This topic has 3 replies, 3 voices, and was last updated 20 years, 11 months ago by
Riyad Kalla.
-
AuthorPosts
-
kelly.hMemberWhen I start my server it gives me this error
<Jul 7, 2004 2:54:17 PM MDT> <Notice> <WebLogicServer> <BEA-000327> <Starting WebLogic Admin Server “MooseServer” for domain “moose”>
<Jul 7, 2004 2:54:19 PM MDT> <Warning> <HTTP> <BEA-101296> <Unable to load the default compiler class “com.sun.tools.javac.Main”. Using the default javac compiler to compile JSPs.>
<Jul 7, 2004 2:54:26 PM MDT> <Error> <Deployer> <BEA-149601> <The deployment framework was unable to resume accepting requests.>
<Jul 7, 2004 2:54:26 PM MDT> <Emergency> <WebLogicServer> <BEA-000342> <Unable to initialize the server: [Deployer:149601]The deployment framework was unable to resume accepting requests.weblogic.t3.srvr.FatalStartupException: Can’t start server due to startup class failure WLI Startup Class – with nested exception:
[java.lang.ClassNotFoundException: com.bea.wli.init.BPMStartup]>***************************************************************************
The WebLogic Server did not start up properly.
weblogic.management.AbortDeploymentException: weblogic.t3.srvr.FatalStartupException: Can’t start server due to startup class failure WLI Startup Class – with nested exception:
[java.lang.ClassNotFoundException: com.bea.wli.init.BPMStartup]
at weblogic.t3.srvr.StartupClassService.addDeployment(StartupClassService.java:92)
at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:330)
at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:590)
at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarget.java:568)
at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.java:240)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:747)
at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:726)
at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:458)
at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:765)
at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:946)
at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java:481)
at weblogic.management.configuration.ServerMBean_Stub.updateDeployments(ServerMBean_Stub.java:7271)
at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployments(SlaveDeployer.java:1245)
at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:397)
at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:230)
at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:964)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:359)
at weblogic.Server.main(Server.java:32)
Reason: [Deployer:149601]The deployment framework was unable to resume accepting requests.weblogic.t3.srvr.FatalStartupException: Can’t start server due to startup class failure WLI Startup Class – with nested exception:
[java.lang.ClassNotFoundException: com.bea.wli.init.BPMStartup]
***************************************************************************
Riyad KallaMemberDoes this help? http://www.myeclipseide.com/FAQ+index-myfaq-yes-id_cat-14.html#142
As far as this error:
java.lang.ClassNotFoundException: com.bea.wli.init.BPMStartup
Where is that class? Do you need to add any additional BEA JAR files to your Paths for your connector settings?
DoCampbellMemberI used to get that error when I first used WebLogic with MyEclipse…
You need to have the following in your classpath (set up via “Preferences…MyEclipse…Application Servers…WebLogic 8…Paths…append to classpath”)
<WLI_HOME>\server\lib\weblogic.jar, ojdbc.jar, webservices.jar, wli.jar, debugging.jar, knex.jar, webserviceclient.jar, webserviceclient+ssl.jar, xbean.jar, wlxbean.jar, xqrl.jar, wlw-lang.jar, fop.jar, javelin.jar, netui\netui-compiler.jar, ant\ant.jar
Also need to have <BEA_HOME>\jdk141_05\lib\tools.jar, rt.jarYou MAY be able to leave some out, but these are what I have and it works really well – you may need to include Oracle drivers etc, just add them as above.
Also, you must make sure that the JDK you use is the same for Eclipse and MyEclipse (Under the JDK option), otherwise you will get some odd problems.
Hope this helps you.
Dominic.
Riyad KallaMemberKelly did Dominic’s suggestion work? I’d like to add it to the FAQ if it did.
Dominic, thank you for the info!
-
AuthorPosts