unpackWARs=false securitymanager problem tomcat 8.0.18

2015-02-10 Thread Gernot
Hi! I'm using Tomcat 8.0.18. I've a webapp myapp.war which is deployed at context path some/path/myapp and unpackWARs is set to false. That means, I have a conf/Catalina/localhost/some#path#myapp.xml with Context docBase=/somewhere/myapp.war... Running this app with Tomcat 8.0.18 without

Re: a problem: tomcat exits unexpectedly

2014-10-06 Thread bo zhao
Warnier, Thank you for your reply. AbstractScheduleTaskProcess class use the ExecutorService to create thread and runs some custom tasks. These tasks will be done in a few seconds. Sample code is following: for (final ListT list : lists) { executor.submit(new

Re: a problem: tomcat exits unexpectedly

2014-10-06 Thread André Warnier
bo zhao wrote: Warnier, Thank you for your reply. AbstractScheduleTaskProcess class use the ExecutorService to create thread and runs some custom tasks. These tasks will be done in a few seconds. Sample code is following: for (final ListT list : lists) {

Re: a problem: tomcat exits unexpectedly

2014-09-28 Thread André Warnier
bo zhao wrote: I had modified the os ulimit parameter: open files and max processes, after that, Tomcat does't exit unexpectedly, and the log of Tomcat have not the ... pause, ... init. It seems work normally. But I still don't know the reason. I want to know if the two parameter is the key to

Re: a problem: tomcat exits unexpectedly

2014-09-27 Thread bo zhao
I had modified the os ulimit parameter: open files and max processes, after that, Tomcat does't exit unexpectedly, and the log of Tomcat have not the ... pause, ... init. It seems work normally. But I still don't know the reason. I want to know if the two parameter is the key to solve probelm and

Re: a problem: tomcat exits unexpectedly

2014-09-19 Thread Ognjen Blagojevic
Zhao, On 19.9.2014 3:42, bo zhao wrote: but I can't find any error message in the log? what causes the tomcat to pause and stop? One of the suspects for restarts and shutdown seems to be the class com.jd.clover.center.service.AbstractScheduleTaskProcess, as there is a log message regarding

a problem: tomcat exits unexpectedly

2014-09-18 Thread bo zhao
Hi folks, we are facing a serious problem with our tomcat(6.0.33 on centos 6.3 with jre 6.0.25) which shuts itself downafter some time of running. We start tomcat at 09:42, but at 11:35, tomcat pause temporarily, then it reinit the ApplicationContext. detail logs: ... custom

Re: PDF Download problem tomcat = 7.0.27

2012-10-31 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Johnny, On 10/30/12 3:44 PM, Johnny Six wrote: It looks like Tomcat7 is munging the content-type header. The correct response header should be: Content-Type: multipart/byteranges; boundary=CATALINA_MIME_BOUNDARY good Content-Type:

Re: PDF Download problem tomcat = 7.0.27

2012-10-30 Thread Johnny Six
connectionTimeout=2 redirectPort=8443 compression=off/ Regards Michele Maè -- View this message in context: http://old.nabble.com/PDF-Download-problem-tomcat-%3E%3D-7.0.27-tp34229642p34621346.html Sent from the Tomcat - User mailing list archive

RE: PDF Download problem tomcat = 7.0.27

2012-10-30 Thread Caldarale, Charles R
From: Johnny Six [mailto:johnny6che...@gmail.com] Subject: Re: PDF Download problem tomcat = 7.0.27 It looks like Tomcat7 is munging the content-type header. The correct response header should be: Content-Type: multipart/byteranges; boundary=CATALINA_MIME_BOUNDARY good Content-Type

PDF Download problem tomcat = 7.0.27

2012-09-24 Thread Ted Smith
Hello: I just upgraded to Tomcat 7.0.29 from Tomcat 6 and encountered the exact issue as described in http://comments.gmane.org/gmane.comp.jakarta.tomcat.user/223299 Is there any workaround? I would be fine if there is an option to disable the range handling function so that Tomcat would

Re: PDF Download problem tomcat = 7.0.27

2012-09-24 Thread Mark Thomas
Ted Smith ted_smi...@verizon.net wrote: Hello: I just upgraded to Tomcat 7.0.29 from Tomcat 6 and encountered the exact issue as described in http://comments.gmane.org/gmane.comp.jakarta.tomcat.user/223299 Is there any workaround? I would be fine if there is an option to disable the range

Re: PDF Download problem tomcat = 7.0.27

2012-09-24 Thread Ted Smith
Thanks. Does it mean this bug can be worked around by setting its init parameter useAcceptRanges to the value of false? BTW I found the following that is acked by Adobe http://helpx.adobe.com/acrobat/kb/pdf-files-dont-display-some.html On 9/24/2012 4:26 PM, Mark Thomas wrote: Ted Smith

Re: PDF Download problem tomcat = 7.0.27

2012-09-24 Thread Konstantin Kolinko
2012/9/25 Ted Smith ted_smi...@verizon.net: Thanks. Does it mean this bug can be worked around by setting its init parameter useAcceptRanges to the value of false? BTW I found the following that is acked by Adobe http://helpx.adobe.com/acrobat/kb/pdf-files-dont-display-some.html

Re: PDF Download problem tomcat = 7.0.27

2012-08-01 Thread Michele Mase'
Me too: 1. I suspect that the content is requested not by IE, but by the Adobe Acrobat plugin. I was unable to view from the changelog of tomcat releases which could be the cause of this strange behaviour. Michele MAsè On Tue, Jul 31, 2012 at 11:32 PM, Konstantin Kolinko knst.koli...@gmail.com

Re: PDF Download problem tomcat = 7.0.27

2012-08-01 Thread André Warnier
Konstantin Kolinko wrote: 2012/8/1 Jose María Zaragoza demablo...@gmail.com: The Content-Length header in the above 206 response is not from Tomcat. Tomcat's DefaultServlet does not calculate the whole size of the parts and does not set content-length, and the file size is much more than fits

Re: PDF Download problem tomcat = 7.0.27

2012-08-01 Thread Pid
On 01/08/2012 08:54, André Warnier wrote: Konstantin Kolinko wrote: 2012/8/1 Jose María Zaragoza demablo...@gmail.com: The Content-Length header in the above 206 response is not from Tomcat. Tomcat's DefaultServlet does not calculate the whole size of the parts and does not set

Re: PDF Download problem tomcat = 7.0.27

2012-08-01 Thread Rainer Jung
On 01.08.2012 09:54, André Warnier wrote: Konstantin Kolinko wrote: 2012/8/1 Jose María Zaragoza demablo...@gmail.com: The Content-Length header in the above 206 response is not from Tomcat. Tomcat's DefaultServlet does not calculate the whole size of the parts and does not set

Re: PDF Download problem tomcat = 7.0.27

2012-08-01 Thread Stefan Mayr
Am 31.07.2012 23:28, schrieb André Warnier: To be more explicit : my bet at this stage would be a bug in the XP+IE+Acrobat9 combination (as being the usual suspects), but a bug that gets triggered only because Tomcat 7.0.27+ send the response just a bit differently than 7.0.26. How about APR?

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread Michele Mase'
With the tomcat locally installed all works fine; the issue occurs from a linux box (rhel6.x in my situation) with tomcat 7.0.29 as the server machine and a client. Both are in lan without filtering elements. Since I'm (as now) unable to determine the root cause of the issue (the worst thing is

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread Jose María Zaragoza
2012/7/31 Michele Mase' michele.m...@gmail.com: With the tomcat locally installed all works fine; the issue occurs from a linux box (rhel6.x in my situation) with tomcat 7.0.29 as the server machine and a client. Both are in lan without filtering elements. Since I'm (as now) unable to

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread Michele Mase'
Unluckly the problem is difficult to reproduce (almost 1/10 times appears); a small script that empty the IE's cache and kill explorer.exe helped me. I used mod_proxy_ajp because the apache's logs were better for debugging purposes. The matter appears even using the http bio connector. Michele

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread André Warnier
Michele Mase' wrote: Unluckly the problem is difficult to reproduce (almost 1/10 times appears); a small script that empty the IE's cache and kill explorer.exe helped me. I used mod_proxy_ajp because the apache's logs were better for debugging purposes. The matter appears even using the http bio

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread Michele Mase'
The only way to reproduce it is (for me) without the plugin; i'm sorry ... I haven't seen what happens using a sniffer, but the X in the apache's log file tells me that the client is aborting the session, I suspect a session reset could happen. And finally, following your suggestion, a F5 helped

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread André Warnier
Michele Mase' wrote: The only way to reproduce it is (for me) without the plugin; i'm sorry ... I haven't seen what happens using a sniffer, but the X in the apache's log file tells me that the client is aborting the session, I suspect a session reset could happen. And finally, following your

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread Michele Mase'
I'm waiting for a better solution ... Maybe should a sniffer pcap help in diagnosys? Michele Masè On Tue, Jul 31, 2012 at 5:28 PM, André Warnier a...@ice-sa.com wrote: Michele Mase' wrote: The only way to reproduce it is (for me) without the plugin; i'm sorry ... I haven't seen what happens

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread André Warnier
Michele Mase' wrote: I'm waiting for a better solution ... Maybe should a sniffer pcap help in diagnosys? Wireshark is your friend. It may at least show you when the client disconnects, and maybe why. But if the problem is in the response body, I don't know if it will be very easy to find

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 André, On 7/31/12 2:49 PM, André Warnier wrote: Michele Mase' wrote: I'm waiting for a better solution ... Maybe should a sniffer pcap help in diagnosys? Wireshark is your friend. It may at least show you when the client disconnects, and

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread Jose María Zaragoza
2012/7/31 Michele Mase' michele.m...@gmail.com: I'm waiting for a better solution ... One silly question, do you have try to reproduce this issue with an upper version of PDF Library ? I know that you cannot to upgrade all clients but we can to discard a bug in this plugin And, do you have try

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread Michele Mase'
Tomorrow I'will try with wireshark hoping better results! On Tue, Jul 31, 2012 at 9:23 PM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 André, On 7/31/12 2:49 PM, André Warnier wrote: Michele Mase' wrote: I'm waiting for a

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread Michele Mase'
Since there are a lot of silly technicians that cannot utilize any browser wxcept ie, and some people told me look, before the upgrade (was tomcat 7.0.16) all worked for me and now some pdf are ko, it must work with the ancient configuration XP+IE+Acrobat9. Other brosers, like firefox or other pdf

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread Konstantin Kolinko
2012/7/31 Michele Mase' michele.m...@gmail.com: The only way to reproduce it is (for me) without the plugin; i'm sorry ... I haven't seen what happens using a sniffer, but the X in the apache's log file tells me that the client is aborting the session, I suspect a session reset could happen.

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread Jose María Zaragoza
The Content-Length header in the above 206 response is not from Tomcat. Tomcat's DefaultServlet does not calculate the whole size of the parts and does not set content-length, and the file size is much more than fits into the buffer. So it would use Transfer-Encoding: chunked in its

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread André Warnier
Konstantin Kolinko wrote: 2012/7/31 Michele Mase' michele.m...@gmail.com: The only way to reproduce it is (for me) without the plugin; i'm sorry ... I haven't seen what happens using a sniffer, but the X in the apache's log file tells me that the client is aborting the session, I suspect a

Re: PDF Download problem tomcat = 7.0.27

2012-07-31 Thread Konstantin Kolinko
2012/8/1 Jose María Zaragoza demablo...@gmail.com: The Content-Length header in the above 206 response is not from Tomcat. Tomcat's DefaultServlet does not calculate the whole size of the parts and does not set content-length, and the file size is much more than fits into the buffer. So it

PDF Download problem tomcat = 7.0.27

2012-07-30 Thread Michele Mase'
I've the following problem: the server is running tomcat 7.0.27 (but also with 7.0.28 and 7.0.29) and from the client (ie + acrobat 9) when opening some pdf docs I receive an error complaining about a network error: A network error occured while accessing this document on interntet. Would you

Re: PDF Download problem tomcat = 7.0.27

2012-07-30 Thread Konstantin Kolinko
2012/7/30 Michele Mase' michele.m...@gmail.com: I've the following problem: the server is running tomcat 7.0.27 (but also with 7.0.28 and 7.0.29) and from the client (ie + acrobat 9) when opening some pdf docs I receive an error complaining about a network error: A network error occured while

Re: PDF Download problem tomcat = 7.0.27

2012-07-30 Thread Michele Mase'
IE 6.x on my test pc, but also IE8 with other pcs. Acrobat is 9.x, 9.5.1 version, a lot of clients have this version, an upgrade is not possible for now. I've reviewed the apache access log (when the doc is served by a web server apache connected with ajp with the tomcat), the only thing I see is

Re: PDF Download problem tomcat = 7.0.27

2012-07-30 Thread Konstantin Kolinko
2012/7/30 Michele Mase' michele.m...@gmail.com: IE 6.x on my test pc, but also IE8 with other pcs. Acrobat is 9.x, 9.5.1 version, a lot of clients have this version, an upgrade is not possible for now. I've reviewed the apache access log (when the doc is served by a web server apache

Re: PDF Download problem tomcat = 7.0.27

2012-07-30 Thread André Warnier
Konstantin Kolinko wrote: ... So why a ranged request comes? A feature of Acrobat 9? I wonder what range headers are in it. If talking about IE browsers and Windows workstations, installing the Fiddler2 plugin or similar would allow to see exactly which headers are being sent by the

Re: PDF Download problem tomcat = 7.0.27

2012-07-30 Thread Jose María Zaragoza
2012/7/30 Michele Mase' michele.m...@gmail.com: IE 6.x on my test pc, but also IE8 with other pcs. Acrobat is 9.x, 9.5.1 version, a lot of clients have this version, an upgrade is not possible for now. I've reviewed the apache access log (when the doc is served by a web server apache

Re: Problem tomcat

2012-04-06 Thread Ognjen Blagojevic
Fairouz, On 4.4.2012 17:25, Fairouz Fakhfakh wrote: I use Tomcat 6 and java 5. Good to know. Send us exact versions for both. OS type and version could also be informative. I have a problem by clicking on a button to access a JSP page. Which button? If the button is on the HTML/JSP

Re: Problem tomcat

2012-04-06 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ognjen, On 4/6/12 7:15 AM, Ognjen Blagojevic wrote: Fairouz, On 4.4.2012 17:25, Fairouz Fakhfakh wrote: I use Tomcat 6 and java 5. Good to know. Send us exact versions for both. OS type and version could also be informative. I have a

Re: Problem tomcat

2012-03-20 Thread Konstantin Kolinko
configuration. Please read: http://tomcat.apache.org/lists.html#tomcat-users Also maybe matchmaker users can help you more. But the problem: Tomcat can not work and it gives me this error in the file Tomcat 6.0\logs\catalina.2012-03-20.txt: java.lang.reflect.InvocationTargetException

Re: Critical Problem Tomcat 7

2012-01-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Lau, On 1/18/12 6:52 PM, Lau Eng Huat wrote: I have a strange problem. I have deleted a servlet from the project in netbeans but the uncompile source code still says the file exist. I'll bite. What does uncomple source code mean. Did you delete

Re: Critical Problem Tomcat 7

2012-01-23 Thread Brian Burch
On 24/01/12 08:50, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Lau, On 1/18/12 6:52 PM, Lau Eng Huat wrote: I have a strange problem. I have deleted a servlet from the project in netbeans but the uncompile source code still says the file exist. I'll bite. What

Critical Problem Tomcat 7

2012-01-18 Thread Lau Eng Huat
Hi Guys, I have a strange problem. I have deleted a servlet from the project in netbeans but the uncompile source code still says the file exist. I have deleted the WEB-INF\classes and did a clean and build. Still the problems exists. Does anybody knows how to solved this problem ??? Jan 19,

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-16 Thread Alexandra Stylianidou
Thanks for everything!!!It's running now! 2011/7/15 Hassan Schroeder hassan.schroe...@gmail.com On Fri, Jul 15, 2011 at 12:26 PM, Alexandra Stylianidou alekas...@gmail.com wrote: You mean the logs(folder) from tomcat folder or the logs from console? I mean wherever your running Tomcat is

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Hassan Schroeder
On Fri, Jul 15, 2011 at 7:31 AM, Alexandra Stylianidou alekas...@gmail.com wrote: I am trying to run tomcat 7.0.16 on my mac os x 10.6.8 in order to set up the SWiM and i have problem to show the tomcat welcome screen.First,i create a folder /Library/Tomcat and put the apache file.Then i edit

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Alexandra Stylianidou
What do you mean?Logs folder is empty. 2011/7/15 Hassan Schroeder hassan.schroe...@gmail.com On Fri, Jul 15, 2011 at 7:31 AM, Alexandra Stylianidou alekas...@gmail.com wrote: I am trying to run tomcat 7.0.16 on my mac os x 10.6.8 in order to set up the SWiM and i have problem to show the

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Hassan Schroeder
On Fri, Jul 15, 2011 at 7:38 AM, Alexandra Stylianidou alekas...@gmail.com wrote: What do you mean?Logs folder is empty. That sounds pretty suspicious. Try starting using `bin/catalina.sh run` -- you should see the startup messages in the console. -- Hassan Schroeder

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Alexandra Stylianidou
I put Library/Tomcat/bin/catalina.sh run and says that:Cannot find /Library/Tomcat/Home/bin/setclasspath.sh This file is needed to run this program but this file exists. 2011/7/15 Hassan Schroeder hassan.schroe...@gmail.com On Fri, Jul 15, 2011 at 7:38 AM, Alexandra Stylianidou

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Hassan Schroeder
On Fri, Jul 15, 2011 at 7:45 AM, Alexandra Stylianidou alekas...@gmail.com wrote: I put Library/Tomcat/bin/catalina.sh run and says that:Cannot find /Library/Tomcat/Home/bin/setclasspath.sh This file is needed to run this program but this file exists. OK, so you say you have everything

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Alexandra Stylianidou
Exactly.But the problem still exists. 2011/7/15 Hassan Schroeder hassan.schroe...@gmail.com On Fri, Jul 15, 2011 at 7:45 AM, Alexandra Stylianidou alekas...@gmail.com wrote: I put Library/Tomcat/bin/catalina.sh run and says that:Cannot find /Library/Tomcat/Home/bin/setclasspath.sh This

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Hassan Schroeder
On Fri, Jul 15, 2011 at 8:20 AM, Alexandra Stylianidou alekas...@gmail.com wrote: Exactly.But the problem still exists. What problem? What does the startup logging show? -- Hassan Schroeder hassan.schroe...@gmail.com http://about.me/hassanschroeder twitter: @hassan

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Alexandra Stylianidou
It shows the message: Enterprice DB *Apache - version 2.2.16 PHP - version 5.3.3 *Server is up and running The default Apache context is *www* in the Apache installation folder 2011/7/15 Hassan Schroeder hassan.schroe...@gmail.com On Fri, Jul 15, 2011 at 8:20 AM, Alexandra Stylianidou

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Hassan Schroeder
On Fri, Jul 15, 2011 at 8:35 AM, Alexandra Stylianidou alekas...@gmail.com wrote: It shows the message: Again, what does the *console* show when you try to start Tomcat? If you already have another server running on port 8080 as the lines below seem to indicate, you can't expect to see anything

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Alexandra Stylianidou
The console doesn't show anything about tomcat.I put in the browser http://localhost:8080/; and it shows me the previous message.So,what can i do if another server runs on port 8080?Maybe the postgresql runs on that port.Thanks for your help am not an expert,i want to setup the SWiM wiki and i am

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Hassan Schroeder
On Fri, Jul 15, 2011 at 8:57 AM, Alexandra Stylianidou alekas...@gmail.com wrote: The console doesn't show anything about tomcat. Are you saying when you type `bin/catalina.sh run` in a console window that absolutely nothing happens?? There is *no* output whatsoever? I find that very hard to

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Alexandra Stylianidou
When i type Alexandras-MacBook-Pro:bin alekastyl$ cd /Library/Tomcat Alexandras-MacBook-Pro:Tomcat alekastyl$ export CATALINA_HOME=`pwd` Alexandras-MacBook-Pro:Tomcat alekastyl$ ./bin/catalina.sh run in terminal the output is: Using CATALINA_BASE: /Library/Tomcat Using CATALINA_HOME:

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Hassan Schroeder
On Fri, Jul 15, 2011 at 9:14 AM, Alexandra Stylianidou alekas...@gmail.com wrote: When i type Alexandras-MacBook-Pro:bin alekastyl$ cd /Library/Tomcat Alexandras-MacBook-Pro:Tomcat alekastyl$ export CATALINA_HOME=`pwd` Alexandras-MacBook-Pro:Tomcat alekastyl$ ./bin/catalina.sh run in terminal

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Alexandra Stylianidou
Thank you for your tips.So, i have to change the tomcat port from 8080 into another port?Is it easy to do it? 2011/7/15 Hassan Schroeder hassan.schroe...@gmail.com On Fri, Jul 15, 2011 at 9:14 AM, Alexandra Stylianidou alekas...@gmail.com wrote: When i type Alexandras-MacBook-Pro:bin

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Hassan Schroeder
On Fri, Jul 15, 2011 at 9:56 AM, Alexandra Stylianidou alekas...@gmail.com wrote: Thank you for your tips.So, i have to change the tomcat port from 8080 into another port?Is it easy to do it? Yes. Reading the documentation is also a good habit to get into :-) -- Hassan Schroeder

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Alexandra Stylianidou
I tried to change the port from 8080 to another port (e.g.9000) and type localhost:9000 but still nothing.What went wrong? 2011/7/15 Hassan Schroeder hassan.schroe...@gmail.com On Fri, Jul 15, 2011 at 9:56 AM, Alexandra Stylianidou alekas...@gmail.com wrote: Thank you for your tips.So, i

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Hassan Schroeder
On Fri, Jul 15, 2011 at 10:42 AM, Alexandra Stylianidou alekas...@gmail.com wrote: I tried to change the port from 8080 to another port (e.g.9000) and type localhost:9000 but still nothing.What went wrong? I don't know. What do your logs say?hint -- Hassan Schroeder

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Alexandra Stylianidou
You mean the logs(folder) from tomcat folder or the logs from console?I also saw that port 8080 is used by http-alt. 2011/7/15 Hassan Schroeder hassan.schroe...@gmail.com On Fri, Jul 15, 2011 at 10:42 AM, Alexandra Stylianidou alekas...@gmail.com wrote: I tried to change the port from 8080

Re: Problem-Tomcat 7.0.16 on mac os 10.6.8

2011-07-15 Thread Hassan Schroeder
On Fri, Jul 15, 2011 at 12:26 PM, Alexandra Stylianidou alekas...@gmail.com wrote: You mean the logs(folder) from tomcat folder or the logs from console? I mean wherever your running Tomcat is writing its logging messages. You said you reconfigured the connector port and started it. Where are

Sticky Session Problem Tomcat 6.0.29

2011-03-10 Thread Richard Nduka
Hi Friends, I have recently configured sticky sessions in Tomcat 6.0.29 but i have found out that in some cases when i log into the application with several instances of tomcat running i get redirected to the login page. It looks as though that Tomcat is terminating the sessions. Env === Tomcat

Re: Sticky Session Problem Tomcat 6.0.29

2011-03-10 Thread Thomas Freitag
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello Richard, On 03/10/2011 01:28 PM, Richard Nduka wrote: I have recently configured sticky sessions in Tomcat 6.0.29 but i have found out that in some cases when i log into the application with several instances of tomcat running i get

Re: Installing problem : Tomcat

2009-04-27 Thread Pid
André Warnier wrote: parin123 wrote: Hello Everyone, I am trying to install Tomcat on Ubuntu Linux and here is the problem ... Hi. I am taking advantage of the fact that Chuck is on holiday, and maybe not watching this forum with his accustomed eagle eye. Considering that this is

Installing problem : Tomcat

2009-04-26 Thread parin123
Hello Everyone, I am trying to install Tomcat on Ubuntu Linux and here is the problem When I run make from jsvc-src directory I get following error message... gcc -g -O2 -DOS_LINUX -DDSO_DLFCN -DCPU=\amd64\ -I/usr/bin/include -I/usr/bin/include/linux -Wall -Wstrict-prototypes -c java.c -o

Re: Installing problem : Tomcat

2009-04-26 Thread André Warnier
parin123 wrote: Hello Everyone, I am trying to install Tomcat on Ubuntu Linux and here is the problem ... Hi. I am taking advantage of the fact that Chuck is on holiday, and maybe not watching this forum with his accustomed eagle eye. Considering that this is Ubuntu, and considering

Re: [Problem]Tomcat 6.x with Active Directory on Windows Server 2003

2008-11-09 Thread Hisham Farahat
in the attachment, the testuser1 is member of TestGroup, and TestGroup is already defined in web.xml, I wonder any further configuration or debug I shoule do? http://www.nabble.com/file/p20375746/adtest.rar adtest.rar -- View this message in context: http://www.nabble.com/-Problem-Tomcat

Re: [Problem]Tomcat 6.x with Active Directory on Windows Server 2003

2008-11-09 Thread Vickey
/file/p20375746/adtest.rar adtest.rar -- View this message in context: http://www.nabble.com/-Problem-Tomcat-6.x-with-Active-Directory-on-Windows-Server-2003-tp20375746p20413691.html Sent from the Tomcat - User mailing list archive at Nabble.com

[Problem]Tomcat 6.x with Active Directory on Windows Server 2003

2008-11-06 Thread Vickey
/p20375746/adtest.rar adtest.rar -- View this message in context: http://www.nabble.com/-Problem-Tomcat-6.x-with-Active-Directory-on-Windows-Server-2003-tp20375746p20375746.html Sent from the Tomcat - User mailing list archive at Nabble.com

Re: [Problem]Tomcat 6.x with Active Directory on Windows Server 2003

2008-11-06 Thread Vickey
another thing, authentication on IIS and Active Directory with the same users and groups is successfully passed. -- View this message in context: http://www.nabble.com/-Problem-Tomcat-6.x-with-Active-Directory-on-Windows-Server-2003-tp20375746p20375888.html Sent from the Tomcat - User mailing

Re: JNDI realm strange problem(Tomcat 6.0.16)

2008-06-23 Thread Kumar Gaurav Srivastava
hello chris, yes, our ldap server and tomcat server are both up for 24 hours and 7 days. yes, restarting tomcat server, problem vanishes. thank you, On Fri, 2008-06-20 at 10:20 -0400, Christopher Schultz wrote: king again? -- Kumar Gaurav Srivastava A B Technologies SDF

Re: JNDI realm strange problem(Tomcat 6.0.16)

2008-06-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kuman, Kumar Gaurav Srivastava wrote: | i have my realm configuration in server.xml, every thing is fine i can | login. but when i try to login the next morning it gives error | | SEVERE: Exception performing authentication |

JNDI realm strange problem(Tomcat 6.0.16)

2008-06-19 Thread Kumar Gaurav Srivastava
hello , i will be really grateful if someone can help me on this. i have my realm configuration in server.xml, every thing is fine i can login. but when i try to login the next morning it gives error SEVERE: Exception performing authentication javax.naming.NoInitialContextException: Need to

problem: tomcat build fails. No 'execute()' method on jspc

2006-12-26 Thread Bill Milbratz
Hi, I'm trying to build tomcat 5.5.028 from source. It fails on the 'build-webapps-precompile' due to a jsp task. I get this error: build-webapps-precompile: No public execute() in class org.apache.jasper.JspC It looks like the build-process compiles org.apache.jasper.JspC. And the

Re: problem: tomcat build fails. No 'execute()' method on jspc

2006-12-26 Thread Martin Gainty
reproduire. - Original Message - From: Bill Milbratz [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Tuesday, December 26, 2006 11:29 AM Subject: problem: tomcat build fails. No 'execute()' method on jspc Hi, I'm trying to build tomcat 5.5.028 from source

RE: problem: tomcat build fails. No 'execute()' method on jspc

2006-12-26 Thread Bill Milbratz
milbratz -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 26, 2006 10:52 AM To: Tomcat Users List Subject: Re: problem: tomcat build fails. No 'execute()' method on jspc Hello Bill- I would definitely post this to ant-users [EMAIL PROTECTED

Re: Problem: Tomcat server hang because CPU goes to 100%

2006-10-05 Thread Minh Tu Thanh Tran
, October 04, 2006 2:56 PM To: Tomcat Users List Subject: Re: Problem: Tomcat server hang because CPU goes to 100% create a thread dump (kill -QUIT pid) and look for the thread that hangs. then fix the bug :-) regards Leon On 10/4/06, Minh Tu Thanh Tran [EMAIL PROTECTED] wrote: Dear friends

Re: Problem: Tomcat server hang because CPU goes to 100%

2006-10-05 Thread Minh Tu Thanh Tran
Hi Leon Rosenberg, Do you have the sample code like what you show me? I would be much graceful if you could send me some more code on this matter. Thank you very much Tu On 10/4/06, Leon Rosenberg [EMAIL PROTECTED] wrote: create a thread dump (kill -QUIT pid) and look for the thread that

Problem: Tomcat server hang because CPU goes to 100%

2006-10-04 Thread Minh Tu Thanh Tran
Dear friends, When I click on different links or button in my jsp page quickly, normally everythings is ok but sometime the tomcat server hang, it can not response to the requests anymore because the CPU goes to 100% If I publish my website, and when it may happens again the CPU goes to 100%

Re: Problem: Tomcat server hang because CPU goes to 100%

2006-10-04 Thread Leon Rosenberg
create a thread dump (kill -QUIT pid) and look for the thread that hangs. then fix the bug :-) regards Leon On 10/4/06, Minh Tu Thanh Tran [EMAIL PROTECTED] wrote: Dear friends, When I click on different links or button in my jsp page quickly, normally everythings is ok but sometime the

RE: Problem: Tomcat server hang because CPU goes to 100%

2006-10-04 Thread Praveen Balaji
Check how Heinz would do it: http://www.javaspecialists.co.za/archive/newsletter.do?issue=132locale= en_US -Original Message- From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 04, 2006 2:56 PM To: Tomcat Users List Subject: Re: Problem: Tomcat server hang because

Startup Problem tomcat 4.1 on debian using kaffe

2006-08-25 Thread Oliver Block
Hello everybody, my log reports: * Using CATALINA_BASE: /var/lib/tomcat4 Using CATALINA_HOME: /usr/share/tomcat4 Using CATALINA_TMPDIR: /var/lib/tomcat4/temp Using JAVA_HOME: /usr/lib/kaffe Using Security