Tomcat needs an authenticator valve for OpenID/MSAL!

2023-04-07 Thread Kevin Edward
Tomcat community, We have been using keycloak tomcat valves for SAML, but now we are moving to OpenID. Who in the tomcat community can create/support a tomcat authenticator valve using the MSAL library? I have the example authentication servlet working for MSAL below. Seems it could be easily co

Re: How to pass the --enable-preview parameter when using JSVC?

2020-03-20 Thread ken edward
t; > On 3/18/20 16:25, ken edward wrote: > > Hello, > > > > When I deploy my war it produces the below error message, telling > > me to pass the "--enable-preview". I can add the > > "--enable-preview" to my tomcat start.sh script dev environm

How to pass the --enable-preview parameter when using JSVC?

2020-03-18 Thread ken edward
Hello, When I deploy my war it produces the below error message, telling me to pass the "--enable-preview". I can add the "--enable-preview" to my tomcat start.sh script dev environment to resolve the problem. However, if I launch the production tomcat using the jsvc binary (to bind to port 443

Multiple authentication methods? Fallback from keycloak saml to basic/form auth?

2017-08-23 Thread ken edward
Hello, I have tomcat value for authentication implemented and working (keycloak saml tomcat adapter). but how can I implement a fallback to form/basic authentication? Can I chain auth valves? Ken - To unsubscribe, e-mail: users-

Is there a tomcat SP valve for ADFS IdP??

2017-06-07 Thread ken edward
Hello, I have an Idp (my ADFS) and I have a tomcat server with a simple j2ee web application. I know I can stand up a keycloak sever, and use an SP adapter for tomcat, BUT is there a way to simply install a tomcat SP valve/libs that would talk to the IdP and bypass having to install the keycloak

Re: Tomcat compatibility based on OS

2017-01-12 Thread Edward Bicker
Hello Chris, Can you help to have Tomcat user group UN-subscribe me. I have tried to send email but it is not UN-subscribing me. REgards, /Ed -Original Message- >From: Christopher Schultz >Sent: Jan 12, 2017 11:55 AM >To: Tomcat Users List >Subject: Re: Tomcat compatibility based on OS

Re: Tomcat7 under Debian dont use outgoing proxy

2017-01-06 Thread Edward Bicker
Tried to Unsubscribe. Did not work. Can you ask Web Master to Unsubscribe me. Thanks, /Ed -Original Message- >From: André Warnier (tomcat) >Sent: Jan 6, 2017 7:13 AM >To: users@tomcat.apache.org >Subject: Re: Tomcat7 under Debian dont use outgoing proxy > >Hi. See below. > >On 06.01.2017

Re: How to configure SPNEGO authentication with fallback to FORM auth?

2016-06-30 Thread ken edward
I did get it to work. Simply merged existing spnego and form auth valves together, I will try to post later.. On Fri, Jun 24, 2016 at 6:21 PM, Terence M. Bandoian wrote: > On 6/24/2016 10:45 AM, ken edward wrote: > >> On Fri, Jun 24, 2016 at 11:26 AM, Mark Thomas wrote: >> &

Re: How to configure SPNEGO authentication with fallback to FORM auth?

2016-06-24 Thread ken edward
On Fri, Jun 24, 2016 at 11:26 AM, Mark Thomas wrote: > On 24/06/2016 16:17, ken edward wrote: > > On Fri, Jun 24, 2016 at 10:46 AM, Mark Thomas wrote: > > > >> On 24 June 2016 14:22:32 BST, ken edward wrote: > >>> Hello, > >>> > >>&g

Re: How to configure SPNEGO authentication with fallback to FORM auth?

2016-06-24 Thread ken edward
On Fri, Jun 24, 2016 at 10:46 AM, Mark Thomas wrote: > On 24 June 2016 14:22:32 BST, ken edward wrote: > >Hello, > > > >I have tomcat 8 on linux, configured with kerberos/SPNEGO > >authentication. > >All works well, but if the client cannot use kerberos t

How to configure SPNEGO authentication with fallback to FORM auth?

2016-06-24 Thread ken edward
Hello, I have tomcat 8 on linux, configured with kerberos/SPNEGO authentication. All works well, but if the client cannot use kerberos to authenticate, it will not fallback to FORM authentication. I see some references that tomcat 8 does not do fallback negotiation for FORM auth. True? Any workar

Tomcat Failure Modes

2016-02-11 Thread Edward Hart (c)
Q1: Can Tomcat be configured to 'roll back' if a patch update causes a TC failure on a production server? Q2: Can TC be configured to fail to a known safe state in the event of server failure during operation? I am developing a Security Technical Implement Guide (STIG) for Tomcat. A STIG is

RE: Help with Apache Tomcat/7.0.53 SSL issue

2014-10-07 Thread Brewer, Edward L
To all, Oh... Here is the entry in our server.xml (probably the most important part) Users connect directly to first listed connection The second SSL port is not currently used. Thanks, Lee From: Brewer, Edward L [mailto:lee.bre...@vanderbilt.edu] Sent: Tuesday, October 07, 2014 1

Help with Apache Tomcat/7.0.53 SSL issue

2014-10-07 Thread Brewer, Edward L
To all, I am using Apache Tomcat 7.0.53 and I am having an intermittent issue with SSL. I am currently running three environments (Dev, UAT, and Prod. Prod comprises 4 VMs (uname states version as "2.6.32-431.11.2.el6.x86_x86_64 GNU/Linux" ) with each containing a local version of Java [ Ja

WebappClassLoader problem

2013-07-31 Thread Edward W. Rouse
I'm losing my mind here. I finally went full standard to see if the changes in tomcat 7 would allow me to avoid custom class loaders and contexts, but ran into a catch-22 issue. I was getting: java.lang.ClassCastException: com.sun.xml.ws.transport.http.servlet.WSServletContainerInitializer

RE: context problem

2013-07-24 Thread Edward W. Rouse
ct: RE: context problem > From: Edward W. Rouse [mailto:ero...@comsquared.com] > Subject: context problem > IDWMClassLoader extends WebappClassLoader. > I have been reading to docs to try and figure out how to get both the > normal webapp base directories and the outside the ba

RE: context problem

2013-07-24 Thread Edward W. Rouse
Thanks for the response, let’s work backwards. 3 – yes 2 – looked at and not applicable in this case 1 – The custom classLoader is set fine and it works, except it doesn’t loader the classes from the webapp base dir, only the outside base dir. Also, if I leave out the custom classLoader by r

context problem

2013-07-24 Thread Edward W. Rouse
I have a web app that worked in version 5.5, not working in version 7.0. The Context.xml is: IDWMFileDirContext extend FileDirContext, IDWMClassLoader extends WebappClassLoader. When IDWMFileDirContext is called, it is called with the default (no arg) constructor,

WebappClassLoader javadoc curiosity

2013-07-18 Thread Edward W. Rouse
Looking at http://tomcat.apache.org/tomcat-7.0-doc/api/index.html for more info about org.apache.catalina.loader.WebappClassLoader and I ran up against a bit of missing information. The 4th implementation note mentions addJar(), which is what I wanted a bit more info on, but addJar() is not

RE: Tomcat7 and SPNEGO configuration questions

2013-06-11 Thread Edward Siewick
@tomcat.apache.org Subject: RE: Tomcat7 and SPNEGO configuration questions I am in a similar situation to Edward. My authentication says something like: principal's key obtained from the keytab Acquire TGT using AS Exchange default etypes for default_tkt_enctypes: 23 18 17. >>> Kr

RE: Tomcat7 and SPNEGO configuration questions

2013-06-11 Thread Edward Siewick
rb5.ASN1_BAD_ID); 141 } This snippet is from openjdk; http://cr.openjdk.java.net/~weijun/6966259/webrev.01/src/share/classes/sun/security/krb5/internal/KDCRep.java.html. There's also Oracle's http://www.docjar.com/html/api/sun/security/krb5/internal/KDCReq.java.h

RE: Tomcat7 and SPNEGO configuration questions

2013-06-10 Thread Edward Siewick
I've tried an AES128 keytab and matching krb5.conf; this didn't get any further. Edward ____ From: Edward Siewick [esiew...@ementum.com] Sent: Monday, June 10, 2013 3:31 PM To: Tomcat Users List Subject: RE: Tomcat7 and SPNEGO configuration questi

RE: Tomcat7 and SPNEGO configuration questions

2013-06-10 Thread Edward Siewick
; EType: sun.security.krb5.internal.crypto.Aes128CtsHmacSha1EType replay cache for user00...@example.com is null. object 0: 1370027872357/357663 >>> KrbApReq: authenticate succeed. Krb5Context setting peerSeqNumber to: 758340766 Krb5Context setting mySeqNumber to: 758340766 Edward

RE: Tomcat7 and SPNEGO configuration questions

2013-06-03 Thread Edward Siewick
CP:88, timeout=3, number >>> of retries =3, #bytes=255 >>> KDCCommunication: kdc=openiddc.openidmdev.com TCP:88, timeout=3,Attempt >>> =1, #bytes=255 >>>DEBUG: TCPClient reading 1611 bytes >>> KrbKdcReq send: #bytes read=1611 >>> Krb

RE: Tomcat7 and SPNEGO configuration questions

2013-05-31 Thread Edward Siewick
From: Felix Schumacher [felix.schumac...@internetallee.de] Sent: Friday, May 31, 2013 3:22 PM To: users@tomcat.apache.org Subject: Re: Tomcat7 and SPNEGO configuration questions Hi Edward. Am Freitag, den 31.05.2013, 13:24 -0500 schrieb Edward Siewick

RE: Tomcat7 and SPNEGO configuration questions

2013-05-31 Thread Edward Siewick
From: Felix Schumacher [felix.schumac...@internetallee.de] Sent: Friday, May 31, 2013 1:18 PM To: users@tomcat.apache.org Subject: Re: Tomcat7 and SPNEGO configuration questions Am Freitag, den 31.05.2013, 10:17 -0500 schrieb Edward Siewick: >&

RE: Tomcat7 and SPNEGO configuration questions

2013-05-31 Thread Edward Siewick
e tomcat hostname explicitly into the list of > "trusted" servers ?). André, Thanks for the good guess. The server, DC and workstation are all virtual hosts in an isolated lab context. So tinkering around with configurations isn't a problem. I'v

Tomcat7 and SPNEGO configuration questions

2013-05-31 Thread Edward Siewick
Krb5LoginModule is actually reading /usr/share/tomcat7c/conf/tomcat7.keytab; I can change: keyTab="/usr/share/tomcat7c/conf/tomcat7.keytab" to: keyTab="/usr/share/tomcat7c/conf-junk/tomcat7.keytab" and get the same log "Key for the principal...not available" result (+ "-junk" of course). Well-founded guidance, clues, and even good guesses are all welcome. Edward

Re: Is there a REAL solution to the

2012-09-15 Thread Edward Bicker
Yeah, but I thought OpenSSL had a patch for this that worked. Read...#2635: 1/n-1 record splitting technique for CVE-2011-3389 -Original Message- >From: Brian Braun >Sent: Sep 14, 2012 11:12 PM >To: Tomcat Users List >Subject: Is there a REAL solution to the "BEAST attack" (CVE-2011-338

RE: ssl handshake problem

2011-10-17 Thread Edward Quick
Sorry I meant it was a java issue (typo!) -Original Message- From: Edward Quick Sent: 17 October 2011 09:17 To: Tomcat Users List Subject: RE: ssl handshake problem Hi Andre, thanks for your reply. I tested this a bit more and did a write up of the problem for anyone who's inter

RE: ssl handshake problem

2011-10-17 Thread Edward Quick
[mailto:a...@ice-sa.com] Sent: 12 October 2011 16:41 To: Tomcat Users List Subject: Re: ssl handshake problem Edward Quick wrote: > Thanks for your reply Chris. No I'm not confident a restart would fix it. > Having said that I haven't seen the ssl handshake problem since ye

RE: ssl handshake problem

2011-10-12 Thread Edward Quick
Found out the reason for the ssl handshake error. The certificate chain was in the wrong order (being server certificate, Root CA, Intermediate, instead of server certificate, Intermediate, Root CA). -Original Message- From: Edward Quick [mailto:edward.qu...@iggroup.com] Sent: 12

RE: ssl handshake problem

2011-10-12 Thread Edward Quick
Sent: 11 October 2011 16:30 To: Tomcat Users List Subject: Re: ssl handshake problem -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Edward, On 10/11/2011 9:21 AM, Edward Quick wrote: > I have an ssl handshake issue with an application running on > tomcat that talks to an ssl site. This site

ssl handshake problem

2011-10-11 Thread Edward Quick
Hi, I have an ssl handshake issue with an application running on tomcat that talks to an ssl site. This site renewed their ssl certificate recently, however it was signed with the G5 and G3 intermediate verisign CA certificates which are imported into the java truststore that my tomcat uses. I

RE: Bug 51698 - ajp CPing/Forward-Request packet forgery

2011-09-02 Thread Edward Quick
Sent: 02 September 2011 14:18 To: Tomcat Users List Subject: Re: Bug 51698 - ajp CPing/Forward-Request packet forgery On 02/09/2011 14:12, Edward Quick wrote: > Hi there, > > I was testing out the packet forgery example (at > https://issues.apache.org/bugzilla/show_bug.cgi?id=51698) &g

Bug 51698 - ajp CPing/Forward-Request packet forgery

2011-09-02 Thread Edward Quick
Hi there, I was testing out the packet forgery example (at https://issues.apache.org/bugzilla/show_bug.cgi?id=51698) to see if my site was vulnerable and got the following results. I'm not sure looking at the code comments in ForwardRequestForgeryExample.java if the output below means it's vulner

RE: Ajp13Processor threads are not getting closed.

2011-08-25 Thread Edward Quick
ntec.com -Original Message- From: Edward Quick [mailto:edward.qu...@iggroup.com] Sent: Wednesday, August 24, 2011 3:20 PM To: Tomcat Users List Subject: RE: Ajp13Processor threads are not getting closed. You could try adding JkWatchDogInterval 30. That did the trick for me. -Or

RE: Ajp13Processor threads are not getting closed.

2011-08-24 Thread Edward Quick
You could try adding JkWatchDogInterval 30. That did the trick for me. -Original Message- From: Jagadish Raj R [mailto:jagadish_ra...@symantec.com] Sent: 24 August 2011 10:39 To: Tomcat Users List Subject: Ajp13Processor threads are not getting closed. Hi Tomcat Users, I have a Tomcat se

RE: mod_jk question about lingering close_waits

2011-07-15 Thread Edward Quick
Thanks for your replies. I found the solution was to set JkWatchdogInterval (by default this is not on). I set it to 30, and observed the FIN_WAIT disappears after 60 seconds (this could be the worker.maintain setting?) and the CLOSE_WAIT thread disappeared when it reached the connection_pool_ti

mod_jk question about lingering close_waits

2011-07-13 Thread Edward Quick
Hi, Apologies in advance if this is the wrong mailing list. I was unable to find one specific to mod_jk and this looked the most relevant. I have the following apache tomcat server configuration set up: Apache 2.2.3 , mod_jk 1.2.32 , and tomcat 6.0.32 running HelloWorld.war If I send a request

Re: Is IBM Right About Java?

2011-02-10 Thread Edward Bicker
a? > >On 2/9/11 8:01 PM, Edward Bicker wrote: >> >> I agree, I have enjoying Charles remarks and comments as well. >> I say to PID, he needs to PIDDLE off and leave us alone. >> /Ed > >// eds_sense_of_humor is a little-known but primitive type >char *str = (c

Re: Is IBM Right About Java?

2011-02-09 Thread Edward Bicker
I agree, I have enjoying Charles remarks and comments as well. I say to PID, he needs to PIDDLE off and leave us alone. /Ed -Original Message- >From: Jordan Michaels >Sent: Feb 8, 2011 3:39 PM >To: Tomcat Users List >Subject: Re: Is IBM Right About Java? > >pid's using a mail client th

Re: Where do files served get logged?

2010-10-14 Thread Edward Bicker
In the served files log. -Original Message- >From: Jeff Hubbs >Sent: Oct 14, 2010 12:15 PM >To: Tomcat Users List >Subject: Re: Where do files served get logged? > > On 10/14/10 12:08 PM, Caldarale, Charles R wrote: >> >>> I'm trying to make sure Tomcat is not serving static >>> fil

Re: Doubt in tomcat session clustering

2010-03-17 Thread Edward J. Yoon
iginal Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: 17 March 2010 09:45 > To: Tomcat Users List > Subject: Re: Doubt in tomcat session clustering > > On 17/03/2010 08:38, Edward J. Yoon wrote: >> Mar 17, 2010 5:23:00 PM >> org.apache.catalina.tribes.gr

Doubt in tomcat session clustering

2010-03-17 Thread Edward J. Yoon
at java.net.PlainSocketImpl.socketConnect(Native Method) What's wrong with my configuration? ... ... -- Best Regards, Edward J. Yoon Co-founder of Twieat.Us edwardy...@apache.org http://blog.udanax.org - To unsubscribe, e-mail: user

RE: looking for a web usesage / analytics package

2009-04-30 Thread Edward Bicker
I use Statcounter.com The free version gives me stats and tracks. Maybe it will work for you. -Original Message- >From: Andrew Davidson >Sent: Apr 29, 2009 6:24 PM >To: 'Tomcat Users List' >Subject: RE: looking for a web usesage / analytics package > >Hi Hassan > >Thanks for the sugges

RE: Tomcat users meetup in London

2009-04-23 Thread Edward Bicker
I am up for fish 'n' chips at duggy's -Original Message- >From: "Caldarale, Charles R" >Sent: Apr 23, 2009 9:17 AM >To: Tomcat Users List >Subject: RE: Tomcat users meetup in London > >> From: Mark Thomas [mailto:ma...@apache.org] >> Subject: Tomcat users meetup in London >> >> Just

RE: Context and swallowOutput

2009-04-03 Thread Edward Bicker
Ok, got it...Thanks for quick response... /Ed -Original Message- >From: "Caldarale, Charles R" >Sent: Apr 3, 2009 10:50 AM >To: Tomcat Users List >Subject: RE: Context and swallowOutput > >> From: Caldarale, Charles R >> Subject: RE: Context and swallowOutput >> >> Strictly speaking, th

RE: Context and swallowOutput

2009-04-03 Thread Edward Bicker
Charles, When you say conf/Catalina/[host]/[appName].xml what are you refering to when you say .../host/ ? What do you want us to add as /host/ / Can you give example? /Ed -Original Message- >From: "Caldarale, Charles R" >Sent: Apr 3, 2009 10:16 AM >To: Tomcat Users List >Sub

Re: CPU 100% and restart...

2009-04-02 Thread Edward Bicker
What Tomcat, Java and OS versions were they? -Original Message- >From: Pid >Sent: Apr 2, 2009 1:14 PM >To: Tomcat Users List >Subject: Re: CPU 100% and restart... > >Laura Bartolomé wrote: >> Hi again >> >> A few minutes ago we have these problems in our server: >> >> The CPU usage was

Re: Tomcat for Dummies

2009-03-13 Thread Edward Bicker
This is a Fantastic request for Info. I am relieved to know there are some folks that can still frame a question in such a way to be a pleasure to read. Thanks, Ed -Original Message- >From: André Warnier >Sent: Mar 13, 2009 12:04 PM >To: Tomcat Users List >Subject: Re: Tomcat for Dumm

Re: RemoteAddrValve and RemoteHostValve

2009-03-05 Thread Edward Song
; > iEYEARECAAYFAkmsFQIACgkQ9CaO5/Lv0PC2mACdEmW+hq/u2W+jY7kgr9Md4Qhm > dBQAnRxW3YE+wsbX3Nabkauk513AtYpc > =DXBg > -END PGP SIGNATURE- > > ----- > To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org > For additional commands, e-mail: users-h...@tomcat.apache.org > > -- Regards, Edward Song Java Web Developer 631-396-5000 x306

Re: Oracle database calling the web app?

2009-01-06 Thread Edward Dowgiallo
r RESTful). > > > Regards, Youssef > > > On Wed, Jan 7, 2009 at 12:26 AM, Edward Dowgiallo >wrote: > > > Support for what you want to do is actually a feature in Oracle 11g. For > > Oracle 10g, you want to look at the publish/subscribe support which is > part

Re: Oracle database calling the web app?

2009-01-06 Thread Edward Dowgiallo
It is not necessary to poll an Oracle database. Advanced queueing in combination with triggers provide an event driven framework. Ed On Tue, Jan 6, 2009 at 5:28 PM, Mark Thomas wrote: > Bill Davidson wrote: > > Is it possible to set up a callback like situation so that a trigger in > an > > Or

Re: Oracle database calling the web app?

2009-01-06 Thread Edward Dowgiallo
Support for what you want to do is actually a feature in Oracle 11g. For Oracle 10g, you want to look at the publish/subscribe support which is part of advanced queueing. The documentation is available online at http://otn.oracle.com. Ed On Tue, Jan 6, 2009 at 5:22 PM, Bill Davidson wrote: >

Re: Servlet.jsp is not available

2008-12-04 Thread Edward Barrow
uring development, so it should have worked on Tomcat 5.5; but maybe not. Oh well. Edward Barrow wrote: > I'm developing a webapp using Netbeans 6.5 and it works fine on the > development machine. On deploying it to a semi-production machine, it > immediately fails with a 404 "Serv

Servlet.jsp is not available

2008-12-04 Thread Edward Barrow
s are all where they should be)? thanks for any pointers, edward -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkk32XEACgkQ0JfS0fIxFN2aygCgh97YxFfO0lQ/eQ5qRYrp+311 lkUAnjsEy2nCg2g59P7d8ZZoORhe1Loc =Hjdg --

Re: java.lang.UnsatisfiedLinkError

2008-12-04 Thread Edward Barrow
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 the jvm can't find a native library, which will be called libeMatrix.so on a *nix system, or eMatrix.dll on win. This library should be somewhere in the eMatrix distribution and you must make sure that it's on the java.library.path, which you can find

Re: How can Servlet detect lost of connection to client?

2008-09-27 Thread Edward Dowgiallo
How about putting in a lifecycle listener for Session destruction? Ed On Sat, Sep 27, 2008 at 6:14 PM, Martin Gainty <[EMAIL PROTECTED]> wrote: > > agreed.. I would definitely try that solution first > > also you may want to use a different connector (such as NIOConnector..) > that supports Even

Denying IP Addresses

2008-09-09 Thread Edward Song
Hi all, Just soliciting some feedback on how to effectively, thwart data mining on our server. We have a reactive solution when it comes to screen scraping and data mining on Tomcat 5.5. We simply find the offending IP's and add them to the deny rules using the Valve - org.apache.catali

RE: Doubt on lifecycle of a class in "shared" folder

2008-07-17 Thread Edward Song
I believe it is because you are sharing the class definition, not instances, even if they are static instances. So webapp1 will create a static instance of Sharer, so will webapp2 off of the same class definition, but each will have its own instance. -Original Message- From: java_is_ever

RE: What are the consequences of putting shared web resources in the "common" folder?

2008-07-09 Thread Edward Song
"common" folder? To: Tomcat Users List Send reply to: Tomcat Users List > Steve Ochani wrote: > > On 9 Jul 2008 at 11:57, Edward Song wrote: > > > > > >> What are the consequences of putting shared web resources in t

What are the consequences of putting shared web resources in the "common" folder?

2008-07-09 Thread Edward Song
What are the consequences of putting shared web resources in the "common" folder vs. the "shared" folder? I'm not sure how to articulate the consequences of putting shared resources in the "common" folder. The following below is in the documentation, but is it enough to force another QA cycl

data source information in context.xml - can it be external to the war

2008-04-14 Thread Edward Pricer
I have a web application that includes a jndi resource data sourcedefined in context.xml. This is causing me problems when I deploy todifferent environments (test/production) because the data sourceparameters change. What is the preferred way to store such jndiinformation external to the war? T

RE: memoryrealm

2008-03-12 Thread Edward Quick
Thanks Chuck, I'm not sure about that because I copied the format that's used in the tomcat manager webapp 's web.xml in tomcat-5.5.16/server/webapps/manager/WEB-INF/web.xml which has in it: Link to the UserDatabase instance from which we request lists of defined role n

RE: memoryrealm

2008-03-12 Thread Edward Quick
Thanks Chuck. Here is my context.xml now: And this is in the webapp's META-INF. I also updated the webapps web.xml file so that it refers to SampleUserDatabase instead of Tomcat's UserDatabase. SampleUserDatabase org.apache.catalina.UserDatabase Unfortunatel

RE: memoryrealm

2008-03-12 Thread Edward Quick
18:52,294 DEBUG org.apache.commons.digester.Digester - No > rules found matching 'tomcat-users/role'. > 2008-03-12 12:18:52,294 DEBUG org.apache.commons.digester.Digester - > Popping body text ' > > ' > 2008-03-12 12:18:52,295 DEBUG org.apache.commons.digester.Digeste

RE: memoryrealm

2008-03-12 Thread Edward Quick
008-03-12 12:18:52,295 DEBUG org.apache.commons.digester.Digester.sax - characters( ) 2008-03-12 12:18:52,295 DEBUG org.apache.commons.digester.Digester.sax - startElement(,,role) 2008-03-12 12:18:52,295 DEBUG org.apache.commons.digester.Digester - Pushing body text ' > On your r

RE: memoryrealm

2008-03-12 Thread Edward Quick
ers.xml is: > > whats in your web.xml ? > > is your app forcing a login ? > > all the realm provides is a system to do authentication > unless you are triggering it, it isn't used > > > > On Wed, 2008-03-12 at 10:36 +, Edwa

memoryrealm

2008-03-12 Thread Edward Quick
Hi, I would like to specify my own tomcat-users.xml for my webapp to use (not the server's main one in conf/tomcat-user.xml). I tried the following configuration in my webapp's context.xml file but unfortunately when I went to the URL, I wasn't even prompted for a logon: Could so

difference between TC5.5 and TC6

2008-03-05 Thread Edward Quick
I have a question about the difference between TC 5.5 and 6. We use 5.5 as our standard, but a vendor we are working with is insisting their webapp will only work with TC6 because they have coded to JSP standard 2.2 (may be 2.1?) I have a couple of questions about this: Where do I go to check

Null Pointer In java.lang.Package.isSealed because of Thread Saftey Issue with Webapp Classloader

2008-02-12 Thread Edward Costello
Morning, With tomcat 5.5.20 I've been getting NullPointer Exceptions out of java.lang.Package.isSealed when multiple threads hit a web-app as it's starting up. Basically the stack trace looks like the below. I believe that what's triggering the error in this case is an RMI thread loading the class

RE: multi-level context path

2008-01-15 Thread Edward Quick
> > > From: Edward Quick [mailto:[EMAIL PROTECTED] > > Subject: multi-level > > > context path> > > > The context path is set to deploy it to /dpm/myApp.> > > > > What context path? If you're talking about the path attribute of the>

multi-level context path

2008-01-15 Thread Edward Quick
Hi I'm running tomcat 5.5.16 on jdk1.5.0_10, Redhat ES4 and having a problem when I deploy my war file myApp.war. The context path is set to deploy it to /dpm/myApp. However tomcat is deploying it to /myApp. On my localhost (with NetBeans) running Java EE 5 SDK Update 4 on tomcat 6.0.14, the

Re: PLS-00201: identifier '' must be declared

2007-12-05 Thread Edward Dowgiallo
The schema name is not required in general. Speak to your DBA about creating a public synonym for the package. Ed On 12/5/07, khalid syed <[EMAIL PROTECTED]> wrote: > Hi, > > I am trying to call a stored procedure defined within a package in Oracle > database from my servlet using java.sql.Calla

Re: java.lang.OutOfMemoryError: PermGen space

2007-11-16 Thread Edward Dowgiallo
I'm getting this error on a development server as we constantly redeploy the same app for testing. The problem does not occur until after several dozen redeployments. This makes sense since each redeployment contains new versions of some of the application's classes. Ed On 11/16/07, Peter Crowt

Re: Best Linux distribution

2007-11-14 Thread Edward Dowgiallo
I believe Oracle Corporation has an Oracle Enterprise Linux which you can download for free. They charge you for support however. Ed On 11/14/07, Steve Ochani <[EMAIL PROTECTED]> wrote: > On 14 Nov 2007 at 22:58, Lionel Crine wrote: > > > > another distribution to know. You have some support. Fe

PKI

2007-10-09 Thread Edward Dowgiallo
Does anyone have a war file blank they are willing to share that is correctly setup for PKI on Tomcat 5.5 or 6.0? Ed - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

PKI and the manager servlet

2007-10-05 Thread Edward Dowgiallo
Hi, As the manager servlet is currently written, is it possible to configure it to use CLIENT-CERT authentication instead of BASIC authentication? I've got CLIENT-CERT working with the locally developed apps, but am having no luck configuring the manager or admin servlets. The locally developed

manager servlet and SSL

2007-10-04 Thread Edward Dowgiallo
Hi, As the manager servlet is currently written, is it possible to configure it to use CLIENT-CERT authentication instead of BASIC authentication? I've got CLIENT-CERT working with the locally developed apps, but am having no luck configuring the manager or admin servlets. The locally developed

Latest MS patches

2007-07-31 Thread Edward . W . WillettJr . contractor
From: Willett, Jr., Edward W. (Contractor) Sent: Tuesday, July 31, 2007 8:13 AM To: 'users@tomcat.apache.org' Subject: Latest MS patches Does anyone know of any problem with Tomcat 6.0.1 and the latest MS patches. Eddie

Re: Images in ROOT/images are not found

2007-07-25 Thread Edward Mckee
? If so, that's probably receiving your request instead. --David Edward Mckee wrote: When I try to load images in ROOT/images I get a "requested resource (/images/submit.jpg) is not available." error If I move this image to ROOT/image it works. The the file is in the i

Re: Images in ROOT/images are not found

2007-07-25 Thread Edward Mckee
request instead. --David Edward Mckee wrote: When I try to load images in ROOT/images I get a "requested resource (/images/submit.jpg) is not available." error If I move this image to ROOT/image it works. The the file is in the images directory webapps directory is webapps/ ROOT/images

Images in ROOT/images are not found

2007-07-25 Thread Edward Mckee
When I try to load images in ROOT/images I get a "requested resource (/images/submit.jpg) is not available." error If I move this image to ROOT/image it works. The the file is in the images directory webapps directory is webapps/ ROOT/images/submit.jpg The file is in the images and image dir

RE: Apache going down after few hours.

2007-03-09 Thread Edward Quick
Hi, You're going to have to do some more digging. A few questions which might help shed some light: Anything in the apache and tomcat logs? Look for MaxClients reached. Anything in the syslog? Are you using the latest apache and mod_jk ? If not, get them! Have you checked the mod_jk setting

Tomcat Timeout

2007-01-18 Thread Edward Quick
Hi, Could someone point me to some docs or give me some advice on Tomcat timeouts please? There seem to be so many places to set it! I have an Apache 2.0.59 - mod_jk 1.2.15 - jakarta-tomcat-4.1.31 server set up, and a webapp deployed on this which opens http connections to a 3rd party external

Can't find file - newbie question

2006-11-15 Thread edward
Hi, I've got a class that reads a file when it is first invoked. When I run this class standalone, (meaning not using Tomcat), the class finds the file and can read it just fine. But when I call the class from a JSP under Tomcat, I get an error that indicates the class cannot find the file.

RE: Unable to compile class for JSP

2006-11-06 Thread edward
Well, umm, actually I wasn't aware that the default package isn't allowed. I just considered it poor practice to use. Let me go fix that. Thanks. "Caldarale wrote: > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > Subject: Unable to compile class for JSP > > > > Class foo is in

Unable to compile class for JSP

2006-11-06 Thread edward
Hi, I'm having a newbie type of problem with getting a JSP to compile. Seems it can't find my class. Rest of error messages: Generated servlet error: The import FOO cannot be resolved Following files are located in Tomcat/webapps/VIP Code: Home.jsp <%@ page import="java.util.*" %> Home Pa

logging status code

2006-09-26 Thread Edward Quick
Hi, In Apache, you can specify directives <%s of >%s in the logformat to get the original status code, and the actual status code returned for an http request. I use this for my error page which returns back a code 200, but also gives me a log with the real return code. Now I am trying to se

RE: Handling Tomcat Errors in Apache

2006-09-23 Thread Edward Quick
> Can I have one cgi-bin directory, or does there > have to be one in each webapp? By design, webapps are intended to be independent, so error handling is also independent. Don't have any personal experience here, but possibly you could use a copy of the same error page in each webapp that does

RE: Handling Tomcat Errors in Apache

2006-09-23 Thread Edward Quick
> From: Edward Quick [mailto:[EMAIL PROTECTED] > Subject: Handling Tomcat Errors in Apache > > > 404 > /cgi-bin/error.cgi > > > I guess the location tag is wrong here as it doesn't work, but I'm > not surewhat else to put. Quoting from the

Handling Tomcat Errors in Apache

2006-09-23 Thread Edward Quick
Hi, I have an Apache 2 -> mod_jk -> Tomcat 5.5.16 set up and I'm trying to get Tomcat errors handled by Apache. In Apache I have: ErrorDocument 404 /cgi-bin/error.cgi And in Tomcat's web.xml I have 404 /cgi-bin/error.cgi I guess the location tag is wrong here as it doesn't work, but

Handling Tomcat Errors in Apache

2006-09-22 Thread Edward Quick
Hi, I have an Apache 2 -> mod_jk -> Tomcat 5.5.16 set up and I'm trying to get Tomcat errors handled by Apache. In Apache I have: ErrorDocument 404 /cgi-bin/error.cgi And in Tomcat's web.xml I have 404 /cgi-bin/error.cgi I guess the location tag is wrong here as it doesn't work, bu

Re: mod_jk garbled - how to change JK* directives for ProxyPass?

2006-09-06 Thread edward pedersson
With JKMount you would have done this with the location JkMount worker1 Order allow,deny Allow from all but I think with the mod_proxy_ajp you need to do something like this ProxyPass $1.jsp ajp://localhost:8009/$1.jsp don't know if that will actually work as i am not an apache g

Tomcat 5.5.17 & IIS 6.0 on separate physical se rvers – looking for assistance with SSL ( JSSE)

2006-08-28 Thread Edward Julian
on the path to encryption? I must figure out how to have IIS forward SSL/HTTPS requests to Tomcat and have Tomcat serve the requests via SSL/HTTPS. Any help is much appreciated. Edward

tomcat 5 console not closing after executing shutdown.bat

2006-08-14 Thread Edward Murphy
Hi, tomcat versionfiltered=apache-tomcat-5.5.16 jdk version = java version 1.5.0_07 I am having issues shutting down tomcat 5 When I execute shutdown.bat the server stops and I can no longer deploy applications but the tomcat console stays open and tha java.exe process stays a

RE: Response time banding

2006-08-03 Thread Edward Hibbert
Well, it turns out I was wrong about the 2s banding. This _was_ garbage collection, and was cured by using -XX:+UseConcMarkSweepGC -XX:+UseParNewGC. I still get the 5s banding, though, which is a puzzler. Edward. -Original Message- From: Kurt Overberg [mailto:[EMAIL PROTECTED] Sent

Response time banding

2006-07-26 Thread Edward Hibbert
en. We've looked at garbage collection as the most likely source of this, and ruled it out. Has anyone seen anything similar, or got any bright ideas? Regards, Edward.

Re: Where is my Tomcat

2006-07-24 Thread edward
OOzy Pal wrote: >> >> > > I found the JKD but I am not sure how start tomcat. I am really stuck. > I am not sure what am I missing? Is there a good tutorial for > installing tomcat? > > Any help is appreciated. The init scripts that come with the package are generally a pretty good way to start

  1   2   >