RE: form base auth with custom messages

2004-03-31 Thread Koes, Derrick
You should be able to control this from your form-error-page. -Original Message- From: Summers, Bert W. [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 11:48 AM To: [EMAIL PROTECTED] Subject: form base auth with custom messages I am using form base authentication with

RE: form base auth with custom messages

2004-03-31 Thread Koes, Derrick
you get info from the FormAuthenticator? It seems to be a sendRedirect so all request parameters are gone. -Original Message- From: Koes, Derrick [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 8:53 AM To: 'Tomcat Users List' Subject: RE: form base auth with custom messages

RE: auth-method query

2004-03-26 Thread Koes, Derrick
I have already authenticated, but I am not authenticating for this particular request. -Original Message- From: Koes, Derrick Sent: Wednesday, March 24, 2004 6:50 PM To: '[EMAIL PROTECTED]' Subject: auth-method query I wish to programmatically check for the auth-method using Tomcat

auth-method query

2004-03-24 Thread Koes, Derrick
I wish to programmatically check for the auth-method using Tomcat 4.1.18. The HttpServletRequest class provides a getAuthType method, but this is only good for an authentication request. How do I retrieve the auth type used for the web container at runtime for a non-authentication request? I

form-based authentication question

2004-03-23 Thread Koes, Derrick
Using Tomcat 4.1.X, I'm attempting to switch a web app from basic auth to form-based. I'm having difficulty in one area. After creating the new form and posting to j_security_check, I wish to GET my welcome page. It appears to be doing this from the URL in the address bar, but the page looks

RE: form-based authentication question

2004-03-23 Thread Koes, Derrick
It may be good for someone to answer this, but I figured out my problem. I accidentally used the login page name where the welcome page name should have been in the servlet configuration. Cockpit error. -Original Message- From: Koes, Derrick Sent: Tuesday, March 23, 2004 2:49 PM

request/response headers

2004-03-22 Thread Koes, Derrick
What is the magic set of non-SSL request and/or response headers for a security-constrained servlet to download a pdf stream in IE 6 SP1? Netscape 7.1 works fine as a client, so I'm certain there is something I'm missing that is particular to IE. Thanks, Derrick This electronic

RE: request/response headers

2004-03-22 Thread Koes, Derrick
Setting Cache-control to private resolves the problem for IE 6 SP1. -Original Message- From: Koes, Derrick Sent: Monday, March 22, 2004 9:51 AM To: '[EMAIL PROTECTED]' Subject: request/response headers What is the magic set of non-SSL request and/or response headers for a security

security-constraint question

2004-03-18 Thread Koes, Derrick
I have a web application which uses a security-constraint in the deployment descriptor. My lone url-pattern in my web-resource-collection is for my welcome page. This has worked well enough. However, now I wish to access a specific URL, a servlet that produces pdf documents, bypassing the

RE: Tomcat 5 and oracle

2003-12-10 Thread Koes, Derrick
I'm not 100% certain, but does Oracle even offer an 8.1.7/JDK 1.4 ojdbc14.jar file? I think it is only offered for 9.2. You are stuck with classes12.zip. I would try that. The common/lib directory is the correct place. http://otn.oracle.com/software/tech/java/sqlj_jdbc/htdocs/jdbc817.html

RE: Tomcat 5 and oracle

2003-12-10 Thread Koes, Derrick
to try and download a copy of the 1.2 jdk since that is what classes12 said it needed and try that. Any other suggestions? Jon -Original Message- From: Koes, Derrick [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 12:45 PM To: 'Tomcat Users List' Subject: RE: Tomcat 5

RE: Can large upload cause tomcat hanging?

2003-12-10 Thread Koes, Derrick
If the file is in memory, then that might explain the memory expansion. Try increasing tomcat startup memory parameters. Also, you should look at how the file data is being handled, i.e. is it all in memory at once? -Original Message- From: Zsolt Koppany [mailto:[EMAIL PROTECTED]

basic jdbc realm authentication

2003-10-14 Thread Koes, Derrick
I'm using tomcat 4.1.18 with Microsoft Internet Explorer 6.0 sp1 as the browser and oracle as the database to which I authenticate users. Oddly, the colon character cannot be used in user names, but can be used in passwords. I'm assuming my code is at fault, but I cannot see how. Perhaps there

RE: OT How to maintain a version number

2003-10-10 Thread Koes, Derrick
Property file? -Original Message- From: Jim Lynch [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 8:17 AM To: Tomcat Users List Subject: OT How to maintain a version number I've written an application where I need to keep up with the version number. I'm trying to figure out

escaping problems--ha!

2003-09-10 Thread Koes, Derrick
My scenario involves a user who wishes to enter \' in an html input field. I must then convert that to a javascript variable (for any number of reasons). However, when I attempt to escape backslashes then attempt to escape apostrophes, I end up with a javascript error: Unterminated string

FW: Tomcat startup with JDBC Realm [RE-POST]

2003-09-02 Thread Koes, Derrick
-Original Message- From: Koes, Derrick Sent: Friday, August 29, 2003 11:05 AM To: '[EMAIL PROTECTED]' Subject: Tomcat startup with JDBC Realm I have a timing issue where both my database and tomcat are being run as Windows services. If my server reboots for some reason, even though

RE: FW: Tomcat startup with JDBC Realm [RE-POST]

2003-09-02 Thread Koes, Derrick
To: Tomcat Users List Subject: Re: FW: Tomcat startup with JDBC Realm [RE-POST] http://marc.theaimsgroup.com/?l=tomcat-userm=106216990220530w=2 -Tim Koes, Derrick wrote: -Original Message- From: Koes, Derrick Sent: Friday, August 29, 2003 11:05 AM To: '[EMAIL PROTECTED

maintain directory structure on download

2003-08-25 Thread Koes, Derrick
Has anyone written a web app that downloads files within a directory structure and maintains the directory structure on the client machine? I'd like to do it without archiving the files in a zip file first. How do you identify a directory in a multipart download? Thanks, Derrick This

RE: unpackWars

2003-08-14 Thread Koes, Derrick
I noticed that getRealPath returns null when running packed. This makes sense because there is no real path; it's running from within the war. I didn't want to corrupt any responses with this. I also wanted to make sure this is reliable. Sounds as if it is. Thanks, Derrick -Original

unpackWars

2003-08-14 Thread Koes, Derrick
Is there any way to query tomcat from my web app at runtime to find out whether it's running my web app as packed or unpacked? I wish to do some things differently for development purposes if running unpacked. I set unpackWARs in the Host element in the server.xml configuration file. Thanks,

RE: error-code 401

2003-08-07 Thread Koes, Derrick
This is a known bug/feature. I don't think it is planned to be changed. -Original Message- From: Georges Roux [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 8:39 AM To: Tomcat Users List Subject: error-code 401 Hi, I'm trying to display custom error pages. My https context

RE: DOM-to-String

2003-07-30 Thread Koes, Derrick
You need a DOMWriter. http://xml.apache.org/xerces2-j/javadocs/api/org/w3c/dom/ls/DOMWriter.html -Original Message- From: Ben Johnson [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 1:38 PM To: Tomcat Users List Subject: DOM-to-String All, I have a

RE: DOM-to-String

2003-07-30 Thread Koes, Derrick
I'll assume you are using tomcat since you posted to this list. org.apache.catalina.util.DOMWriter in the catalina.jar. -Original Message- From: Ben Johnson [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 1:56 PM To: 'Tomcat Users List' Subject: RE: DOM-to-String You need a

RE: Tomcat4, where is classpath set when run as service

2003-07-30 Thread Koes, Derrick
You could rebuild your service. instsrv.exe Tomcat 4.1 REMOVE //to remove the existing service // build the service $CATALINA_HOME$\bin\tomcat.exe -install Apache Tomcat 4.1 $JAVA_HOME$\jre\bin\client\jvm.dll -Xmx512m -Xms256m -Djava.class.path=$CATALINA_HOME$\bin\bootstrap.jar

RE: how-to specify Java runtime options -Xmx128m, w/ Tomcat 4 as Win2k service

2003-07-24 Thread Koes, Derrick
You must rebuild the service with the new options. $CATALINA_HOME$\bin\tomcat.exe -install Apache Tomcat 4.1 $JAVA_HOME$\jre\bin\client\jvm.dll -Xmx512m -Xms256m -Djava.class.path=$CATALINA_HOME$\bin\bootstrap.jar -Djava.endorsed.dirs=$CATALINA_HOME$\common\endorsed

RE: invalidating sessions

2003-07-23 Thread Koes, Derrick
You may use HttpSession.invalidate() to invalidate a session. -Original Message- From: James Michelich [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 4:30 PM To: Tomcat Users List Subject: invalidating sessions A quick question about invalidating sessions: Is there a way

upgrade JDK

2003-05-30 Thread Koes, Derrick
What is the correct procedure to upgrade to a more recent JDK for a tomcat install? Thanks, Derrick This electronic transmission is strictly confidential to Smith Nephew and intended solely for the addressee. It may contain information which is covered by legal, professional or other

RE: JSDK/JRE

2003-05-29 Thread Koes, Derrick
If you use SUN, http://servlet.java.sun.com/help/legal_and_licensing/#63 -Original Message- From: Noel Rappin [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2003 2:15 PM To: Tomcat Users List Subject: JSDK/JRE Sorry if this is an FAQ, but I can't find the exact information

RE: Tomcat STILL freezing - time to look at another app server?

2003-05-29 Thread Koes, Derrick
I don't know if this helps any, but this has benefited me. If using an oracle database, try oracle.jdbc.pool.OracleOCIConnectionPool to get connection pool stats. -Original Message- From: Carl [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2003 2:48 PM To: Tomcat Users List

Out of Memory

2003-04-02 Thread Koes, Derrick
Remember that if you are running Tomcat as an NT Service, you will have to rebuild the service with tomcat.exe with new memory parameters. $CATALINA_HOME$\bin\tomcat.exe -install Apache Tomcat 4.1 $JAVA_HOME$\jre\bin\client\jvm.dll -Xmx512m -Xms256m

RE: How to hand in the passwords to 3000 users [urgent!]

2003-04-02 Thread Koes, Derrick
Write a servlet (JSP) to ask for that information from the user on first access. -Original Message- From: Nancy Crisostomo Martinez [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 10:51 AM To: Tomcat Users List Subject: Re: How to hand in the passwords to 3000 users

RE: Bug #5585, #11091, #13924, #18040 Workaround ???

2003-03-27 Thread Koes, Derrick
[mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 11:12 PM To: Tomcat Users List Subject: RE: Bug #5585, #11091, #13924, #18040 Workaround ??? On Wed, 26 Mar 2003, Koes, Derrick wrote: Date: Wed, 26 Mar 2003 20:29:00 -0500 From: Koes, Derrick [EMAIL PROTECTED] Reply-To: Tomcat Users

RE: overhead running from war rather than unpacked

2003-03-27 Thread Koes, Derrick
Is expandWARs something different than the unpackWARs Host attribute? -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED] Sent: Thursday, March 27, 2003 11:49 AM To: Tomcat Users List; Rasputin Subject: Re: overhead running from war rather than unpacked On Thu, 27

RE: overhead running from war rather than unpacked

2003-03-27 Thread Koes, Derrick
On Thu, 27 Mar 2003, Koes, Derrick wrote: Date: Thu, 27 Mar 2003 11:57:06 -0500 From: Koes, Derrick [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED], 'Rasputin' [EMAIL PROTECTED] Subject: RE: overhead running from war rather than

re-post: basic auth problem

2003-03-26 Thread Koes, Derrick
Securing index.jsp as a protected resource and using basic authentication prevents the error part of the deployment descriptor from the expected/desired behavior for a 401 error. I would like to have MY 401 error page show after three invalid login attempts rather than Tomcat's. Is this

invalidate all sessions on tomcat start

2003-03-26 Thread Koes, Derrick
Is there a way to invalidate all sessions on tomcat startup? Can someone provide an example? Thanks, Derrick This electronic transmission is strictly confidential to Smith Nephew and intended solely for the addressee. It may contain information which is covered by legal, professional or

RE: invalidate all sessions on tomcat start

2003-03-26 Thread Koes, Derrick
Can this be done with a listener? -Original Message- From: Koes, Derrick Sent: Wednesday, March 26, 2003 4:14 PM To: 'Tomcat Users List' Subject: RE: invalidate all sessions on tomcat start Either or. I don't wish anything to timeout, yet I want them to be invalidated when

RE: invalidate all sessions on tomcat start

2003-03-26 Thread Koes, Derrick
=-1 Store className=org.apache.catalina.session.FileStore/ /Manager -Original Message- From: Koes, Derrick [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 1:17 PM To: 'Tomcat Users List' Subject: RE: invalidate all sessions on tomcat start Can

RE: invalidate all sessions on tomcat start

2003-03-26 Thread Koes, Derrick
pathname= and set the debug=10 on your standardmanager to see what is going on, Filip -Original Message- From: Koes, Derrick [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 2:44 PM To: 'Tomcat Users List' Subject: RE: invalidate all sessions on tomcat start

unpackWars not working

2003-03-26 Thread Koes, Derrick
The following configuration is not unpacking my war file. I cannot understand why. unpackWARs is set to true. Can anyone help? Host name=localhost debug=0 appBase=webapps unpackWARs=true autoDeploy=true Listener className=org.apache.ajp.tomcat4.config.ApacheConfig

RE: unpackWars not working

2003-03-26 Thread Koes, Derrick
for the context that is already defined? hence it would overwrite that one maybe, what happens if you set docBase=dora.war would that be sufficient for you? Filip -Original Message- From: Koes, Derrick [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 4:08 PM To: [EMAIL

RE: unpackWars not working

2003-03-26 Thread Koes, Derrick
There is no other context other than the Default Context. -Original Message- From: Koes, Derrick Sent: Wednesday, March 26, 2003 7:15 PM To: 'Tomcat Users List' Subject: RE: unpackWars not working It would except that parts of my app depend on the war file being expanded

RE: unpackWars not working

2003-03-26 Thread Koes, Derrick
OK, I see this is a known issue. H. I believe tomcat should first unpack the wars, THEN determine if docBase is valid. At any rate, it seems I have to design around this feature or submit a patch. -Original Message- From: Koes, Derrick Sent: Wednesday, March 26, 2003 7:17 PM

RE: unpackWars not working

2003-03-26 Thread Koes, Derrick
I guess the other option would be to muck with the startup files to delete sessions before starting up. Hm. -Original Message- From: Koes, Derrick Sent: Wednesday, March 26, 2003 7:36 PM To: 'Tomcat Users List' Subject: RE: unpackWars not working OK, I see this is a known issue

overhead running from war rather than unpacked

2003-03-26 Thread Koes, Derrick
How much overhead is there running directly from the war file rather than unpacked? Thanks, Derrick This electronic transmission is strictly confidential to Smith Nephew and intended solely for the addressee. It may contain information which is covered by legal, professional or other

RE: Bug #5585, #11091, #13924, #18040 Workaround ???

2003-03-26 Thread Koes, Derrick
Sorry, no, but I've been looking for one. I want to show MY OWN error page for a 401. I've posted to this list about this, but to no avail thus far. Basic auth seems to work BECAUSE a 401 is thrown for a protected resource. Sort of makes sense, but makes it difficult to use the error tags to

Diff 4.1.18 and 4.1.24

2003-03-25 Thread Koes, Derrick
Can anyone point me to some documentation which notes the differences between 4.1.18 and 4.1.24? Thanks, Derrick This electronic transmission is strictly confidential to Smith Nephew and intended solely for the addressee. It may contain information which is covered by legal, professional or

RE: Basic authentication question

2003-03-25 Thread Koes, Derrick
: Koes, Derrick [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 6:22 PM Subject: Basic authentication question I wish to replace tomcat's 401 error page with something more elegant and specific to my web app. How can I do this? Thanks, Derrick This electronic

RE: Basic authentication question

2003-03-25 Thread Koes, Derrick
/auth-constraint /security-constraint login-config auth-methodFORM/auth-method form-login-config form-login-page/admin/login.jsp/form-login-page form-error-page/admin/error.jsp/form-error-page /form-login-config /login-config - Original Message - From: Koes, Derrick

JDBCRealm.Digest

2003-01-29 Thread Koes, Derrick
Has anyone else encountered a java.lang.ClassCastException running the catalina code JDBCRealm.Digest? Thanks, Derrick This electronic transmission is strictly confidential to Smith Nephew and intended solely for the addressee. It may contain information which is covered by legal,

RE: mod_jk.log entries

2002-11-12 Thread Koes, Derrick
This might help. http://www.faqchest.com/prgm/tomcat-l/tmct-01/tmct-0104/tmct-010470/tmct0104 3017_27782.html -Original Message- From: Turner, John [mailto:JTurner;AAS.com] Sent: Tuesday, November 12, 2002 3:40 PM To: 'Tomcat Users List' Subject: RE: mod_jk.log entries The

warning issued by tomcat

2002-11-08 Thread Koes, Derrick
I'm using Apache 2.0.42, Tomcat 4.1.12, and mod_jk (not mod_jk2). I'm getting the following warning: Nov 8, 2002 11:03:07 AM org.apache.jk.common.ChannelSocket processConnection WARNING: server has closed the current connection (-1) I see this repeated 4 times in succession. My guess is that

RE: Digest authentication with JDBCRealm: doesn't seems to work

2002-11-07 Thread Koes, Derrick
Change login-config auth-methodDIGEST/auth-method /login-config to login-config auth-methodBASIC/auth-method /login-config -Original Message- From: Iran Marcius [mailto:iran;isic.com.br] Sent: Thursday, November 07, 2002 1:29 PM To: [EMAIL PROTECTED] Subject: Digest

RE-POST RE: digest authentication or auth-methodDIGEST/auth-method

2002-11-07 Thread Koes, Derrick
-Original Message- From: Koes, Derrick Sent: Tuesday, November 05, 2002 6:43 PM To: 'Tomcat Users List' Subject: RE: digest authentication or auth-methodDIGEST/auth-method I think what is really happening is that the realm is handling the digesting to do the password match. Setting

RE: digest authentication or auth-methodDIGEST/auth-method

2002-11-05 Thread Koes, Derrick
Leave the auth-method in the web.xml as BASIC. -Original Message- From: Frank Balluffi [mailto:frank.balluffi;db.com] Sent: Monday, November 04, 2002 6:01 PM To: [EMAIL PROTECTED] Subject: digest authentication or auth-methodDIGEST/auth-method I am able to successfully configure

RE: digest authentication or auth-methodDIGEST/auth-method

2002-11-05 Thread Koes, Derrick
such as 5f4dcc3b5aa765d61d8327deb882cf99. There's got to be a better way to set things up than that. Jake At 03:25 PM 11/5/2002 -0500, you wrote: Derrick, You are correct. Is this a bug or is this the way it is supposed to work? Thanks! Frank Koes, Derrick Derrick.Koes

version of mod_jk.dll needed

2002-11-04 Thread Koes, Derrick
Does anyone have a mod_jk.dll that will work with tomcat 4.0.6 and apache 2.0.40? Thanks, Derrick This electronic transmission is strictly confidential to Smith Nephew and intended solely for the addressee. It may contain information which is covered by legal, professional or other privilege.

Class.forName call hangs tomcat.

2002-10-11 Thread Koes, Derrick
This is a very intermittent problem with tomcat 4.0.4/j2sdk 1.4.0_02. Sometimes, jsp pages hang (do not load) in the java code if using Class.forName for a class used by the JSP. Has anyone had similar experience? If so, how did you remedy the situation? Thanks, Derrick This electronic

HTTPServletRequest.getServerName() question

2002-10-07 Thread Koes, Derrick
The servlet 2.3 spec simply states that, Returns the host name of the server that received the request. If I'm running tomcat on a windows machine which is not networked (no DNS), but is in a workgroup, this call returns an empty string in tomcat. I know tomcat documentation states, The

RE: Please help me!!

2002-10-03 Thread Koes, Derrick
You may want to look into these two classes from oracle. oracle.jdbc.oci.OracleOCIConnection oracle.jdbc.pool.OracleOCIConnectionPool They should be in the classes12.jar. This will preclude you from using the thin driver, but probably provide more stability in connection pooling. Read Oracle

webapp's default character encoding

2002-09-27 Thread Koes, Derrick
How do I set the default character encoding for my webapp in tomcat? This electronic transmission is strictly confidential to Smith Nephew and intended solely for the addressee. It may contain information which is covered by legal, professional or other privilege. If you are not the intended

JDBCRealm question

2002-09-19 Thread Koes, Derrick
According to the directions in the documentation, you should put the jar that contains the JDBC driver in common/lib if you need it for authentication as well as for your webapp. If I do this, I cannot use startup.bat because I get: Exception during startup processing

tomcat 4.0.4 and oracle

2002-09-18 Thread Koes, Derrick
If I run tomcat from the Windows command prompt using startup.bat, I get: Exception during startup processing java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at

RE: mod_jk log file errors

2002-09-18 Thread Koes, Derrick
Not the same errors, but using Apache 2.0.40 and Tomcat 4.0.4 I get: [Wed Sep 18 14:49:03 2002] [jk_ajp_common.c (933)]: Error ajp_process_callback - write failed [Wed Sep 18 14:55:17 2002] [jk_ajp_common.c (824)]: Error sending request try another pooled connection [Wed Sep 18 14:55:17

difficulties using log4j

2002-09-12 Thread Koes, Derrick
Has anyone run into any difficulties getting log4j 1.2.26 working in Tomcat? It works fine for me if I run startup.bat from the command line. However, if I try to run from the start menu (D:\j2sdk1.4.0_02\bin\java.exe -jar -Duser.dir=C:\Program Files\Apache Group\Jakarta\tomcat-4.0.4

RE: configuration problem

2002-09-11 Thread Koes, Derrick
After a bit of agony, I figured out a bit of a pattern--I think. If I start tomcat from the command prompt, then I see logging (and the log4j internal debug statements). However, if I run tomcat from the start menu or as an NT service I get no logging. I don't know how to fix this. This

RE: Still can't get Apache to forward to Tomcat

2002-08-15 Thread Koes, Derrick
If using mod_jk, where is the port specified on the Apache side? -Original Message- From: Milt Epstein [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 4:51 PM To: Tomcat Users List Subject: Re: Still can't get Apache to forward to Tomcat On Thu, 15 Aug 2002, Kenny G.

session timeout

2002-08-14 Thread Koes, Derrick
How closely does Tomcat follow the servlet specification concerning web.xml? I added the following to my web.xml, but the session seems to timeout immediately (0 minutes). session-config session-timeout0/session-timeout /session-config However, the servlet 2.3 spec states:

RE: session timeout

2002-08-14 Thread Koes, Derrick
lazy to dig up the spec for the nth time today) I thought the spec said -1 ensures they never expire. Not 0 or less. Did you try -1? Yoav Shapira Millennium ChemInformatics -Original Message- From: Koes, Derrick [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 14, 2002 11:12 AM

Can authentication to webapps be controlled by Apache HTTPD server rather than tomcat? eom

2002-08-13 Thread Koes, Derrick

RE: Can authentication to webapps be controlled by Apache HTTPD serve r rather than tomcat? eom

2002-08-13 Thread Koes, Derrick
The auth seems to work through apache with this setting, but tomcat still gives me the 403 error page. -Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 13, 2002 9:33 AM To: Tomcat Users List Subject: Re: Can authentication to webapps be controlled

RE: Can authentication to webapps be controlled by Apache HTTPD s erve r rather than tomcat? eom

2002-08-13 Thread Koes, Derrick
Ah, I still have my security-constraint in my web.xml. I thought, perhaps, as you point out, I was interpreting tomcatAuthentication=false inappropriately. The 403 is coming from Tomcat. -Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 13, 2002

RE: Can authentication to webapps be controlled by Apache HTTPD s erve r rather than tomcat? eom

2002-08-13 Thread Koes, Derrick
I guess this might have been an obvious detail. However, I missed it in the documentation. I spent over a day trying to figure out why this was a problem. Removing the security-constraint in web.xml did the trick. However, it's just another step. Seems like tomcatAuthentication attribute on

RE: REPOST: Authentication: Use Tomcat and Apache

2002-08-13 Thread Koes, Derrick
Does putting it under a different service name work? -Original Message- From: Kevin Andryc [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 13, 2002 12:16 PM To: [EMAIL PROTECTED] Subject: REPOST: Authentication: Use Tomcat and Apache I have an application that currently uses Apache's

Tomcat/Apache authentication

2002-08-12 Thread Koes, Derrick
I put this in my httpd.conf file: Location /dora AuthType Basic AuthName protected area AuthUserFile C:/Program Files/Apache Group/users require user koes /Location I get the browser authentication popup and I enter the username and password that is in my

log4j in tomcat

2002-07-31 Thread Koes, Derrick
If I start Tomcat as an NT service I get the WARNings that no log4j appenders could be found. If I start Tomcat from the start menu everything works as expected and I get my logs. Has anyone seen this behavior? Is there an explanation? I'm guessing some kind of timing issue.

RE: log4j in tomcat

2002-07-31 Thread Koes, Derrick
winded. Charlie -Original Message- From: Koes, Derrick [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 31, 2002 8:40 AM To: 'Tomcat Users List' Subject: log4j in tomcat If I start Tomcat as an NT service I get the WARNings that no log4j appenders could be found. If I start Tomcat

svg question

2002-07-25 Thread Koes, Derrick
Can Tomcat handle svg in a jsp page? I put an svg document, set the content type to image/svg+xml, in a jsp, but tomcat always puts a leading html tag and screws it up. The svg document on its own works, but I want it in a jsp. Has anyone done this successfully?

RE: svg question

2002-07-25 Thread Koes, Derrick
Looks like svg embed is the answer. http://printx.org/svgembed/index.php -Original Message- From: Koes, Derrick Sent: Thursday, July 25, 2002 11:47 AM To: 'Tomcat Users List' Subject: svg question Can Tomcat handle svg in a jsp page? I put an svg document, set the content type

RE: manager app

2002-07-25 Thread Koes, Derrick
Have you checked your web.xml? Do you have a security-constraint? You may need one. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 1:09 PM To: [EMAIL PROTECTED] Subject: manager app Anybody have any ideas what I could be doing

dynamically update tomcat-users list

2002-07-23 Thread Koes, Derrick
Is there any way to do this without bringing down Tomcat?

What to do to http.conf and/or server.xml

2002-07-18 Thread Koes, Derrick
I believe I have tomcat 4.0.4 and apache 2.0.39 working well together with mod_jk (ajp13 connector). I've put documentation files (static content) in my webapp that I'd like apache to serve. I can't seem to make this work. For example, my webapp is in example.war which gets expanded in the

RE: What to do to http.conf and/or server.xml

2002-07-18 Thread Koes, Derrick
PROTECTED] -Original Message- From: Koes, Derrick [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 18, 2002 8:52 AM To: 'Tomcat Users List' Subject: What to do to http.conf and/or server.xml I believe I have tomcat 4.0.4 and apache 2.0.39 working well together with mod_jk (ajp13 connector

What to do to http.conf and/or server.xml

2002-07-17 Thread Koes, Derrick
I believe I have tomcat 4.0.4 and apache 2.0.39 working well together with mod_jk (ajp13 connector). I've put documentation files (static content) in my webapp that I'd like apache to serve. I can't seem to make this work. For example, my webapp is in example.war which gets expanded in the

RE: Tomcat 4 + Apache 2.39

2002-07-17 Thread Koes, Derrick
Check the port you configured in tomcat server.xml. You probably already have something running there. -Original Message- From: Alexandre [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 12:37 PM To: Tomcat Users List Subject: Tomcat 4 + Apache 2.39 hi all im a newbe

RE: Tomcat 4 + Apache 2.39

2002-07-17 Thread Koes, Derrick
opensometimes-rpc11 Nmap run completed -- 1 IP address (1 host up) scanned in 2 seconds [root@dust root]# Koes, Derrick wrote: Check the port you configured in tomcat server.xml. You probably already have something running there. -Original Message- From: Alexandre

RE: jsp client to server text file uploads

2002-07-16 Thread Koes, Derrick
http://www.servlets.com/cos/index.html -Original Message- From: Dr. Edward R. Jones [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 16, 2002 11:20 AM To: [EMAIL PROTECTED] Subject: jsp client to server text file uploads Hi, The jsp code FileInputStream fiStream = new

RE: jk_open_socket, connect() failed errno = 61

2002-07-16 Thread Koes, Derrick
I've experienced the same. It would be nice to have some resolution so I can sleep at night. -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 16, 2002 4:33 PM To: Tomcat Users List Subject: jk_open_socket, connect() failed errno = 61 Hi, I am

Using log4j with tomcat on Windows problem

2002-07-10 Thread Koes, Derrick
Configuration: Tomcat 4.0.4 Apache 2.0.39 Log4J 1.2.4 You can deploy a new version of the war with the manager app as long as you have not loaded (using) the NT Event logger dll. Otherwise, you get this: java.lang.UnsatisfiedLinkError: Native Library

resource bundle question

2002-07-09 Thread Koes, Derrick
Where should resource bundles (properties files) go in my war file?

NT Event Viewer dll question

2002-07-09 Thread Koes, Derrick
I'm using log4j in my web app. I'm also using the dll that allows logging to the NT Event Viewer application log. However, I cannot use the manager servlet to undeploy and redeploy an updated version of my web app because of a stack trace produced that states that the dll is already loaded. Is

RE: resource bundle question

2002-07-09 Thread Koes, Derrick
Subject: Re: resource bundle question They should be fine in the classes directory, as it will be placed on your CLASSPATH appropriately. Use the ClassLoader.getResource methods to find them. Regards, Will Hartung ([EMAIL PROTECTED]) - Original Message - From: Koes, Derrick [EMAIL PROTECTED

authentication problem

2002-07-08 Thread Koes, Derrick
Configuration: Tomcat 4.0.4 Apache 2.0.39 I'm successfully authenticating to my index.jsp, however when I attempt to access the other servlet (MediaContentHandler) identified in my web.xml deployment descriptor I am prompted to login again. Since this servlet is not in my security

image url problem

2002-07-08 Thread Koes, Derrick
I am trying to include an image in a pdf document generated from a servlet. The image url is another servlet which retrieves the image from the database. Using the fo:external-graphic element, I get the following in the log: 2002-07-08 15:08:11.239 [Ajp13Processor[8009][0]] ERROR DoraLogger

RE: tomcat 4.0.4 apache 2.0.39 integration

2002-07-02 Thread Koes, Derrick
http://www.galatea.com/flashguides/index -Original Message- From: Paul Ung [mailto:[EMAIL PROTECTED]] Sent: Monday, July 01, 2002 8:23 PM To: '[EMAIL PROTECTED]' Subject: tomcat 4.0.4 apache 2.0.39 integration Hi, Does anybody know of any good websites/pages that explains

mod_jk.log has the following error

2002-07-01 Thread Koes, Derrick
Does anyone know why I'm getting these errors in my mod_jk.log? [Mon Jul 01 11:32:13 2002] [jk_connect.c (151)]: jk_open_socket, connect() failed errno = 61 [Mon Jul 01 11:32:13 2002] [jk_ajp_common.c (599)]: In jk_endpoint_t::ajp_connect_to_endpoint, failed errno = 61

RE: mod_jk.log has the following error

2002-07-01 Thread Koes, Derrick
has the following error -Original Message- From: Koes, Derrick [mailto:[EMAIL PROTECTED]] Sent: 1. srpanj 2002 17:43 To: 'Tomcat Users List' Subject: mod_jk.log has the following error Does anyone know why I'm getting these errors in my mod_jk.log? [Mon Jul 01 11

Seeking working mod_jk.dll for Tomcat 4.0.4 and Apache 2.0.39 eom

2002-07-01 Thread Koes, Derrick

RE: Seeking working mod_jk.dll for Tomcat 4.0.4 and Apache 2.0.39 eo m

2002-07-01 Thread Koes, Derrick
and Apache 2.0.39 eo m for windows? i'm running Tomcat 4.0.4/Apache 2.0.39 on windows 2000 and the compiled mod_jk.dll from here works: http://www.acg-gmbh.de/mod_jk/ or you can compile your own. -- carrie s. Mon, Jul 01, 2002 at 06:48:47PM +0100, Koes, Derrick wrote: -- To unsubscribe, e-mail

RE: Seeking working mod_jk.dll for Tomcat 4.0.4 and Apache 2.0.39 eo m

2002-07-01 Thread Koes, Derrick
Tomcat 4.0.4/Apache 2.0.39 on windows 2000 and the compiled mod_jk.dll from here works: http://www.acg-gmbh.de/mod_jk/ or you can compile your own. -- carrie s. Mon, Jul 01, 2002 at 06:48:47PM +0100, Koes, Derrick wrote: -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands

  1   2   >