Re: Tomcat problem under Win2008

2015-04-15 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Germán, On 4/15/15 7:22 AM, Germán Biozzoli wrote: We have been using a very well know instittutional repository app ( DSpace 1.7x) for almost 2 years working over Windows 2008 / Tomcat 6 wihout so many problems. After upgrading the platform to

Re: Tomcat problem with shutdown (thank)

2014-10-28 Thread Bipin Jethwani
Port 8080 might not be open from you cloud VM. -Bipin On Tue, Oct 28, 2014 at 2:23 AM, Res Aerea s.r.l. - Accounts accou...@resaerea.com wrote: Hi all, i cannot connect via browser and shutdown to my Tomcat (is installed in a cloud server), 1) In my cloud is Ubuntu LTS 12.04; 2) There is

Re: Tomcat problem with shutdown (thank)

2014-10-28 Thread Mark Thomas
On 27/10/2014 20:53, Res Aerea s.r.l. - Accounts wrote: Hi all, i cannot connect via browser and shutdown to my Tomcat (is installed in a cloud server), 1) In my cloud is Ubuntu LTS 12.04; 2) There is Java 1.8.0_25; 3) There is Tomcat 8.0.14; 4) I can connect via ssh to my server

Re: Tomcat problem

2008-11-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Slav, Slav Inger wrote: I saw your reply (on tomcat-user list) to a person who was having trouble with Tomcat and SSL. Please keep on-topic messages on the list. I have cc'd the list for their edification. Could you please elaborate on how to

Re: Tomcat problem on a multiple CPU system

2008-05-06 Thread Leon Rosenberg
] Sent: 4 mai 2008 23:00 To: Tomcat Users List Subject: Re: Tomcat problem on a multiple CPU system Can you describe how you open the 8 browser windows and what browser you are using? I ask because those 8 browser windows may be coming from one process and using at most 2 connections

RE: Tomcat problem on a multiple CPU system

2008-05-05 Thread Gilbert, Antoine
I open 8 IE on a remote computer, basically once a JSP is called, the browser is just waiting the process to be done. -Original Message- From: David Smith [mailto:[EMAIL PROTECTED] Sent: 4 mai 2008 23:00 To: Tomcat Users List Subject: Re: Tomcat problem on a multiple CPU system Can you

Re: Tomcat problem on a multiple CPU system

2008-05-05 Thread Mark Thomas
Gilbert, Antoine wrote: I open 8 IE on a remote computer, basically once a JSP is called, the browser is just waiting the process to be done. Use ieHttpHeaders, the AccessLogValve or similar to check when the requests are actually being sent. I suspect that, as David suggested that you have

RE: Tomcat problem on a multiple CPU system

2008-05-05 Thread Gilbert, Antoine
- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: 5 mai 2008 07:26 To: Tomcat Users List Subject: Re: Tomcat problem on a multiple CPU system Gilbert, Antoine wrote: I open 8 IE on a remote computer, basically once a JSP is called, the browser is just waiting the process to be done. Use

Re: Tomcat problem on a multiple CPU system

2008-05-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Gilbert, Gilbert, Antoine wrote: | My english is not very good, I'll try to explain again | | For example, my test outside of Tomcat | | for(int i=0;i8;i++){ | Thread t = new Thread(new Runner()); | t.setDaemon(true); |

Re: Tomcat problem on a multiple CPU system

2008-05-04 Thread Alan Chaney
Hi Antoine The thing to remember is that this is a system which has (at least) four main parts: 1. Tomcat 2. The operating system 3. A network connection 4. Your application (and potentially) 5. A database (but you didn't mention that) Here are some questions. 1. How do you make the

Re: Tomcat problem on a multiple CPU system

2008-05-04 Thread Yuval Perlov
Perhaps you have some contention between the threads or intensive IO. Can you elaborate a little about the servlet job? Time it takes, kind of processing it does, etc. Yuval Perlov R-U-ON On May 4, 2008, at 11:21 PM, Gilbert, Antoine wrote: Hi I have a 2x quad core (8 cpu units)

RE: Tomcat problem on a multiple CPU system

2008-05-04 Thread Gilbert, Antoine
my tomcat use efficiently all my CPU. So the big question, why these 8 processes run betters than these 8 process within Tomcat ? -Original Message- From: Alan Chaney [mailto:[EMAIL PROTECTED] Sent: 4 mai 2008 17:33 To: Tomcat Users List Subject: Re: Tomcat problem on a multiple CPU

RE: Tomcat problem on a multiple CPU system

2008-05-04 Thread Gilbert, Antoine
-Original Message- From: Gilbert, Antoine Sent: 4 mai 2008 20:20 To: Tomcat Users List Subject: RE: Tomcat problem on a multiple CPU system Well, each process is a image rendering process. But my point is, if I launch 8 threads directly in a JVM outside of tomcat, it run faster and use 100

Re: Tomcat problem on a multiple CPU system

2008-05-04 Thread David Smith
than these 8 process within Tomcat ? -Original Message- From: Alan Chaney [mailto:[EMAIL PROTECTED] Sent: 4 mai 2008 17:33 To: Tomcat Users List Subject: Re: Tomcat problem on a multiple CPU system Hi Antoine The thing to remember is that this is a system which has (at least) four

Re: Tomcat - Problem Loading page.

2008-02-10 Thread David Smith
Provide details please. This question is completely unanswerable as is. Tomcat version? Java version? OS? Actual error on the page? Full error stack trace in the logs? Also take a look at How To Ask Questions The Smart Way - http://www.catb.org/~esr/faqs/smart-questions.html --David

Re: Tomcat Problem file not found

2008-01-31 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tony, Tony Chamberlain wrote: | No, it is not time sensitive. It is command sensitive (if that makes | sense). | Clicking a certain button in a jsp form Then Tomcat should not have crashed. Did the JVM actually go down, or did you just get an

Re: Tomcat Problem file not found

2008-01-30 Thread Tony Chamberlain
No, it is not time sensitive. It is command sensitive (if that makes sense). Clicking a certain button in a jsp form On Wed, Jan 30, 2008 at 5:06 PM, Christopher Schultz [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Tony, Tony Chamberlain wrote: | Now granted

RE: tomcat problem

2007-10-05 Thread Omar Chebaro
Dear, thank you David and Christopher for your replies, the servlet is already packaged, I put my class in a jar file and put it in tomcat_home/webapps/Servlet_HTML/WEB-INF/lib/and i made the necessary modification to the web.xml file servlet servlet-nameBrowseRegions/servlet-name

Re: tomcat problem

2007-10-05 Thread David Smith
Check your logs for messages related to your servlet starting when your webapp started. There is most likely another exception or complaint from tomcat regarding your servlet. --David Omar Chebaro wrote: Dear, thank you David and Christopher for your replies, the servlet is already

RE: tomcat problem

2007-10-04 Thread Omar Chebaro
Dear,I have an Apache Tomcat/6.0.14 installed on the latest version of ubuntu osI am trying to add a servlet to the example application, I put my class in a jar file and put it in tomcat_home/webapps/examples/WEB-INF/lib/and i made the necessary modification to the web.xml fileand when I

Re: tomcat problem

2007-10-04 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Omar, Omar Chebaro wrote: I am trying to add a servlet to the example application, I put my class in a jar file and put it in tomcat_home/webapps/examples/WEB-INF/lib/ What was the package you used for your servlet? and i made the necessary

Re: tomcat problem

2007-10-04 Thread David Smith
The first exception below implies you didn't put the servlet in a package. Packageless classes have been strongly discouraged since tomcat 3 (/ancient/ history). You might want to fix that first and be sure to drop any future attempt at setting CLASSPATH. --David Omar Chebaro wrote: Dear,I