| |
|
|
 |
 |
 |
 |
 |
 |
| |
|
|
 |
 |
 |
 |
Discussion Forums: Help Start New Thread | Admin
By: Michael Paap
RE: How to configure Lomboz 3.0 & Tomcat 5.0. [ reply ] 2004-10-06 16:41
|
|
This worked for me:
I closed all JSP-Files, restarted Eclipse and opened the Help - Help Contents. After this i opened JSP-Files and worked with Lomboz.
Since I've done so, Eclipse'S Help works without any problems, no matter, if JSPs are opened or not and after restarts too.
Greetings,
Michael
|
By: Bennett Ellis
RE: How to configure Lomboz 3.0 & Tomcat 5.0. [ reply ] 2004-09-07 21:38
|
|
Hey, This worked beautifully.
Also, for those who might be having issues with JSP refreshing while using Lomboz, on a different newsgroup, I discussed my woes with certain versions of Tomcat. Seems like everything after 4.1.24 and before some version of 5.0 had some issues with refreshing JSP pages. The reason I moved to 5.0.27 was becuase someone responded and suggested I move to it as he did not have any JSP refresh issues on that version. I have since moved to 5.0.27. However, once there, I encountered this other issue, but now, this the quick server redefinition explained here, all my troubles seem to be over, and I'm able to refresh JSPs after editing them no problemo. Thanks a bunch!!!!!
|
By: Michael Katz
RE: How to configure Lomboz 3.0 & Tomcat 5.0. [ reply ] 2004-08-31 19:26
|
|
This worked for me.
I took commons-logging-api.jar in tomcathome\bin of 5.0.24's and put it in .27 and .28 and tomcat started.
.24's manifest says:
Extension-Name: org.apache.commons.logging
Implementation-Version: 1.0.3
.27's manifest says:
Extension-Name: org.apache.commons.logging
Implementation-Version: 1.0.4
|
By: Orvar
RE: How to configure Lomboz 3.0 & Tomcat 5.0. [ reply ] 2004-07-25 17:05
|
|
I edited the tomcat50x.server and replace it with the value of my catalina.bat file. So now Im getting "INFO: Server startup in 7796 ms" Instead of 11 error message. Guess it works :) Anyway, why dose this problem exist, ist the settings i define in Eclipse supose to end up correctly in the tomcat50x.server?
|
By: Brian Gregory
RE: How to configure Lomboz 3.0 & Tomcat 5.0. [ reply ] 2004-07-25 04:14
|
|
Possible solution:
I edited the file "tomcat50x.server" under
C:\eclipse\plugins\com.objectlearn.jdt.j2ee_3.0.1\servers
and changed
-Djava.endorsed.dirs="${serverRootDirectory}/bin;${serverRootDirectory}/common/endorsed"
to
-Djava.endorsed.dirs="${serverRootDirectory}/common/endorsed"
in the following 'tags':
<startVmParameters>-DJAVA_HOME="${jrePath}" -Dcatalina.base="${serverRootDirectory}" -Dcatalina.home="${serverRootDirectory}" -Djava.io.tmpdir="${serverRootDirectory}/temp" -Djava.endorsed.dirs="${serverRootDirectory}/bin;${serverRootDirectory}/common/endorsed"</startVmParameters>
and
<stopVmParameters>-DJAVA_HOME="${jrePath}" -Dcatalina.base="${serverRootDirectory}" -Dcatalina.home="${serverRootDirectory}" -Djava.io.tmpdir="${serverRootDirectory}/temp" -Djava.endorsed.dirs="${serverRootDirectory}/bin;${serverRootDirectory}/common/endorsed"</stopVmParameters>
This matches the value used in my catalina.bat file when lauched from the command prompt.
|
By: T. Stening
How to configure Lomboz 3.0 & Tomcat 5.0.27? [ reply ] 2004-07-22 00:21
|
|
Hello,
I just installed Eclipse 3.0, Lomboz 3.0 and Tomcat 5.0.27 on my Windows XP. But now I'm wondering how to configure Lomboz to successfully start Tomcat out of the Lomboz View in Eclipse? In the past I used the Sysdeo Tomcat Plugin, which does his job very well.
Under Workbench/Preferenzes/Lomboz/Server Definitions I had chosen Apache Tomcat v5.0.x and set the properties as follows:
Application Server Directory: C:\Programme\Apache Software Foundation\Tomcat 5.0
Address: 127.0.0.1
Port: 8080
Classpath Variable Name: TOMCAT_HOME
Classpath Variable: C:\Programme\Apache Software Foundation\Tomcat 5.0
Server Classpath
JDK_TOOLS (set to c:\j2sdk1.4.2_03\lib\tools.jar)
${classPathVariableName}/bin/bootstrap.jar
Client Classpath
nothing yet configured
Project Classpath
JDK_TOOLS
${classPathVariableName}/bin/bootstrap.jar
${classPathVariableName}/common/lib/servlet-api.jar
${classPathVariableName}/common/lib/jsp-api.jar
Starting Tomcat out of the Lomboz View fails with the following Stacktrace:
Bootstrap: Class loader creation threw exception
java.lang.ExceptionInInitializerError
at org.apache.catalina.loader.StandardClassLoader.<clinit>(StandardClassLoader.java:207)
at org.apache.catalina.startup.ClassLoaderFactory.createClassLoader(ClassLoaderFactory.java:189)
at org.apache.catalina.startup.Bootstrap.createClassLoader(Bootstrap.java:160)
at org.apache.catalina.startup.Bootstrap.initClassLoaders(Bootstrap.java:104)
at org.apache.catalina.startup.Bootstrap.init(Bootstrap.java:193)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:399)
Caused by: org.apache.commons.logging.LogConfigurationException: org.apache.commons.logging.LogConfigurationException: java.lang.NullPointerException (Caused by java.lang.NullPointerException) (Caused by org.apache.commons.logging.LogConfigurationException: java.lang.NullPointerException (Caused by java.lang.NullPointerException))
at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:543)
at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:235)
at org.apache.commons.logging.impl.LogFactoryImpl.getInstance(LogFactoryImpl.java:209)
at org.apache.commons.logging.LogFactory.getLog(LogFactory.java:351)
at org.apache.tomcat.util.compat.JdkCompat.<clinit>(JdkCompat.java:55)
... 6 more
Caused by: org.apache.commons.logging.LogConfigurationException: java.lang.NullPointerException (Caused by java.lang.NullPointerException)
at org.apache.commons.logging.impl.LogFactoryImpl.getLogConstructor(LogFactoryImpl.java:397)
at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:529)
... 10 more
Caused by: java.lang.NullPointerException
at org.apache.commons.logging.impl.LogFactoryImpl.getLogConstructor(LogFactoryImpl.java:374)
... 11 more
Is the Classpath incomplete?
Thank you for your help in advance.
Tobias
|
|
 |
 |
 |
 |
|
 |
 |
 |
 |
Copyright © 1999-2008, OW2 Consortium | contact | webmaster.