[aplaws - Developing on APLAWS+] Bootstrap error on ccm start

View: New views
10 Messages — Rating Filter:   Alert me  

[aplaws - Developing on APLAWS+] Bootstrap error on ccm start

by Aplaws - Dev mailing list :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=4480819
By: lbcfrancois

Hi,

It's been a while I haven't installed a fresh rpm Aplaws.
And I am having this error when I run ccm start after installing a "production"
aplaws

Bootstrap: Class loader creation threw exception
java.lang.NoSuchMethodError:
org.apache.catalina.startup.ClassLoaderFactory.setDebug(I)V
        at com.arsdigita.tools.catalina.startup.Bootstrap.main(Unknown Source)

My setup is as follow:
On a Centos 5 server I have installed  Sun JDK 1.5.0_09 (using sun-compat rpm
from jpp), Tomcat 5.5.23 (tar.gz from Apache).
I have setup all the environment variable JAVA_HOME, CLASSPATH, PATH, CATALINA_HOME,
TOMCAT_HOME
I can start tomcat, access it and run servlet and jsp examples on port 8080
using $CATALINA_HOME/bin/startup.sh

I have installed Aplaws rpms, ran ccm load bundle and ccm hostinit without any
problems

I have checked any my ccm-*jar are deployed in
/var/lib/ccm/webapps/WEB-INF/lib/

Any ideas on what I missed?

Cheers,
Francois




______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=368401

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Aplaws-devel mailing list
Aplaws-devel@...
https://lists.sourceforge.net/lists/listinfo/aplaws-devel

[aplaws - Developing on APLAWS+] RE: Bootstrap error on ccm start

by Aplaws - Dev mailing list :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=4480833
By: apevec

ccm start/stop support only Tomcat4
You could modify deploy2jboss.sh to work with Tomcat5.5/6 (adjust shared class
loader path etc.)

Alan


______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=368401

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Aplaws-devel mailing list
Aplaws-devel@...
https://lists.sourceforge.net/lists/listinfo/aplaws-devel

[aplaws - Developing on APLAWS+] RE: Bootstrap error on ccm start

by Aplaws - Dev mailing list :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=4482175
By: pboy

Francois,

just in case you will not use Tomcat 5.5 & deploy2jboss.sh you may download
the new Installation Guide from
https://aplaws.108.redhat.com/servlets/ProjectDocumentList?folderID=165&expandFo
lder=165&folderID=0
and give feedback for improvements  :-)


Peter

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=368401

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Aplaws-devel mailing list
Aplaws-devel@...
https://lists.sourceforge.net/lists/listinfo/aplaws-devel

[aplaws - Developing on APLAWS+] RE: Bootstrap error on ccm start

by Aplaws - Dev mailing list :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=4482777
By: britsp


We have been using Aplaws with Tomcat 5.5 without problems for 2 years.

The latest version of the code shouldn't produce that error. If I remember correctly
Sebastian fixed it by catching the exception and allowing the code to continue
:)
So, we now get this on our error log, but the code continues to run fine...

Error calling ClassLoaderFactory.setDebug(debug). This is probably because this
method was removed in Tomcat 5.5, so you can probably ignore it:
java.lang.NoSuchMethodError:
org.apache.catalina.startup.ClassLoaderFactory.setDebug(I)V
        at com.arsdigita.tools.catalina.startup.Bootstrap.main(Unknown Source)



______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=368401

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Aplaws-devel mailing list
Aplaws-devel@...
https://lists.sourceforge.net/lists/listinfo/aplaws-devel

[aplaws - Developing on APLAWS+] RE: Bootstrap error on ccm start

by Aplaws - Dev mailing list :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=4741662
By: infoaxon

Does any body know whether aplaws 1.0.4 works on Tomcat 5 or not? Its not clear
which path needs to be changed. What is the current role of deploy2jboss.sh?
It seems more to do with deployment to JBOSS AS instead of Tomcat. What i find
confusing is the reason why this file needs to be modified?

regards
Shubham

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=368401

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Aplaws-devel mailing list
Aplaws-devel@...
https://lists.sourceforge.net/lists/listinfo/aplaws-devel

[aplaws - Developing on APLAWS+] RE: Bootstrap error on ccm start

by Aplaws - Dev mailing list :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=4742622
By: shawnlane

Yes we have 1.04 running on Tomcat 5.

I guess the jboss script is the script to deploy in jboss container. (tomcat
under the hood)

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=368401

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Aplaws-devel mailing list
Aplaws-devel@...
https://lists.sourceforge.net/lists/listinfo/aplaws-devel

[aplaws - Developing on APLAWS+] RE: Bootstrap error on ccm start

by Aplaws - Dev mailing list :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=4742627
By: shawnlane

see Stece Pugh's message for details

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=368401

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Aplaws-devel mailing list
Aplaws-devel@...
https://lists.sourceforge.net/lists/listinfo/aplaws-devel

[aplaws - Developing on APLAWS+] RE: Bootstrap error on ccm start

by Aplaws - Dev mailing list :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=4745270
By: terry_permeance

Hi Peter,

Can you please publish the current location of these documents? The above link
redirects to the fedora project.

Thanks,
Terry

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=368401

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Aplaws-devel mailing list
Aplaws-devel@...
https://lists.sourceforge.net/lists/listinfo/aplaws-devel

[aplaws - Developing on APLAWS+] RE: Bootstrap error on ccm start

by Aplaws - Dev mailing list :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=4752385
By: pboy

Terry,

I asked Alan some weeks ago how to make the documentation accessible by the
users. There seems no solution available. I will upload the docs to our own
server and publish the link as soon as we are finished.

If you would like to read the text I can sent it via email.


Peter



______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=368401

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Aplaws-devel mailing list
Aplaws-devel@...
https://lists.sourceforge.net/lists/listinfo/aplaws-devel

[aplaws - Developing on APLAWS+] RE: Bootstrap error on ccm start

by Aplaws - Dev mailing list :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=4758454
By: pboy

Hi Terry,

I've uploaded the current new documentation files to our project site. You can
download it from

http://ccm.barkhof.uni-bremen.de/ccm/navigation/our-contributions/documentation-
improvement/


Peter

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=368401

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Aplaws-devel mailing list
Aplaws-devel@...
https://lists.sourceforge.net/lists/listinfo/aplaws-devel
LightInTheBox - Buy quality products at wholesale price