requiring multiple roles for access

2007-03-21 Thread Ryan
s to allow role1 OR role2). Is what I'm trying to do possible?? Thanks, Ryan

Re: requiring multiple roles for access

2007-03-21 Thread Ryan
at you are suggesting may also be suitable. Thanks, Ryan On 3/21/07, Propes, Barry L [GCG-NAOT] <[EMAIL PROTECTED]> wrote: I know you can assign different roles to an app, and to a user, and make that user need one role to get to one part and an additional role to access a separate part of

Re: requiring multiple roles for access

2007-03-21 Thread Ryan
Chuck, I think you and Barry are correct, I will probably to define another role for this purpose and segregate different parts of the application. Thanks, Ryan On 3/21/07, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > From: Ryan [mailto:[EMAIL PROTECTED] > Subject: requir

Re: requiring multiple roles for access

2007-03-22 Thread Ryan
Barry, Regarding your method below, do you catch this method in JSP or somewhere else? Thanks, Ryan On 3/21/07, Propes, Barry L [GCG-NAOT] <[EMAIL PROTECTED]> wrote: I don't know about disabling users, as I haven't tried something like that, and there may be ways of tieri

Re: requiring multiple roles for access

2007-03-22 Thread Ryan
just hoping when I wrote that one. Thanks, Ryan On 3/22/07, Propes, Barry L [GCG-NAOT] <[EMAIL PROTECTED]> wrote: Hey Ryan, I didn't end up catching it, only because the people getting the email that would log in to the "voting section," it doesn't come into pl

Re: requiring multiple roles for access

2007-03-22 Thread Ryan
Yeh, this project is moving pretty fast, so I'm going with some quick solutions that may or may not be elegant :-) If I get a chance to revisit this, I'm going to try your solution. Thanks again for all your help. - Ryan On 3/22/07, Propes, Barry L [GCG-NAOT] <[EMAIL PROTECTED]>

adding authentication to unprotected page

2007-05-31 Thread Ryan
o work, it basically brings me back to the original page. Any ideas? Thanks, Ryan Username Password

Endorsed directory classloader

2012-01-09 Thread Ryan
${catalina.base}/lib, ${catalina.home}/lib and the endorsed/ directory itself, and each time the dependent classes fail to load due to an inability to locate the org.slf4j classes. What do you recommend I do to make the slf4j jars available to the classes within the endorsed/ directory? Thank you, Ryan

How does the user principal get set on the servlet container session?

2024-01-30 Thread Ryan Esch
>From what I understand, the container knows if a user is authenticated by >using the session id passed to it and then looking up the user principal. If >this is non-null, the user is authenticated. I am using web.xml with security >constraints and UsersRoleLoginModule defined in jaas.conf which

Getting provider/properties from jaspic-providers.xml to my ServerAuthModule

2024-02-08 Thread Ryan Esch
I'm using Tomcat 9. I have a provider in jaspic-providers.xml:                 I am not sure how to get these properties to my ServerAuthModule. I have a ServletContextListener and can see that the jaspic-providers.xml file is being processed if I call: AuthConfigFactory factory = AuthConfigFacto

Tomcat 9: Java 11 to Java 17

2024-06-10 Thread Ryan Esch
ld javax AuthConfig classes in the dependencies.Anyone familiar with this? Ryan

Seeking clarification on ServletContext.createServlet() behavior post context initialization

2024-07-24 Thread Ryan Lubke
Hey Folks, Tomcat version: 10.1.26 JDK: "21.0.3" 2024-04-16 LTS OS: Macos Sonoma 14.5 I'm looking for clarification on what annotations will be supported when calling ServletContext.createServlet() after the context has been initialized. Some background; I h

Connection Closed Errors From JDBC-Pool

2022-03-11 Thread Ryan Bergman
nformation from the pool about why this is happening? Thank You!! Ryan Bergman

Security Manager

2006-07-21 Thread Ryan Daly
Has anyone seen any issues while running with the security manager and it complaining that it doesn't have permission to do something when in fact the permission is in the policy file? I'm seeing the following error Caused by: java.security.AccessControlException: access denied (java.io.FilePermi

Re: Setting heap once the tomcat JVM is started

2006-07-24 Thread Ryan Daly
Martin Gainty wrote: > Ryan-- > > Here is the policy setting I have in my %TOMCAT_HOME%/conf/catalina.policy > // These permissions apply to the commons-logging API > grant codeBase "file:${catalina.home}/bin/commons-logging-api.jar" { > permission

java.util.PropertyPermission

2006-07-25 Thread Ryan Daly
All: I have started seeing problems with using the java.util.PropertyPermission setting in the catalina.policy file. I have the following line: permission java.util.PropertyPermission "*", "read,write"; If that's in my policy entry for the specific web application, it does not get picked up. I

Re: java.util.PropertyPermission

2006-07-25 Thread Ryan Daly
bject or > not for that to work? > > -Original Message- > From: Ryan Daly [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 25, 2006 2:01 PM > To: Tomcat Users List > Subject: java.util.PropertyPermission > > > All: > > I have started seeing problems with usi

Re: java.util.PropertyPermission

2006-07-25 Thread Ryan Daly
t;java.specification.vendor", > "read"; > permission java.util.PropertyPermission "java.specification.name", > "read"; > > permission java.util.PropertyPermission > "java.vm.specification.version", "read"; > pe

Re: java.util.PropertyPermission

2006-07-25 Thread Ryan Daly
ssage in error, please notify > the sender immediately by telephone or email and destroy the original > message without making a copy. Thank you. > > > > - Original Message - > From: "Ryan Daly" <[EMAIL PROTECTED]> > To: "Tomcat Users List" &g

Re: java.util.PropertyPermission

2006-07-26 Thread Ryan Daly
gt; addressed. If you have received this email message in error, please notify > the sender immediately by telephone or email and destroy the original > message without making a copy. Thank you. > > > > - Original Message - > From: "Ryan Daly" <[EMAIL

Initializing Parameter

2006-07-31 Thread Ryan O'Hara
param-value in web.xml, however it looks like this only works for type String and does not allow Java code. Thanks for any ideas. Ryan - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL

Re: Initializing Parameter

2006-07-31 Thread Ryan O'Hara
ld this be executed during a restart of Tomcat? If so, how (by what class/method)? Thanks for your quick response. Your help is greatly appreciated. -Ryan

Re: Initializing Parameter

2006-07-31 Thread Ryan O'Hara
ted. The servlet spec itself and the servlet api javadocs have complete information on implementing this. --David = Chris and David, Fantastic, thanks so much. I'll give this a shot and see how it goes. Your advice has been extremely helpful. Thanks

Re: Initializing Parameter

2006-07-31 Thread Ryan O'Hara
One more question: What is the best method for retrieving the values? Thanks again. -Ryan On Jul 31, 2006, at 2:47 PM, David Smith wrote: ServletContextListener is a new feature of servlet spec 2.4 (tomcat 5.0.x, 5.5.x). The essential parts are: 1. write a class implementing the

Re: Initializing Parameter

2006-07-31 Thread Ryan O'Hara
Thanks a lot, David. Ryan Christopher Schultz wrote: Not really. If the question is "how do I retrieve the stuff I put in servletcontext?", the answer is getServletContext().getAttribute ( attributeName ). Then just cast the result to the type it's supposed to be (

Restarting Tomcat causes application to be displayed across all instances

2006-08-04 Thread Ryan O'Hara
les. This may or may not be related (don't think it is). Thanks. Ryan - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Restarting Tomcat causes application to be displayed across all instances

2006-08-04 Thread Ryan O'Hara
Unfortunately, the startup script doesn't set the classpath and the classes are not in the shared folders. Any other ideas? I am currently digging.. Thanks again, Ryan On Aug 4, 2006, at 12:47 PM, Filip Hanik - Dev Lists wrote: could be several reasons, one common one is that some

Re: Restarting Tomcat causes application to be displayed across all instances

2006-08-04 Thread Ryan O'Hara
here else) the CLASSPATH is being set to ~/cvs/fable/ web/info rather than /usr/local/tomcat/webapps/fable(_[user])/WEB-INF/classes/info. Now, if I can only find where this is happening.. Anyone have any ideas? Thanks so much. -Ryan On Aug 4, 2006, at 1:15 PM, Ryan O'Hara wrote: Unfo

Re: Create an object that's shared with multiple applications?

2006-08-09 Thread Ryan O'Hara
How can I create a single object when Tomcat starts up and access that object from multiple web apps? Thanks, Matt Have you added listener and listener-class tags in each applications' web.xml? Ryan - To start a new

jsvc-src make error

2006-09-20 Thread Ryan Suarez
e[1]: *** [jsvc-unix.o] Error 1 make[1]: Leaving directory `/apps/apache-tomcat-5.5.17/bin/jsvc-src/native' make: *** [native/all] Error 2 What am I doing wrong? How do I compile this succesfully? I've attached the output of configure and make for your perusal. much appreciated, Ryan ***

Re: jsvc-src make error

2006-09-21 Thread Ryan Suarez
Can someone please help? I cannot find the answer in the archives... much appreciated, Ryan Greetings, I'm trying to compile jsvc-src (from apache-tomcat-5.5.17 binary core distribution) on debian sarge. I've installed jdk-1_5_0_08-linux-i586.bin using make-jpkg. So au

Help with Custom Analyzer

2006-10-16 Thread Ryan O'Hara
help is greatly appreciated. Thanks. -Ryan - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Help with Custom Analyzer

2006-10-16 Thread Ryan O'Hara
Ah. Thank you. Sorry, wrong list. -Ryan On Oct 16, 2006, at 4:08 PM, Christopher Schultz wrote: Chuck, Looks like this guy accidentally posted a Lucene question to the Tomcat list. I hope he comes back to see the responses. -chris Caldarale, Charles R wrote: From: Ryan O'

Re: mod_jk bug serving up flash on non 2003 servers?

2005-11-15 Thread Ryan McDonald
have you looked at the mod-jk and apache log files? On 15-Nov-05, at 11:19 AM, [EMAIL PROTECTED] wrote: Hi Mark, Yes, as I mentioned, we can access "non-swf files without a problem". We have exactly the same setup, I believe, for 2003 Server and XP Sp2 - it runs from the same installer, w

Security manager issue

2005-12-07 Thread Ryan Daly
All: I have discovered the following in catalina.out: policy: reading file:/opt/tomcat/v5.5.12/logcom.dev.ctc.com/conf/catalina.policy policy: Adding policy entry: policy: signedBy null policy: codeBase file:/usr/java/jdk1.5.0_04/jre/lib/- policy: (java.security.AllPermission ) policy: p

Permissions issues

2005-12-07 Thread Ryan Daly
All: I'm noticing something else strange. I'm attempting to bring up a web application using the Security Manager. I have the following coming up in my catalina.out log: access: access denied (java.lang.RuntimePermission getClassLoader) Yet, I have the following in my catalina.policy file:

Re: Securing File System Resources ?

2005-12-13 Thread Ryan Slack
servlet ala web.xml, but if your security model relies on all requests going through one servlet, you're better off with a filter. Savy? --Ryan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

Re: Image Scaling Code

2006-01-12 Thread Ryan McDonald
i believe adding this to your CATALINA_OPTS variable will solve this issue -Djava.awt.headless=true On 12-Jan-06, at 2:26 PM, Justin Jaynes wrote: Hello all, I've written a java class to scale jpeg images. But I can't seem to get it to work. Can anyone point me in the right direction?

Re: Still Jasper/Ant problem

2006-03-16 Thread Ryan McDonald
On 16-Mar-06, at 12:00 PM, Dola Woolfe wrote: Here's lines 17-22 What is the value of webapp.path seems like it either is not being set or is se to a location that doesn't exist. Read the Ant documentation for specifying parameters, using a properties file, or edit build.xml to s

Re: mod_jk specific configuration problem

2006-03-17 Thread Ryan McDonald
apache + mod_jk, but I'd need 2 sets of worker.properties, one per each virtual host, ie, virtual host 1 would forward requests to Tomcat A and Tomcat B, and virtual host 2, would follow the requests to Tomcat C and Tomcat D. I have noticed that the JkWorkersFile directive cant be used pe

Run Tomcat in W2k3 as service

2006-03-22 Thread Ryan Daly
Has anyone successfully set environment variables for the Tomcat process when it's running as a service? Is it possible to start the service with the "-security" option, as in Linux? Thanks in advance. - To unsubscribe, e-mail:

RE: Run Tomcat in W2k3 as service

2006-03-23 Thread Ryan Daly
On Wed, 2006-03-22 at 19:34 -0500, Tim Lucia wrote: > You can specify parameters on the various tabs under the servicew app (the > tray monitor). You probably want "Startup" in this case, so it would go > alongside the "start" option. I did try that. However, each time I put something there, it

Re: Run Tomcat in W2k3 as service

2006-03-23 Thread Ryan Daly
On Thu, 2006-03-23 at 08:52 -0500, David Kerber wrote: > I believe you need the permission level which allows you to run as a > service, in order to change one. IIRC, this means either power user or > administrator permissions. I'm having the service log on as "tomcat". Are you saying the user

Re: Run Tomcat in W2k3 as service

2006-03-24 Thread Ryan Daly
On Thu, 2006-03-23 at 20:51 +, Nic Daniau wrote: > You may need to reconfigure the service. Have a look to my post from a few > min ago on "*running two instances of tomcat*" > > you can also update the service using e.g. > > %CATALINA_HOME%\bin\tomcat5.exe //US//Tomcat5 --Description "My upd

Re: Run Tomcat in W2k3 as service

2006-03-24 Thread Ryan Daly
On Fri, 2006-03-24 at 13:38 +, Nic Daniau wrote: > I wouldn't think so, these options are called when the service is > launched so you would have to restart the service for this to be > picked up. Right, I understand that I'll have to restart the service. But is that the way to get the servic

Re: Run Tomcat in W2k3 as service

2006-03-24 Thread Ryan Daly
On Fri, 2006-03-24 at 13:55 +, Nic Daniau wrote: > Not sure, TFM is a bit vague on this, it does not talk of the windows > service. This must be one of the options, but which one?... StartMode? > JvmOptions? > > I've never really spent a lot of time on the security manager, but I'm > definiti

Re: Run Tomcat in W2k3 as service

2006-03-24 Thread Ryan Daly
On Fri, 2006-03-24 at 08:58 -0500, Ryan Daly wrote: > I have an opportunity to take the site down in a few minutes. I'll > quickly try setting that and post what I find. No good. If anyone comes across the proper options to do this, please post it to the li

RE: Run Tomcat in W2k3 as service

2006-03-24 Thread Ryan Daly
On Fri, 2006-03-24 at 08:27 -0600, Benjamin Armintor wrote: > I'm not sure about Windows services specifically, but you can start the > JVM with a security manager generically by using the > "-Djava.security.manager" and "-Djava.security.policy= URL>" java startup options. You can append these to

RE: Run Tomcat in W2k3 as service

2006-03-26 Thread Ryan Daly
On Fri, 2006-03-24 at 09:42 -0500, Ryan Daly wrote: > On Fri, 2006-03-24 at 08:27 -0600, Benjamin Armintor wrote: > > I'm not sure about Windows services specifically, but you can start the > > JVM with a security manager generically by using the > > &qu

Example Balancer Rules and Information

2006-06-13 Thread Ryan Clark
problems with the webapp. I would prefer not to do this via JSP if possible. thanks Ryan Clark Senior Technical Consultant Perspicuity Ltd [EMAIL PROTECTED] This message and any attachments are confidential and should only be read by those to whom they are addressed. If you are not the

RE: Example Balancer Rules and Information

2006-06-13 Thread Ryan Clark
means I can us a standard install of their webapp, but we can handle links that have been created with the old installation. I know I can use jsp but would like to do this by balancer rules if at all possible. Can that be done? thanks Ryan -Original Message- From: Gillespie Jr, Edward L

JSessionID Confusion

2006-10-23 Thread Ryan O'Hara
Is there anyway to create JSessionIDs per window rather than per browser? I am having the problem of when you open multiple tabs within a browser, and enter two simultaneous queries, the results returned are corrupted. Any suggestions? Thanks for the help. -Ryan

Re: JSessionID Confusion

2006-10-24 Thread Ryan O'Hara
Thanks, Dave. One more question - How can you tell Tomcat to assign sessions based on session IDs defined in CGI variables? -Ryan On Oct 23, 2006, at 4:04 PM, David Smith wrote: Short answer: no. Tomcat doesn't have any knowlege of how many windows client-side are sharing the

OutOfMemory Exceptions and HTTP Processor Threads

2006-10-31 Thread Ryan Gies
What I observe is: a) A certain amount of free memory is required to instantiate a web application b) Concurrent requests are handled by separate HTTP Processor threads c) The maxSpareThreads attribute of the HTTP Connector is not honored until GC And when I: 1) Deploy three "helloworld" Turbin

Tomcat PHP install

2008-07-21 Thread Ryan Ollerenshaw
I am trying to get Tomcat and PHP running on the same server. I am using to following tutorial: http://wiki.apache.org/tomcat/UsingPhp everything seems to be working but when i load my test.php page i get the following error: java.lang.UnsatisfiedLinkError: libphp4: /usr/lib64/gcj-4.1.2/libphp4

Re: Tomcat PHP install

2008-07-21 Thread Ryan Ollerenshaw
I am have installed ArcIMS on my server which requires Tomcat to handle all the calls to the default port 80. With Tomcat handling the calls to port 80 there is no way to have apache running on the same port to handle the PHP calls so i need some way to have Tomcat handle PHP. -Ryan

Prefix Paths on Servlets

2007-08-13 Thread Ryan Shelley
add "/it" to just this servlet as a prefix, without having to repackage my war as "it.war" (my package is not all of IT's servlets, so I don't want to package it as such)? I looked at the servlet context, and I don't believe that does wha

Re: Prefix Paths on Servlets

2007-08-13 Thread Ryan Shelley
My apologies... I'm on Tomcat 5.5. I'll take a look at it and give that a try. Thanks Chuck! On Aug 13, 2007, at 11:59 AM, Caldarale, Charles R wrote: From: Ryan Shelley [mailto:[EMAIL PROTECTED] Subject: Prefix Paths on Servlets However, it's recently been requested that

Re: character encodingg problem

2007-08-13 Thread Ryan Shelley
So I've been able to deploy the servlet and access it with the "/it" prefix, however, I noticed that when I redeploy my war, my custom it#idm.war context file is also removed. Is there a way to keep that transient between deployments? Or package it with the war? On Aug 13, 2007, at 1:12 P

Re: Prefix Paths on Servlets

2007-08-14 Thread Ryan Shelley
eployments? Or package it with the war? On Aug 13, 2007, at 12:03 PM, Ryan Shelley wrote: My apologies... I'm on Tomcat 5.5. I'll take a look at it and give that a try. Thanks Chuck! On Aug 13, 2007, at 11:59 AM, Caldarale, Charles R wrote: From: Ryan Shelley [mailto:[EMAIL PROTECT

Can't shutdown Tomcat

2008-02-05 Thread Alexander Ryan
I am unable to shutdown Tomcat 5.5.17. When I try to shutdown using /bin/shutdown.sh or "./catalina.sh stop" it just pauses like so . Feb 4, 2008 4:51:00 PM org.apache.coyote.http11.Http11BaseProtocol pause INFO: Pausing Coyote HTTP/1.1 on http-80 I have to kill the thread every time like so "pk

Help on Tomcat configurations

2008-02-27 Thread Ryan Webb
Dear Apache-Tomcat, Hello, I am Ryan Webb from Philippines and this is my first time to use Tomcat. I have problem in configuring my Tomcat. -Situation: I have a computer and there are no other webserves (IIS, etc) installed, except tomcat 6.0.14 (full install). I deployed war file by

I can't access my webapplication from another computer

2008-02-28 Thread Ryan Webb
re there futher configurations needed to be done? You may give me links / websites that relates to my problem (if you're not in the mood for explaining ha.ha!) Thank you for reading my e-mail. Godbless, Ryan Webb -- from Philippines ___

RE: I can't access my webapplication from another computer

2008-02-29 Thread Ryan Webb
Dear Antonio, Yes I think the machine which tomcat has been installled has firewall enabled Windows firewall.. Do you think that is the problem? Thank you for replying on short notice. GodBless, Ryan Webb - Philippines> Date: Fri, 29 Feb 2008 08:47:14 +0100> From: [EMAIL PROTECTE

RE: I can't access my webapplication from another computer

2008-02-29 Thread Ryan Webb
Dear Partha, My OS is windows XP professional SP2 and I configured Tomacat port to 80 Thanks for your quick reply.. GodBless, Ryan Webb -- Philippines> Date: Fri, 29 Feb 2008 13:16:56 +0530> From: [EMAIL PROTECTED]> To: users@tomcat.apache.org> Subject: Re: I can't access m

I cant access my webapplication issue is now Solved!

2008-02-29 Thread Ryan Webb
Dear fellow users, I would like to thank all people who helped me solved my problem.. Problem is windows firewall I did not notice it was running. I will configure windows firewall. most reply was related to network, port and firewall.. God bless all of you. Warmest regards, Ryan Webb

Textarea Horizontal Scroll Bar Problems

2008-04-15 Thread Ryan Fleming
7500px"); The text gets created like this: txtRiderInfo.setValue("Race Results Report.\r\nAll Total Elapsed Times Are Based From The Start Of The First Heat.\r\n\r\n"); Thanks for your time Ryan ___

I dont want my users to see tomcat console. Any advice?

2008-05-08 Thread ryan webb
3.236/ *Question:* - I don't want users to see the tomcat manager console site. Is there some sort of redirection to webApplication? I want users to see our webApplication when they typed in http://107.105.13.236/ any advice, help, our suggestions are greatly appreciated God bless, Ryan Webb - Philippines

Re: I dont want my users to see tomcat console. Any advice?

2008-05-08 Thread ryan webb
ers from seeing Tomcat Manager console, that means I cannot also get in.(if i use another computer). Sir, would you recommend me some resources, websites about what i am trying to accomplish? God bless, Ryan Webb - Philippines On Fri, May 9, 2008 at 11:24 AM, Johnny Kewl <[EMAIL PROTEC

Re: I dont want my users to see tomcat console. Any advice?

2008-05-09 Thread ryan webb
simple explanation.. and besides all your experiences are the best teachers. =) God bless, Ryan Webb - Philippines On Fri, May 9, 2008 at 9:54 PM, Christopher Schultz < [EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Johnny, > > Johnny Kewl w

Re: I dont want my users to see tomcat console. Any advice?

2008-05-12 Thread ryan webb
Mr. Chris, Yes thank you for your advice, I appreciate your tips. And follow your suggestion. Have a good day Mr. Chris. On Mon, May 12, 2008 at 10:39 PM, Christopher Schultz < [EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Ryan, > >

how to change http://107.105.13.1/webapp/ into http://www.mydomain.com/webapp/

2008-05-18 Thread ryan webb
Hello, How to change http://107.105.13.1/webapplication/ into http://www.mydomain.com/webapplication/ in tomcat? If not Tomcat related please let me know...(give me tips or anything) Thank you =) -- warmest regards, Ryan Webb - Philippines email: [EMAIL PROTECTED]

Re: how to change http://107.105.13.1/webapp/ into http://www.mydomain.com/webapp/

2008-05-19 Thread ryan webb
et your system registered with a DNS > service and it will respond to the www.mydomain.com name regardless of > service (tomcat, apache, iis, ssh, sftp, etc., ...). > > --David > > ryan webb wrote: > >> Hello, >> >> How to change http://107.105.13.1/webapplic

Re: how to change http://107.105.13.1/webapp/ into http://www.mydomain.com/webapp/

2008-05-20 Thread ryan webb
. On Tue, May 20, 2008 at 5:57 PM, David Smith <[EMAIL PROTECTED]> wrote: > You may not have to go through all that trouble. Check with the name > registration service you got your domain name from -- they may have DNS > service. > > --David > > > ryan webb wrote: &

How to make my web application the ROOT application

2008-05-20 Thread ryan webb
y appreciated. (web sites, etc) -- warmest regards, Ryan Webb - Philippines email: [EMAIL PROTECTED]

Re: How to make my web application the ROOT application

2008-05-21 Thread ryan webb
*Mr. Mark *Thank you very much for your reply, you have saved me! It is working like heaven. =) You are correct about this, it is a broken link. God bless you man! On Wed, May 21, 2008 at 3:09 PM, Mark Thomas <[EMAIL PROTECTED]> wrote: > ryan webb wrote: > >> Hello, >&

Status and Tomcat Manager links result in 404's

2008-05-28 Thread Ryan Steele
I don't see anything in the logs when this happens. Has anybody seen this before, and perhaps does anyone have any insight as to where I'm zigging where I should be zagging? Thanks! Ryan - To start a new topic,

Re: Status and Tomcat Manager links result in 404's

2008-05-28 Thread Ryan Steele
Caldarale, Charles R wrote: From: Ryan Steele [mailto:[EMAIL PROTECTED] Subject: Status and Tomcat Manager links result in 404's I've got a Tomcat 5.5.25 installation up and running for the most part. Platform? JRE/JDK version? FC6 and 1.4.2, respectively. They are outda

w3wp randomly crashes when redirector is used

2010-02-03 Thread Steve Ryan
Hello I really hope someone can help me with this. I have been trying to figure it out for days and I am beginning to go mad! The issue I am having appears to be very similar to https://issues.apache.org/bugzilla/show_bug.cgi?id=45063. It might even be the same issue. Note I can recreat

RE: w3wp randomly crashes when redirector is used

2010-02-03 Thread Steve Ryan
: 03 February 2010 20:44 To: Tomcat Users List Subject: Re: w3wp randomly crashes when redirector is used Hmmm. Are you sure that you are posting to the right list here ? Steve Ryan wrote: > Hello > > > > I really hope someone can help me with this. I have been trying to figu

RE: w3wp randomly crashes when redirector is used

2010-02-03 Thread Steve Ryan
aldarale, Charles R [mailto:chuck.caldar...@unisys.com] Sent: 03 February 2010 21:47 To: Tomcat Users List Subject: RE: w3wp randomly crashes when redirector is used > From: Steve Ryan [mailto:st...@acme.ie] > Subject: RE: w3wp randomly crashes when redirector is used > > Is there a more specific mai

RE: w3wp randomly crashes when redirector is used

2010-02-03 Thread Steve Ryan
Original Message- From: André Warnier [mailto:a...@ice-sa.com] Sent: 03 February 2010 21:58 To: Tomcat Users List Subject: Re: w3wp randomly crashes when redirector is used Steve Ryan wrote: > My issue is due to Tomcat Connectors 1.2.28. > > Is there a more specific mailing list

Performance issues when adding Tomcat JK redirector to IIS's "Default Web Site"?

2010-02-15 Thread Steve Ryan
Dear All I've tried googling this but can't find much, so I was hoping one of you guys might be able to help me. My web application lives under IIS's "Default Web Site". It needs to use the Tomcat JK redirector, so I have added the redirector as an ISAPI Filter on the "Default Web Site". Th

RE: Performance issues when adding Tomcat JK redirector to IIS's "Default Web Site"?

2010-02-15 Thread Steve Ryan
to get it working, as there are some out there that are... how shall I say it... "less than ideal" :-). Cheers, - Peter On 15 February 2010 11:30, Steve Ryan wrote: > Dear All > > > > I've tried googling this but can't find much, so I was hoping one of you >

RE: Performance issues when adding Tomcat JK redirector to IIS's "Default Web Site"?

2010-02-15 Thread Steve Ryan
what versions of IIS? Also, can you tell us whose instructions you followed to get it working, as there are some out there that are... how shall I say it... "less than ideal" :-). Cheers, - Peter On 15 February 2010 11:30, Steve Ryan wrote: > Dear All > > > > I've tried go

ADMINISTRATOR: PLEASE READ

2009-06-05 Thread Alexander Ryan
The "unsubscribe" feature for this list appears to be broken. Kindly unsubscribe me. Thank you. ~Alex Alex Ryan's Facebook profile > -Original Message- > From: Mohamedin [mailto:mohame...@easy-dialog.info] > Sent: Friday, June 05, 2009 9:40 AM > To: Tomcat Users List > Subject: APR is no

NioReceiver using 100% CPU

2010-05-10 Thread Schoenemann, Ryan
e two instances not to be able to communicate, and I'm not sure if this is what causes the NIOReciever to use all the CPU. Any help identifying what is causing the CPU usage increase would be appreciated. Thanks, Ryan **

Why does 'absolute-ordering' in web.xml without 'others' kill classpath scanning?

2015-02-13 Thread Ryan Scharer
types specified by @HandlesTypes and giving it to interested parties? 2. Is there an alternate way to skip a web-fragment, short of ripping it out of the jar, which I really don't want to do? Thanks! -Ryan

Re: Why does 'absolute-ordering' in web.xml without 'others' kill classpath scanning?

2015-02-13 Thread Ryan Scharer
ugh in the meantime my best bet may be to repackage the 3rd party jar minus its web-fragment. -R On Fri, Feb 13, 2015 at 1:18 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Ryan, > > On 2/13/15 12:59 PM, Ry

Re: Why does 'absolute-ordering' in web.xml without 'others' kill classpath scanning?

2015-02-15 Thread Ryan Scharer
r the assistance. -R On Fri, Feb 13, 2015 at 2:54 PM, Mark Thomas wrote: > On 13/02/2015 18:49, Ryan Scharer wrote: > > Chris, > > > > I share your misgivings about magic, though if it exhibits > well-documented > > and predictable behavior I usually just shrug and go al

Erroneous duplicate servlet mapping exception (IllegalArgumentException)

2015-03-04 Thread Adam Ryan
Hi, I had my tomcat webapp running fine (using Tomcat 8.0.9) in Eclipse Luna, and I decided to have a play around with the build path. After changing a few things and then changing everything back to its previous state, I am now getting an IllegalArgumentException: "The servlets named [api.rest.B

AccessLogValve logging incorrect/cached data

2016-09-13 Thread Ryan Melissari
We have recently noticed that our Tomcat installation is writing incorrect data to the localhost_access_log. It seems to be writing cached data of a previous request for some or all of the fields. For example, sometimes the jsessionid of another IP/client is written in the logs of having made a r

java.lang.IllegalArgumentException: Page directive: invalid value for import

2015-03-26 Thread Bonser, Ryan
Hi, I have a webapp that has been working fine for years in Tomcat 5,6 and earlier releases of 7 up to 7.0.33. Deployed the same app into Tomcat 8.0.20 and receiving the following errors in the localhost log Mar 26, 2015 10:52:15 AM org.apache.catalina.core.ApplicationDispatcher invoke SEVERE: S

Tomcat 7.0.66 expected release date?

2015-10-29 Thread Ryan Fong
G'day. I'd like to know if there is an expected release date for Tomcat 7.0.66. I was unable to locate a build schedule or calendar for Tomcat. Thank you.

"mime-mapping" and Content-Type

2017-02-20 Thread Ryan Yohnk
online posts on this topic but can’t seem find any official documentation for 8+. Is this feature something that’s still supported? If so, is there something I’m overlooking in my test or configuration? Any light you guys can shine on the subject would be greatly appreciated. Thanks! Ryan

Re: "mime-mapping" and Content-Type

2017-02-27 Thread Ryan Yohnk
Chris, On Feb 24, 2017, at 11:12 AM, Christopher Schultz mailto:ch...@christopherschultz.net>> wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Ryan, On 2/20/17 10:38 AM, Ryan Yohnk wrote: I’ve come across a problem for which the “mime-mapping” element would be a good so

How to use server.xml with embedded Tomcat 9?

2018-12-17 Thread Ryan Palmer
' folder in the same directory, it does not seem to be loaded when calling Tomcat.init(). Documentation is very sparse on the Tomcat class so I am unsure how to configure it the "standard" way. Thank you, Ryan Palmer

Re: log4j app logging

2018-12-18 Thread Ryan Palmer
Michael, The file needs to be named log4j.properties (or .xml, .json, etc.) and needs to be in the classpath. You ommitted the 'j'. Sent from BlueMail On Dec 18, 2018, at 9:42 AM, "Lemke, Michael ST/HZA-ZIC2" mailto:lemke...@schaeffler.

Re: log4j app logging

2018-12-18 Thread Ryan Palmer
Michael, Tomcat uses JULI internally. Have you taken necessary steps to redirect JULI to log4j? Thanks, Ryan From: Lemke, Michael ST/HZA-ZIC2 Sent: Tuesday, December 18, 2018 10:20 AM To: Tomcat Users List Subject: RE: log4j app logging On December 18, 2018 6

Re: Context specific context.xml not loading.

2018-12-20 Thread Ryan Palmer
Melvin, Do you have any context.xml for this context in the CATALINA_BASE/conf/Catalina/localhost/ directory? It may be overriding your META-INF/context.xml -Ryan On Dec 19, 2018, at 10:45 PM, Melvin mailto:melvind...@gmail.com>> wrote: Hello All, Just came across a problem today

  1   2   >