bugzilla | 1 Dec 13:41
Picon
Favicon

DO NOT REPLY [Bug 44000] - After Adding tomcat service and start tomcat service is using 50% CPU

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=44000>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=44000

archita.vakharia <at> einfochips.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|WORKSFORME                  |

------- Additional Comments From archita.vakharia <at> einfochips.com  2007-12-01 04:41 -------
Tomcat version is 5.0. But interesting thing is, after first run, when I start 
tomcat service again. It works fine with 0% CPU. Please do needful.

--

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
Sergey Vidyuk | 1 Dec 14:24
Picon

Fwd: Tomcat Dependency Graph

---------- Forwarded message ----------
From: Sergey Vidyuk <svidyuk <at> gmail.com>
Date: Dec 1, 2007 4:02 PM
Subject: Tomcat Dependency Graph
To: dev <at> tomcat.apache.org

Hi Tomcat Developers!
I'm contributor in the Apache Software Foundation's GHOP Contest and
working on issue
19(http://code.google.com/p/google-highly-open-participation-asf/issues/detail?id=19)
I've plan to write scripts that generate tomcat dependency for jars
and classes and submit it to you.
Can you explain how you would like to see it and who can help me with
details about that task?

With regards,Sergey
Johnny Kewl | 1 Dec 14:55
Picon
Favicon

Compliments Of The Season

---------------------------------------------------------------------------
HARBOR: http://coolharbor.100free.com/index.htm
Now Tomcat is also a cool pojo application server
---------------------------------------------------------------------------

Its that time of year again, things getting quiet and its time to log off and head for the beach.
May all you Tomcat - ers have a great festive season.

You guys/gals make these mailing lists the best on the web.
Have a good one.
Yoav Shapira | 1 Dec 16:14
Picon
Favicon
Gravatar

Re: Tomcat Dependency Graph

Sergey,

On Dec 1, 2007 8:24 AM, Sergey Vidyuk <svidyuk <at> gmail.com> wrote:
> I've plan to write scripts that generate tomcat dependency for jars and classes and submit it to you.
> Can you explain how you would like to see it and who can help me with
> details about that task?

This entire list (dev <at> tomcat.apache.org) is open to you and we can
help you.  Please subscribe to the list by following the directions at
http://tomcat.apache.org/lists.html#tomcat-dev, if you haven't
already.

As for the format of the scripts and the resulting output: it's mostly
up to you.  We run all our scripts on Linux, and we use Ant for
building Tomcat.  So an Ant build.xml file that generates the
dependency graphs would be great.

Personally, I am a big fan of GraphViz (http://www.graphviz.org/) for
this sort of task.  I think it's a good candidate for three reasons.
First, it's free and easy to use.  Second, it's designed for and thus
it's excellent at displaying very large graphs with many dependencies.
 Third, it lets you separate the graph structure from the output.
That way your Ant script can just output the .dot file that GraphViz
takes as an input.

However, that's just one tool.  Like I said, the choice is yours.  If
you prefer another tool, that's fine.

Yoav
(Continue reading)

bugzilla | 1 Dec 17:32
Picon
Favicon

DO NOT REPLY [Bug 44000] - After Adding tomcat service and start tomcat service is using 50% CPU

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=44000>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=44000

markt <at> apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |WORKSFORME

------- Additional Comments From markt <at> apache.org  2007-12-01 08:32 -------
Note that 5.0 isn't supported any more.

--

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
markt | 1 Dec 19:26
Picon
Favicon
Gravatar

svn commit: r600177 - in /tomcat/trunk/java/org/apache/catalina/manager: HTMLManagerServlet.java LocalStrings.properties

Author: markt
Date: Sat Dec  1 10:26:13 2007
New Revision: 600177

URL: http://svn.apache.org/viewvc?rev=600177&view=rev
Log:
Fix bug 43611. Provide an error message if user tries to upload a war for a context defined in server.xml
rather than failing silently.

Modified:
    tomcat/trunk/java/org/apache/catalina/manager/HTMLManagerServlet.java
    tomcat/trunk/java/org/apache/catalina/manager/LocalStrings.properties

Modified: tomcat/trunk/java/org/apache/catalina/manager/HTMLManagerServlet.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/manager/HTMLManagerServlet.java?rev=600177&r1=600176&r2=600177&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/manager/HTMLManagerServlet.java (original)
+++ tomcat/trunk/java/org/apache/catalina/manager/HTMLManagerServlet.java Sat Dec  1 10:26:13 2007
@@ -228,6 +228,12 @@
                     path = "/" + basename;
                 }

+                if ((host.findChild(path) != null) && !isDeployed(path)) {
+                    message = sm.getString
+                        ("htmlManagerServlet.deployUploadInServerXml", war);
+                    break;
+                }
+
                 if (!isServiced(path)) {
                     addServiced(path);
(Continue reading)

markt | 1 Dec 19:32
Picon
Favicon
Gravatar

svn commit: r600178 - /tomcat/current/tc5.5.x/STATUS.txt

Author: markt
Date: Sat Dec  1 10:32:02 2007
New Revision: 600178

URL: http://svn.apache.org/viewvc?rev=600178&view=rev
Log:
Propose fix for 43611

Modified:
    tomcat/current/tc5.5.x/STATUS.txt

Modified: tomcat/current/tc5.5.x/STATUS.txt
URL: http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS.txt?rev=600178&r1=600177&r2=600178&view=diff
==============================================================================
--- tomcat/current/tc5.5.x/STATUS.txt (original)
+++ tomcat/current/tc5.5.x/STATUS.txt Sat Dec  1 10:32:02 2007
@@ -130,3 +130,10 @@
   http://svn.apache.org/viewvc?rev=599914&view=rev
   +1: markt
   -1:
+
+* Fix http://issues.apache.org/bugzilla/show_bug.cgi?id=43611
+  Provide an error message when trying to upload a war if the context is defined
+  in server.xml
+  http://svn.apache.org/viewvc?rev=600177&view=rev
+  +1: markt
+  -1:
\ No newline at end of file
markt | 1 Dec 19:32
Picon
Favicon
Gravatar

svn commit: r600179 - /tomcat/tc6.0.x/trunk/STATUS.txt

Author: markt
Date: Sat Dec  1 10:32:10 2007
New Revision: 600179

URL: http://svn.apache.org/viewvc?rev=600179&view=rev
Log:
Propose fix for 43611

Modified:
    tomcat/tc6.0.x/trunk/STATUS.txt

Modified: tomcat/tc6.0.x/trunk/STATUS.txt
URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=600179&r1=600178&r2=600179&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/STATUS.txt (original)
+++ tomcat/tc6.0.x/trunk/STATUS.txt Sat Dec  1 10:32:10 2007
@@ -64,3 +64,10 @@
   http://svn.apache.org/viewvc?rev=599914&view=rev
   +1: markt
   -1:
+
+* Fix http://issues.apache.org/bugzilla/show_bug.cgi?id=43611
+  Provide an error message when trying to upload a war if the context is defined
+  in server.xml
+  http://svn.apache.org/viewvc?rev=600177&view=rev
+  +1: markt
+  -1:
bugzilla | 1 Dec 19:32
Picon
Favicon

DO NOT REPLY [Bug 43611] - autodeployment with unpackWARs="true" does not work, when a context for that war file exists in server.xml

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=43611>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=43611

------- Additional Comments From markt <at> apache.org  2007-12-01 10:32 -------
This is fixed in trunk - by providing an error message if you try and upload a
file when the associated context is defined in server.xml

I have proposed the fix for back-porting to 6.0.x and 5.5.x

--

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
Mladen Turk | 1 Dec 19:49
Picon
Favicon
Gravatar

Re: Fwd: Tomcat Dependency Graph

Sergey Vidyuk wrote:
> 
> Hi Tomcat Developers!
> I'm contributor in the Apache Software Foundation's GHOP Contest and
> working on issue
> 19(http://code.google.com/p/google-highly-open-participation-asf/issues/detail?id=19)

Excellent!

> I've plan to write scripts that generate tomcat dependency for jars
> and classes and submit it to you.
> Can you explain how you would like to see it and who can help me with
> details about that task?
> 

Like Yoav said, tool you choose is irrelevant.
However, it would be good to be reproduceable.
Also, finding things like multiple classes inside
different jars (if any) and jar manifest
(particularly versions) tracking would be cool to have.

Regards,
Mladen

Gmane