Re: Weird problem: slow upload via Manager

2018-07-06 Thread tomcat
On 06.07.2018 19:49, Chris Cheshire wrote: On Jul 6, 2018, at 12:56 PM, James H. H. Lampert wrote: Forgive the top-post. The reason why this particular case of an extremely slow Manager upload sticks out is because we've done, by now, hundreds of uploads of this same WAR file (or

Re: Weird problem: slow upload via Manager

2018-07-06 Thread James H. H. Lampert
Forgive the top-post. The reason why this particular case of an extremely slow Manager upload sticks out is because we've done, by now, hundreds of uploads of this same WAR file (or earlier versions of it), via Manager, on over a dozen different installations, most of them AS/400s, and none

Re: Weird problem: slow upload via Manager

2018-07-06 Thread tomcat
On 06.07.2018 01:23, James H. H. Lampert wrote: Earlier this week, on a customer AS/400 installation (Tomcat 7.0.67), we experienced the slowest WAR file upload we've ever encountered: several HOURS to install a roughly 100M WAR file (we customarily increase the max-file-size and

Re: Weird problem: slow upload via Manager

2018-07-06 Thread Greg Huber
If you are not remote, can you just copy them to the IFS folder? On 6 July 2018 at 00:23, James H. H. Lampert wrote: > Earlier this week, on a customer AS/400 installation (Tomcat 7.0.67), we > experienced the slowest WAR file upload we've ever encountered: several > HOURS to install a roughly

Weird problem: slow upload via Manager

2018-07-05 Thread James H. H. Lampert
Earlier this week, on a customer AS/400 installation (Tomcat 7.0.67), we experienced the slowest WAR file upload we've ever encountered: several HOURS to install a roughly 100M WAR file (we customarily increase the max-file-size and max-request-size in manager/WEB-INF/web.xml from 50M to

Re: More, Re: Weird problem: browsers refusing to connect; more "fun with ciphers clauses on the connector tag"

2017-10-19 Thread James H. H. Lampert
On 10/19/17, 10:02 AM, Christopher Schultz wrote: The browser tells the server what cipher suites it supports during the initial handshake, and the server decides which algorithm to use. The client doesn't try multiple different connections to see which one sticks. The server either replies

Re: More, Re: Weird problem: browsers refusing to connect; more "fun with ciphers clauses on the connector tag"

2017-10-19 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 James, On 10/16/17 2:35 PM, James H. H. Lampert wrote: > I just got finished going through 20 other customer Tomcat > installations we administer. > > First, I found that most of them were accepting the DHE ciphers > I'd disabled on the problem

More, Re: Weird problem: browsers refusing to connect; more "fun with ciphers clauses on the connector tag"

2017-10-16 Thread James H. H. Lampert
I just got finished going through 20 other customer Tomcat installations we administer. First, I found that most of them were accepting the DHE ciphers I'd disabled on the problem installation, and SSLLabs was giving them bad ratings for doing so. Second, I found that two of the other

Re: Weird problem: browsers refusing to connect; more "fun with ciphers clauses on the connector tag"

2017-10-16 Thread Mark Thomas
On 16/10/17 17:57, James H. H. Lampert wrote: > Can somebody explain what just happened? > > This morning, we got a call from a customer whose Tomcat server (on > their own hardware) we administer. > > It seems that suddenly, and without any advance warning, all but the > oldest browsers were

Weird problem: browsers refusing to connect; more "fun with ciphers clauses on the connector tag"

2017-10-16 Thread James H. H. Lampert
Can somebody explain what just happened? This morning, we got a call from a customer whose Tomcat server (on their own hardware) we administer. It seems that suddenly, and without any advance warning, all but the oldest browsers were refusing to connect to the server, without offering any

Weird problem with WebSockets

2016-07-08 Thread Edwin Quijada
Hi! I have developed an app using websocket. I am using servers to upload my app in DigitalOcean but here the websockets doesnt work but using another server server4U everuthing is fine. I am using Tomcat 8.5.3 somebody has any cluee, any, about this behavour , the only thing that I think is

Re: Weird problem: Two apparent copies of app started

2007-09-29 Thread Ken Bowen
should appear in Host and what in META-INF/context.xml?? The A Word on Contexts in http://tomcat.apache.org/tomcat-5.5-doc/deployer-howto.html doesn't give any details. Thanks, Ken Caldarale, Charles R wrote: From: Ken Bowen [mailto:[EMAIL PROTECTED] Subject: Weird problem: Two apparent

Re: Weird problem: Two apparent copies of app started

2007-09-29 Thread Pid
/www.domain.com/webapps name=domain.com ... p Thanks, Ken Caldarale, Charles R wrote: From: Ken Bowen [mailto:[EMAIL PROTECTED] Subject: Weird problem: Two apparent copies of app started strongbrain/WEB-INF/lib/servlet-api.jar One obvious error: you must not put the servlet-api.jar

RE: Weird problem: Two apparent copies of app started

2007-09-29 Thread Caldarale, Charles R
From: Pid [mailto:[EMAIL PROTECTED] Subject: Re: Weird problem: Two apparent copies of app started DO NOT use the path or docBase attribute in a Context defined outside of server.xml. One exception to that: if the webapp is placed outside of the Host appBase directory, your Context entry

RE: Weird problem: Two apparent copies of app started

2007-09-29 Thread Caldarale, Charles R
From: Ken Bowen [mailto:[EMAIL PROTECTED] Subject: Re: Weird problem: Two apparent copies of app started So what I'm confused about is this: Exactly what should appear in Host and what in META-INF/context.xml?? The A Word on Contexts in http://tomcat.apache.org/tomcat-5.5-doc

Re: Weird problem: Two apparent copies of app started

2007-09-29 Thread Ken Bowen
Chuck, PID: Thanks for the replies and pointers -- they're a real help. Now, I'm sure the following is going to turn out to be a DUH! moment for me, BUT: If I put my context element in META-INF/context.xml, how is it associated with a particular virtual HOST? It's obvious how this happens

RE: Weird problem: Two apparent copies of app started

2007-09-29 Thread Caldarale, Charles R
From: Ken Bowen [mailto:[EMAIL PROTECTED] Subject: Re: Weird problem: Two apparent copies of app started If I put my context element in META-INF/context.xml, how is it associated with a particular virtual HOST? But if: conf/server.xml defines two virtual hosts: Host1 and Host2

Re: Weird problem: Two apparent copies of app started

2007-09-29 Thread Mark Thomas
Ken Bowen wrote: how does one ensure (if one can?) that myapp is an application running in Host2, but not in Host1 ?? Each host has its own appBase. Mark - To start a new topic, e-mail: users@tomcat.apache.org To

Re: Weird problem: Two apparent copies of app started

2007-09-29 Thread Ken Bowen
Well, I said it would be DUH!, didn't I. Thanks a lot guys. Have a good weekend, Ken Caldarale, Charles R wrote: From: Ken Bowen [mailto:[EMAIL PROTECTED] Subject: Re: Weird problem: Two apparent copies of app started If I put my context element in META-INF/context.xml, how is it associated

Weird problem: Two apparent copies of app started

2007-09-28 Thread Ken Bowen
Hello All, I have an application using data source pooling configured in META-INF/context.xml. I set up up the data sources and the classes accessing them in an AppListener. This app works fine on Tomcat 5.5.9 running on Windows and 5.5.25 running on Linux/CentOS 5. I am attempting to bring

RE: Weird problem: Two apparent copies of app started

2007-09-28 Thread Caldarale, Charles R
From: Ken Bowen [mailto:[EMAIL PROTECTED] Subject: Weird problem: Two apparent copies of app started strongbrain/WEB-INF/lib/servlet-api.jar One obvious error: you must not put the servlet-api.jar inside your webapp - the container supplies that. Remove it and see if it helps. - Chuck

AW: Weird problem

2007-08-07 Thread Leucht, Axel
here is the complete server.xml with only the problematic context (myapp) in it: ?xml version=1.0 encoding=UTF-8? !-- Example Server Configuration File --!-- Note that component elements are nested corresponding to their parent-child relationships with each other --!-- A Server is a

Weird problem

2007-08-06 Thread Leucht, Axel
Hi, I'm currently in desparate search for a problem I'm facing... I do have a struts-webapp running under Tomcat 4 without any problems. I started to port the application to Tomcat 5 which gives me problems. The app start ok and everything looks ok. But when I try to call one specific action,

Re: Weird problem

2007-08-06 Thread Mark Thomas
Leucht, Axel wrote: Hi, I'm currently in desparate search for a problem I'm facing... Please provide the context and host configuration for this web app. Mark - To start a new topic, e-mail: users@tomcat.apache.org To

Re: weird problem

2007-07-10 Thread David Delbecq
Hi, javax.xml.parsers.FactoryConfigurationError loads a implementation of xml parsers using a J2SE discovery mecanism. This discovery mecanism uses hints provided in .jars META-INF/ folder. Since you exploded your jar of XercesImpl, this JAR does not take part anymore in the discovery mecanism

Re: weird problem

2007-07-10 Thread kz
You are right. If I remove xercesImpl.jar from the class path then it works also. But there is another observation which is weird. Its that if I have my application anywhere on C: drive then it works. It also works if I have it on D:\Program Files\. If I have it on D:\ then it gives this error.

Re: [OT] hi, [weird] problem? add 0 into [a list] but get 1 as a result!

2007-05-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Peter, Peter wrote: I have come into a very [weird] problem. [snip] List alist =new ArrayList(); alist.add(0); put 0 into it alist.get(0); get 1 as result. it occurs when i using JBuilder2006 to complie it and run under tomcat 5.5.20

Re: Weird problem with Tomcat 5.5.17 and j_security_check

2006-05-13 Thread Mark Thomas
When starting a new thread (ie sending a message to the list about a new topic) please do not reply to an existing message and change the subject line. To many of the list archiving services and mail clients used by list subscribers this makes your new message appear as part of the old thread.

Weird problem with Tomcat 5.5.17 and j_security_check

2006-05-12 Thread Dean Searle
Hello Everyone, I have just installed a clean server with windows 2003 Standard, Java JDK 1.5.0_06 and tomcat 5.5.17. I moved my application that i created on tomcat 5.0 to this server and set the application up as a host site. When I access the site, it askes for the user name and password

Re: Tomcat 4.1.31, Weird problem. Once in a while an attribute i n the session is not found... look like a RACE?! Is that possible????

2005-12-19 Thread David Gagnon
the attribute it's gone as the session is invalidated. Hth, Tobias -Original Message- From: David Gagnon [mailto:[EMAIL PROTECTED] Sent: Monday, December 19, 2005 3:46 PM To: Tomcat Users List Subject: Re: Tomcat 4.1.31, Weird problem. Once in a while an attribute in the session is not found

RE: inserting data (A weird problem)

2005-12-14 Thread Richard Mixon
might make a bit more sense to some of us and you might get a better answer. Hope this helps - Richard -Original Message- From: Claudio Martn Veas [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 5:50 AM To: Tomcat Users List Subject: Re: inserting data (A weird problem) Hello

inserting data (A weird problem)

2005-12-13 Thread Claudio Veas
Hello, Im trying to insert data in my mysql serverwith a JSP and a Bean with an example I found in the internet, Im very new to all this but this error I get its really strange. I created a table contacto (contact) in the mysql server, create table contacto (numero int, nombre varchar