password prompt

2017-01-19 Thread Jamie
Hi All What's the best way to prompt the user for a password and pass the value securely to web app internals on Tomcat server startup (Linux)? Thanks Jamie - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.or

Re: Monitoring Connections

2015-11-04 Thread Jamie Jackson
By the way, I had to back-burner this investigation due to other things that have come up. When those are out of the way, I'll pick up where I left off. Thanks for the discussion so far. (I don't know anything about SNMP, etc., so I'm only following that thread very loosely until I have time to co

Trouble downloading large file (>1GB)

2015-11-04 Thread jamie
; URIEncoding="UTF-8" compression="on" noCompressionUserAgents="gozilla, traviata" compressableMimeType="text/html,text/xml,text/css,text/plain,application/javascript,application/json" enableLookups="false" disableUp

Re: Monitoring Connections

2015-10-21 Thread Jamie Jackson
On Wed, Oct 21, 2015 at 1:03 PM, Christopher Schultz wrote: > Jamie, > > > > Your mostly-default will default to a maximum of 200 > incoming connections with 200 threads to handle them. You are only using > 12, so something else must be going on. You have no obvious limi

Re: Monitoring Connections

2015-10-19 Thread Jamie Jackson
About the appearance of Jetty in the stack trace dump: It's part of FusionReactor (the JVM monitor)--it uses Jetty to serve its interface. Thanks, Jamie On Fri, Oct 16, 2015 at 3:12 PM, Jamie Jackson wrote: > > > On Tue, Oct 13, 2015 at 9:34 AM, Christopher

Re: Monitoring Connections

2015-10-16 Thread Jamie Jackson
On Tue, Oct 13, 2015 at 9:34 AM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Jamie, > > On 10/9/15 10:03 AM, Jamie Jackson wrote: > > Here's the stack trace dump: > > https://gist.git

Re: Monitoring Connections

2015-10-09 Thread Jamie Jackson
ds, and that's what I was running at the time, which helps to explain the java.net.SocketInputStream.socketRead0 traces. Thanks, Jamie On Fri, Oct 9, 2015 at 7:32 AM, Jamie Jackson wrote: > Thanks, so far, everyone. > > I do already have a JVM monitoring tool in action--FusionRea

Re: Monitoring Connections

2015-10-09 Thread Jamie Jackson
aged to trigger the problem on my load test server yesterday, and grabbed a stack trace from FR. Sometimes, the problem identified by a stack trace is obvious (to me), but I didn't spot anything in this one, at a glance. I"ll post the stack trace once I get back to work, and we can start

Monitoring Connections

2015-10-07 Thread Jamie Jackson
some input. Thanks, Jamie

Re: maxFileSize

2015-10-07 Thread Jamie Jackson
That answers my questions (and more) perfectly. Thanks a lot. On Sat, Oct 3, 2015 at 10:23 AM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Jamie, > > On 10/2/15 11:23 AM, Jamie Jackson wrote: > &g

Re: maxFileSize

2015-10-02 Thread Jamie Jackson
On Thu, Oct 1, 2015 at 5:25 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Jamie, > > On 10/1/15 4:47 PM, Jamie Jackson wrote: > > Point taken, Christopher. I did just discover that I'm

Re: maxFileSize

2015-10-01 Thread Jamie Jackson
tz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Jamie, > > On 10/1/15 1:29 PM, Jamie Jackson wrote: > > I'd meant to include that I'm running Tomcat 7.0.20 on Oracle Java > > 7 (64-bit). > > Before you do anything else, you really n

Re: maxFileSize

2015-10-01 Thread Jamie Jackson
I'd meant to include that I'm running Tomcat 7.0.20 on Oracle Java 7 (64-bit). On Thu, Oct 1, 2015 at 1:22 PM, Jamie Jackson wrote: > Hi Folks, > > My question has a few facets: > > >1. How do you get the active maxFileSize value from Tomcat? (Is it >poss

maxFileSize

2015-10-01 Thread Jamie Jackson
for maxFileSize on StackOverflow, but it seems like there should be general guidance on how to make that leap (if there isn't specific guidance for those configurations in the official documentation). Thanks, Jamie

Re: multi-tenant web app

2013-04-18 Thread Jamie
me app in a very light weight, scalable and easy-to-manage fashion. Many thanks in advance for your input Best Regards Jamie

Re: Re: multi-tenant web app

2013-04-17 Thread Jamie
simply flag a context as multi instance. The instances should under the same classloader in a very light weight fashion. Is there any chance the Tomcat dev team would look into adding this? Your thoughts are appreciated Jamie On 2013/04/16 8:52 PM, Pïd stèr wrote: On 12 Apr 2013, at 12:00

multi-tenant web app

2013-04-12 Thread Jamie
t the addition of new instances will be as scalable as possible. Much appreciate Jamie

TC7: trigger seeding of SecureRandom

2012-05-21 Thread Jamie
this normal? Why would SecureRandom have to be seeded so often? I am also worried about the Tomcat console log filling up over time. Thanks Jamie - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional comman

Re: TLS configuration with multiple web apps

2010-08-30 Thread Jamie
Hi Mark Thanks for the clarification. Makes sense. Since ISP's are typically cost sensitive, each instance should consume a minimal amount of resources.. i.e. memory footprint, etc. Is there alot extra overhead in the architecture you describe? Jamie On 2010/08/30 6:02 PM, Mark T

TLS configuration with multiple web apps

2010-08-30 Thread Jamie
st appreciated. Jamie - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: determining if webapp is started or stopped?

2010-05-14 Thread Jamie
Hi Mark Thanks. Got it. public int getState() return 1 if RUNNING. On 2010/05/14 01:46 PM, Mark Thomas wrote: On 14/05/2010 12:35, Jamie wrote: Mark I dont know which API you are looking at, but the Context object here http://tomcat.apache.org/tomcat-6.0-doc/api/index.html has no such

Re: determining if webapp is started or stopped?

2010-05-14 Thread Jamie
Mark I dont know which API you are looking at, but the Context object here http://tomcat.apache.org/tomcat-6.0-doc/api/index.html has no such function. I see getAvailable() which could be relevant, but this is undocumented. Jamie On 2010/05/14 01:25 PM, Mark Thomas wrote: On 14/05/2010

Re: determining if webapp is started or stopped?

2010-05-14 Thread Jamie
Hi Mark Yes. I have. I could attach to a listener, but this wont help if the app was started before my manager app is started. Any other ideas? Hi There Is there an easy way to determine if a webapp is started or stopped using the Tomcat API? I have a org.apache.catalina.Context object.

determining if webapp is started or stopped?

2010-05-14 Thread Jamie
Hi There Is there an easy way to determine if a webapp is started or stopped using the Tomcat API? I have a org.apache.catalina.Context object. Thanks Jamie - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org

Re: logging in multiple tomcat web applications

2010-04-29 Thread Jamie
I tried the catalina.base variable but as far as i can see it puts it in Tomcat home dir not the webapp dir! On 2010/04/29 12:34 PM, Pid wrote: On 29/04/2010 11:27, Jamie wrote: Hi There We use multiple web applications running inside Tomcat and need a painless way for each app to write

Re: logging in multiple tomcat web applications

2010-04-29 Thread Jamie
If we do that, then it will be sitting in the webapp directory where if permissions are not set correctly, it is readable by the world. On 2010/04/29 01:47 PM, David kerber wrote: Just move the log folder up a level. On 4/29/2010 7:04 AM, Jamie wrote: Ok. We are not using Tomcat's we

Re: logging in multiple tomcat web applications

2010-04-29 Thread Jamie
.home? On 2010/04/29 12:57 PM, Mark Thomas wrote: On 29/04/2010 05:45, Jamie wrote: Aah.. Just what I was looking for.. Thanks! Is it bad to write logs inside WEB-INF? Generally, yes. When the application gets (un|re)deployed, the logs will get deleted. That isn't usually what you wa

Re: logging in multiple tomcat web applications

2010-04-29 Thread Jamie
Aah.. Just what I was looking for.. Thanks! Is it bad to write logs inside WEB-INF? Jamie On 2010/04/29 12:34 PM, Pid wrote: On 29/04/2010 11:27, Jamie wrote: Hi There We use multiple web applications running inside Tomcat and need a painless way for each app to write to its own log

logging in multiple tomcat web applications

2010-04-29 Thread Jamie
thout having to customize a log4j.xml file for each web application. I need a simpler more generic way, such as . Perhaps, there is a simpler way that I missed. Thanks in advance for your consideration Jamie - To unsubscribe, e

Re: JAR files still locked after Context.stop()

2010-04-29 Thread Jamie
Hi Chuck I'll try... I think there is a JAR registration issue with Javamail. At least, I found an article on the Internet that talks about it. On 2010/04/27 10:52 PM, Caldarale, Charles R wrote: From: Jamie [mailto:ja...@stimulussoft.com] Subject: Re: JAR files still locked

Re: JAR files still locked after Context.stop()

2010-04-27 Thread Jamie
Hi Charles / Konstantin Thanks for all your help. I figure out that it is only the Javamail mail.jar file that is locked. For some reason, Windows wont let go of it, but all other appear to be fine. Regards, Jamie On 2010/04/27 07:50 PM, Caldarale, Charles R wrote: From: Jamie [mailto:ja

Re: JAR files still locked after Context.stop()

2010-04-27 Thread Jamie
Hi Chuck I've check them out in YourKit profiler thoroughly. All threads in the main web application are exiting cleanly. Is there is a way to call the WebAppClassloader to unload a particular JAR file? Jamie On 2010/04/27 05:31 PM, Caldarale, Charles R wrote: From: Jamie [mail

Re: deleted page not immediately invalidated

2010-04-27 Thread Jamie
Ok. As I said, I am using the latest version. Thanks for attemping to help anyway. On 2010/04/27 05:24 PM, Konstantin Kolinko wrote: 2010/4/27 M.H.G. Emmerig: What could be causing this behaviour? Some tomcat versions work like that. See bugzilla for more details. I have no clue o

Re: JAR files still locked after Context.stop()

2010-04-27 Thread Jamie
nning threads pertaining to the main web app. Jamie On 2010/04/27 04:57 PM, Konstantin Kolinko wrote: 2010/4/27 Jamie: Konstantin I just tried 6.0.26 and no joy. JARs remain locked by Windows. In the auto update application I call context.stop() immediatel and System.gc() but alas all

Re: JAR files still locked after Context.stop()

2010-04-27 Thread Jamie
Konstantin I just tried 6.0.26 and no joy. JARs remain locked by Windows. In the auto update application I call context.stop() immediatel and System.gc() but alas all JAR files are locked. Any other ideas? Jamie On 2010/04/27 04:17 PM, Konstantin Kolinko wrote: 2010/4/27 Jamie: Hi

Re: JAR files still locked after Context.stop()

2010-04-27 Thread Jamie
Hi Konstantin Thanks. I'll give that a try. Can you confirm whether the options you were referring to are antiJARLocking="true" antiResourceLocking="true". Is it still necessary to specify these options in 6.0.26? On 2010/04/27 03:45 PM, Konstantin Kolinko wrote:

Re: JAR files still locked after Context.stop()

2010-04-27 Thread Jamie
Hi Konstantin Here you go: OS: Windows 7 (version 6.1.7600) Tomcat: 6.0.20 JRE: 1.6.0_18-b07 Thanks for your guidance Jamie INFO: Starting Servlet Engine: Apache Tomcat/6.0.20 On 2010/04/27 03:26 PM, Konstantin Kolinko wrote: 2010/4/27 Jamie: I am using the latest version of Tomcat

JAR files still locked after Context.stop()

2010-04-27 Thread Jamie
context is stopped? I am using the latest version of Tomcat (v6) Thanks in advance for your suggestions Jamie WEB-INF/web.xml - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands

Re: IIS connector issue?

2008-09-02 Thread Jamie Robert Thompson
2008/9/1 Jamie Robert Thompson <[EMAIL PROTECTED]> > Hi, I'm currently stuck at the last hurdle of a task which involves > integrating JavaHelp into an ASP.net application. I know little about Java, > even less about JSP, but my boss likes server-side JavaHelp *sigh*. I chose

IIS connector issue?

2008-09-01 Thread Jamie Robert Thompson
hanged the uri worker map to only handle jsp files). Only bit of magic is that I've added a context node to the localhost in server.xml to match up with the virtual directories used in our IIS setup. Can anyone think of things I can try to get this working? - Jamie

Re: logging with multiple web applications

2008-06-17 Thread Jamie
Hi Charles Thanks for the help. See below. Caldarale, Charles R wrote: The real question is, has the OP read this: http://tomcat.apache.org/tomcat-6.0-doc/logging.html (My guess is that actually has been done as well.) Note that most of the log4j section in the above applies to Tomcat inter

Re: logging with multiple web applications

2008-06-17 Thread Jamie
That will be Tomcat version 6.0 Caldarale, Charles R wrote: From: Jamie [mailto:[EMAIL PROTECTED] Subject: logging with multiple web applications Does anyone know how to configure Tomcat such that logging writes to separate log files for each web application? Care to tell anyone what

logging with multiple web applications

2008-06-17 Thread Jamie
ns webapp1, and webapp2 - the debug log file for each could be debug-webapp1.log and debug-webapp2.log, respectively. Do I need to import catalina's version of log4j? What is the import line? Many thanks in advance for your guidance Jamie PS: My log4.properties file located in WEB-INF/cl

Help me understand Tomcat configuration

2006-12-03 Thread Jamie Krasnoo
d only for a certain host on Apache? Thanks for your help. Jamie - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Realm static variables always return null

2006-10-27 Thread Jamie Green
call get from my jsp. Does anyone know why the statics are null? Thanks, Jamie _ Windows Live™ Messenger has arrived. Click here to download it for free! http://imagine-msn.com/messenger/launch80/?locale=en-gb