RE: SSL using Microsoft CA

2004-03-16 Thread Mark Thomas
-users.xml the user cert entry is of the form user username=CN=Mark Thomas, OU=WWW, O=XXX, L=YYY, ST=ZZZ, C=GB password=null roles=tomcat,certs/ Hope this helps. -Original Message- From: Donald Lee [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 12:05 AM To: [EMAIL PROTECTED

RE: web.xml Welcome-file for SSL

2004-03-16 Thread Mark Thomas
Should do. This works for me with TC4 and the default welcome list. Mark -Original Message- From: Forte, Graham [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 3:33 PM To: 'Tomcat Users List' Subject: RE: web.xml Welcome-file for SSL Corrected subject, any takers.

RE: tomcat certificate

2004-03-17 Thread Mark Thomas
This is not correct. Tomcat does support CLIENT-CERT authentication 'out-of-the-box'. When combined with appropriate authorisation constraints in web.xml you can limit access to specific URLs. I have this working quite happily. Mark -Original Message- From: Rommel Sharma

RE: tomcat certificate

2004-03-18 Thread Mark Thomas
username=CN=Mark Thomas, OU=WWW, O=XXX, L=YYY, ST=ZZZ, C=GB password=null roles=tomcat,certs/ web.xml: ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN http://java.sun.com/dtd/web-app_2_3.dtd; web-app display-nameBug

RE: Keystore help OT?

2004-03-18 Thread Mark Thomas
You just import the reply into the keystore (using the same alias) and the keystore combines them for you. Have a look at the keytool docs that come with the JDK for further info. Mark -Original Message- From: Hamilton Andrew [mailto:[EMAIL PROTECTED] Sent: Thursday, March 18, 2004

RE: Keystore help OT?

2004-03-19 Thread Mark Thomas
OT? No. That's not what the problem is. Getting a key into the keystore is not a difficult task. Fairly simple and straightforward. Getting a private key out is something else entirely. Drew -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: Security

2004-03-21 Thread Mark Thomas
Matt, Your best bet is to read the security manager documentation provided as part of the SDK. It should be located in JAVA_HOME\docs\guide\security\permissions.html and JAVA_HOME\docs\guide\security\PolicyFiles.html I can't remember if these docs are part of the standard download or whether

RE: Programmatically deploying webapps

2004-03-22 Thread Mark Thomas
You can archive your web app using ant's jar task. Mark -Original Message- From: Philipp Taprogge [mailto:[EMAIL PROTECTED] Sent: Monday, March 22, 2004 2:05 AM To: Tomcat Users List Subject: Programmatically deploying webapps Hi! I am stuck here :-/ Perhaps anyone could

RE: tomcat certificate

2004-03-23 Thread Mark Thomas
-users.xml file: username=CN=Mark Thomas, OU=WWW, O=XXX, L=YYY, ST=ZZZ, C=GB It seems tomcat does not like the ´=' character inside a property value. I have also tried writing: username=CN\=Mark Thomas, OU\=WWW, O\=XXX, L\=YYY, ST\=ZZZ, C\=GB But I still get the same error. Don´t you get the same

RE: tomcat certificate

2004-03-24 Thread Mark Thomas
: tomcat certificate We are using Tomcat 5.0.19 over Linux. Idoia Mark Thomas

RE: tomcat certificate

2004-03-25 Thread Mark Thomas
OK. Light dawns. Can you try using the memory realm? My realm definition looks like: Realm className=org.apache.catalina.realm.MemoryRealm / Looking again at the exception it looks like a JMX issue with the UserDatabaseRealm MBean and user names containing '='. I'll have a look at the code. Mark

RE: tomcat certificate

2004-03-25 Thread Mark Thomas
I've look at the code and it would help if you could post your realm definition. Thanks, Mark -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Thursday, March 25, 2004 6:00 PM To: 'Tomcat Users List' Subject: RE: tomcat certificate OK. Light dawns. Can you

RE: tomcat certificate

2004-03-26 Thread Mark Thomas
in the catalina.out file is a JMX issue. Regards, Idoia Mark Thomas

RE: Windows Login Id in a Web App on T5

2004-03-26 Thread Mark Thomas
You can't get a use a windows username and password without integrating with windows authentication. How about fronting things with IIS? Let IIS do the authentication for you. Haven't tried it but I don't see why it wouldn't work. -Original Message- From: Kumar Abhay-CAK203C

RE: 5.0.19 server not starting

2004-04-04 Thread Mark Thomas
Looks like you have a broken server.xml Try using the one provided with the tomcat distribution. Mark -Original Message- From: jitender ahuja [mailto:[EMAIL PROTECTED] Sent: Sunday, April 04, 2004 2:24 PM To: [EMAIL PROTECTED] Subject: 5.0.19 server not starting Hi,

RE: 5.0.19 server not starting

2004-04-04 Thread Mark Thomas
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] I've tried just about every distro from 4.1.28 onwards and none of them work under Windows! They all have either ant or Tomcat4.CoyoteConnector failures. Is Tomcat not now supported under Windows? Tomcat is supported under Windows. In

RE: DefaultServlet character encoding

2004-04-09 Thread Mark Thomas
Hi, Tomcat ignores META tags (for good reasons I won't go in to). Use %@ page pagEncoding=... %. Mark -Original Message- From: Hassan Schroeder [mailto:[EMAIL PROTECTED] Sent: Thursday, April 08, 2004 7:11 PM To: [EMAIL PROTECTED] Subject: DefaultServlet character encoding

RE: Session behaviour across http/https boundary

2004-04-09 Thread Mark Thomas
This is implemented within tomcat. Mark -Original Message- From: Martin Alley [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 8:28 AM To: 'Tomcat Users List' Subject: RE: Session behaviour across http/https boundary Hi Bill, Thanks for clarifying. BTW Do you know

RE: Urgent pls help ! Protection problems of using Realm

2004-04-12 Thread Mark Thomas
You need to write a custom realm. Mark My case is that I can't store the username and password of the roles and users in my server. I need to send the authenication information in a format of xml file to a foreign server and get back the login result from that server. So I can't use

RE: List problems

2004-04-15 Thread Mark Thomas
John Send an e-mail to [EMAIL PROTECTED] detailing your new and old e-mail addresses and I or one of the other moderators will look into it for you. Mark -Original Message- From: John Trollinger [mailto:[EMAIL PROTECTED] Sent: Thursday, April 15, 2004 3:36 PM To: [EMAIL PROTECTED]

RE: Administrator setup

2004-04-15 Thread Mark Thomas
Read the page you are looking at: NOTE: For security reasons, using the administration webapp is restricted to users with role admin. The manager webapp is restricted to users with role manager. Users are defined in $CATALINA_HOME/conf/tomcat-users.xml. Add a user with the admin role or add the

RE: security permissions

2004-04-17 Thread Mark Thomas
Where are you trying to run the external program? On the tomcat server or on the client talking to the server? If on the server try: - testing it without the security manager If on the client: - The browser security model will not allow this at all unless the applet/JavaScript is signed. - If

RE: Parser Errors on startup

2004-04-18 Thread Mark Thomas
Try putting ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN http://java.sun.com/dtd/web-app_2_3.dtd; At the start of the web.xml file Mark -Original Message- From: James Bucanek [mailto:[EMAIL PROTECTED]

RE: Authentification against NT Domain Controller

2004-04-18 Thread Mark Thomas
From: Frank Schaare [mailto:[EMAIL PROTECTED] we´re building an Intranet application running on Tomcat 4.1.30 (Client OS is Win2K). It would be very suitable to authentificate the users against the NT Domain Controller to avoid a second login. I searched this ML and Google but did not

RE: Detecting Sessions already existent at Tomcat Startup?

2004-04-18 Thread Mark Thomas
spec-quote SRV.15.1.8 HttpSessionActivationListener public interface HttpSessionActivationListener extends java.util.EventListener All Superinterfaces: java.util.EventListener Objects that are bound to a session may listen to container events notifying them that sessions will be passivated and

RE: Detecting Sessions already existent at Tomcat Startup?

2004-04-18 Thread Mark Thomas
Without looking at your source code, no idea. I have just checked the Tomcat source and every attribute that implements HttpSessionActivationListener will have sessionWillPassivate() and sessionDidActivate() called. At the moment it looks like something in your app. Mark -Original

RE: Detecting Sessions already existent at Tomcat Startup?

2004-04-18 Thread Mark Thomas
Andreas, I believe you have misinterpreted the spec. Having re-read the relevant parts of the spec (SRV.10.2, SRV.15.1.7 SRV.15.1.8) HttpSessionActivationListener applies to session attributes. Although HttpSessionActivationListener's inclusion in table SRV.10-1 could suggest otherwise, section

RE: security permissions

2004-04-19 Thread Mark Thomas
OK. Next set of questions: - which program? - what is the server OS? From: Andrea Powles [mailto:[EMAIL PROTECTED] Im wanting to run the program on the server. When I startup Tomcat with the -security option Tomcat doesn't start up? This is the case even when I take out my

RE: Tomcat4x Development Process

2004-04-19 Thread Mark Thomas
Look at the reloadable attribute. I use MyEclipse which takes a lot of the pain out of this sort of thing. Mark -Original Message- From: Duncan Krebs [mailto:[EMAIL PROTECTED] Sent: Monday, April 19, 2004 7:26 PM To: Tomcat Users List Subject: Tomcat4x Development Process Hi,

RE: How to hide files by extension under Tomcat 5?

2004-04-19 Thread Mark Thomas
It is a general requirement. That is why: 1. WEB-INF is defined by the spec and is highly unlikely to change. 2. Protecting resources under WEB-INF is mandated by the spec (SRV.9.5) -Original Message- From: Stephen Bacon [mailto:[EMAIL PROTECTED] Sent: Monday, April 19, 2004 7:52 PM

RE: Detecting Sessions already existent at Tomcat Startup?

2004-04-19 Thread Mark Thomas
From: news [mailto:[EMAIL PROTECTED] On Behalf Of Andreas Schildbach Aside from that, wouldn't it be nice of the servlet spec would allow binding HttpSessionActivationListeners to the whole application instead just to an attribute? In my application, it would be much elegant/easier. Maybe

RE: security permissions

2004-04-20 Thread Mark Thomas
of that program into a file. The OS I am running is XP Professional. Thanks in advance Andrea Powles Mark Thomas [EMAIL PROTECTED] wrote: OK. Next set of questions: - which program? - what is the server OS? From: Andrea Powles [mailto:[EMAIL PROTECTED] Im wanting to run the program

RE: Getting a request in a non English character

2004-04-20 Thread Mark Thomas
You might find the text below useful. It is my standard text on character encoding. Mark REQUESTS There are a number of situations where there may be a requirement to use non-US ASCII characters in a URI. These include: - Parameters in the query string - Servlet paths There is a

RE: Getting a request in a non English character

2004-04-20 Thread Mark Thomas
the useBodyEncodingForURI attribute, is it in an XML file ? Which one ? Thanks Yair -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: 20 2004 21:19 To: 'Tomcat Users List' Subject: RE: Getting a request in a non English character You might find the text below useful

RE: tomcat 5 and cgi-bin

2004-04-23 Thread Mark Thomas
Prior to 5.0.17, the cgi executable was hardcoded to perl. From 5.0.17 onwards this is configurable. For example, if you wanted to use XXXapp as the perl executable, edit conf/web.xml to look something this: servlet servlet-namecgi/servlet-name

RE: servlet.http?

2004-04-23 Thread Mark Thomas
Depends on your compiler. Look on the docs for how to set the classpath for the compilier and ensure that all the necessary jar files are included. Mark -Original Message- From: Kalin Mintchev [mailto:[EMAIL PROTECTED] Sent: Friday, April 23, 2004 9:03 AM To: [EMAIL PROTECTED]

RE: Init parameters in default context

2004-04-23 Thread Mark Thomas
-Original Message- From: Keith Hankin [mailto:[EMAIL PROTECTED] I am trying to specify init context parameters in the default context in server.xml as follows: Context path= docBase=ROOT debug=0 Parameter name=configDir value=C:\config override=false/ /Context This is

RE: tomcat 5 and cgi-bin

2004-04-24 Thread Mark Thomas
-nameexecutable/param-name param-valueYYYapp/param-value init-param ? cheng --- Mark Thomas [EMAIL PROTECTED] wrote: Prior to 5.0.17, the cgi executable was hardcoded to perl. From 5.0.17 onwards this is configurable. For example, if you wanted to use XXXapp as the perl

RE: Getting a request in a non English character

2004-04-25 Thread Mark Thomas
useBodyEncodingForURI=true It still don't work Yair -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: 20 2004 23:29 To: 'Tomcat Users List' Subject: RE: Getting a request in a non English character http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config

RE: Getting a request in a non English character

2004-04-25 Thread Mark Thomas
); And this some how doesn't work , Any suggestions? Regard Yair -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Sunday, April 25, 2004 5:09 PM To: 'Tomcat Users List' Subject: RE: Getting a request in a non English character Got

RE: Servlet generating applet

2004-05-03 Thread Mark Thomas
Anything under WEB-INF is not visible to clients. Your applet code needs to be somewhere the client can download it from. Mark -Original Message- From: Celona, Paul - AES [mailto:[EMAIL PROTECTED] Sent: Monday, May 03, 2004 9:45 PM To: Tomcat Users List Subject: Servlet generating

RE: ssl-only access to a page?

2004-05-05 Thread Mark Thomas
Yes. Look up transport guarantees in the servlet spec. They are specified in web.xml Mark -Original Message- From: Barnet Wagman [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 05, 2004 9:27 PM To: Tomcat Users List Subject: ssl-only access to a page? Is it possible to make a

RE: How does a servlet get a username

2004-05-05 Thread Mark Thomas
request.getRemoteUser() request.getUserPrincipal() See the servlet spec for more information. Mark -Original Message- From: Celona, Paul - AES [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 05, 2004 11:30 PM To: Tomcat Users List Subject: How does a servlet get a username

RE: Loading custom classes doesn't work

2004-05-09 Thread Mark Thomas
You must put your custom class inside a package. Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Sunday, May 09, 2004 8:21 AM To: [EMAIL PROTECTED] Subject: Loading custom classes doesn't work Greetings, I'm trying to compile a very simple

RE: so confused: compiling tomcat without cvs update?

2004-11-01 Thread Mark Thomas
Adding tag=TOMCAT_5_0_28 to each of the ant cvs tasks in the build.xml that does the checkouts should do the trick. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 8:08 PM To: [EMAIL PROTECTED] Subject: so confused: compiling

RE: CGI ...yeah, I know (Tomcat 4.1.29)

2004-11-08 Thread Mark Thomas
I think you have run into http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24478 Sorry - this was entirely my fault and has since been fixed. To get around this you can take the servlets-cgi.jar from an earlier/later release if you don't want to upgrade your entire server. Again, please accept

RE: Tomcat auth error?

2004-11-13 Thread Mark Thomas
Looks like an error in your code. This isn't a tomact problem. -Original Message- From: Sunitha Kumar [mailto:[EMAIL PROTECTED] Sent: Thursday, November 11, 2004 9:53 PM To: [EMAIL PROTECTED] Subject: Tomcat auth error? ERROR [http8443-Processor20] authentication.Credentials

RE: Newbie: problem with WebDav Tomcat servlet

2004-11-13 Thread Mark Thomas
This works for me. Did you restart the app after changing web.xml? What version of tomcat are you using? Mark -Original Message- From: Alessandro Ronchi [mailto:[EMAIL PROTECTED] Sent: Friday, November 12, 2004 11:40 AM To: [EMAIL PROTECTED] Subject: Newbie: problem with WebDav

RE: CGI Servlet environmental variables

2004-11-13 Thread Mark Thomas
A couple of options: 1. Any query parameter or POSTed parameter should be passed to the CGI script on the command line in the form perl arg1=value1 arg2=value2 etc 2. The latest CGI script from CVS (the one in 4.1.31 contains a JDK 1.4 dependency) supports passing enviroment parameters to the CGI

RE: Newbie: problem with WebDav Tomcat servlet

2004-11-13 Thread Mark Thomas
Another question: is it possible to access to a webapp dir contents with this webdav url: http://host:8080/webapp/webdav/? No. The url is http://host[:port]/context/pathtofile/file Must I add any configuration directive to get this working? You shouldn't need to. You might want to try /*

RE: Newbie: problem with WebDav Tomcat servlet

2004-11-13 Thread Mark Thomas
From: Alessandro Ronchi [mailto:[EMAIL PROTECTED] Here is my example: I have a context named dwers, and I correctly execute this jsp page: http://localhost:8080/dwers/index.jsp located on /usr/share/tomcat/webapps/dwers/index.jsp what's the correct webdav url? All tomcat responses are

RE: Soap under Tomcat

2004-11-14 Thread Mark Thomas
I am not familiar with this particular tutorial but the problem appears to be that your client is requesting /soap/rpcrouter but the servlet mapping in web.xml indicates that the webapp is expcting /soap/servlet/rpcrouter. What the root cuase of this mismatch might be I do not know. Mark

RE: Webgui framework

2004-11-14 Thread Mark Thomas
Java Server Faces http://java.sun.com/j2ee/javaserverfaces/ Mark -Original Message- From: Alessandro Ronchi [mailto:[EMAIL PROTECTED] Sent: Sunday, November 14, 2004 1:04 AM To: 'Tomcat Users List' Subject: Webgui framework Is there a jsp framework that helps developing of web

RE: Soap under Tomcat

2004-11-14 Thread Mark Thomas
= + fault.getFaultString()); } else { Parameter result = resp.getReturnValue(); System.out.println(result.getValue()); } } } - - Original Message - From: Mark Thomas [EMAIL PROTECTED

RE: Tomcat 4.1.27 ana apache 2.0.47 with mod_jk

2004-11-15 Thread Mark Thomas
No. The spec requires this. -Original Message- From: Venkat Reddy Valluri [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 9:19 PM To: Tomcat Users List Subject: RE: Tomcat 4.1.27 ana apache 2.0.47 with mod_jk But it worked with tomcat 4.0.4 with out using any package

RE: Tomcat 4.1.27 ana apache 2.0.47 with mod_jk

2004-11-15 Thread Mark Thomas
Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Mon 11/15/2004 4:48 PM To: 'Tomcat Users List' Cc: Subject: RE: Tomcat 4.1.27 ana apache 2.0.47 with mod_jk No. The spec requires this. -Original Message- From: Venkat Reddy Valluri [mailto:[EMAIL PROTECTED

RE: Tomcat 4.1.27 can't access symbolink directories

2004-11-15 Thread Mark Thomas
Have a look at http://www.jguru.com/faq/view.jsp?EID=1028397 Mark -Original Message- From: Venkat Reddy Valluri [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 10:16 PM To: Tomcat Users List Subject: Tomcat 4.1.27 can't access symbolink directories Hi, why Tomact

RE: WebDAV-Servlet with Contexts different from FileDirContext

2004-11-16 Thread Mark Thomas
Not quite talking to yourself but what with timezones and day jobs and all that it isn't always possible to reply quickly. ;) I am not sure of the level of interest in this but people have taken the trouble to write bug reports and it does crop up reasonably often on the lists considering its

RE: WebDav behavior

2004-11-19 Thread Mark Thomas
The webdav servlets are exactly the same, give or take a few formatting differences. There are difference between 4.1.x and 5.x in how requests for http://host/webapp/ are handled. Generally, you can use a context for webdav, or you can use it with a browser to server content. Trying to mix the

RE: WebDav behavior

2004-11-19 Thread Mark Thomas
). I'm only trying to work w/ Static content now, and I recall reading that webdav servlet won't work w/ .JSP files IIRC because of how the content is served up. Thanks, Brian Mark Thomas [EMAIL PROTECTED] wrote on 11/19/2004 01:57:01 PM: The webdav servlets are exactly the same

RE: WebDav behavior

2004-11-19 Thread Mark Thomas
From: Brian K Bonner [mailto:[EMAIL PROTECTED] Sent: Friday, November 19, 2004 9:10 PM To: Tomcat Users List Subject: RE: WebDav behavior OK, I probably need to start over. I'd like to access content from http://localhost:8080/abc with my browser and be able to see the Index.html

RE: SSL Redirect problem

2004-11-21 Thread Mark Thomas
Sounds like an IE bug. I suspect IE is sending the wrong port information at some point in the redirect from http to https. To confirm this you'll need to look at the http headers going back and forth. One quick test would be to configure tomcat for the default ports (80 for http and 443 for

RE: CGI Again...Servlet.service() for servlet cgi threw exception

2004-11-21 Thread Mark Thomas
I'll look into this but I need a bit more info: 1. What servlet mapping did you specify in web.xml? 2. What URL are you requesting? Mark -Original Message- From: Sergey Kamshilin [mailto:[EMAIL PROTECTED] Sent: Saturday, November 20, 2004 12:00 AM To: [EMAIL PROTECTED] Subject:

RE: CGIServlet and CGI.pm upload feature

2004-11-21 Thread Mark Thomas
Sorry it has taken so long for a response on this. It looks like you have been hit by bug 32023. This has now been fixed in CVS for TC 5.5.x, TC 5.0.x and TC4.1.x Mark -Original Message- From: Brian T. Dittmer [mailto:[EMAIL PROTECTED] Sent: Friday, July 09, 2004 9:14 PM To: [EMAIL

RE: multipart/byteranges bug in tomcat 4.1.x

2004-11-22 Thread Mark Thomas
Fixed in CVS for TC4 but I wouldn't expect a 4.1.32 release for some time (New Year at the earliest). Mark -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Monday, November 22, 2004 1:56 PM To: Tomcat Users List Subject: RE: multipart/byteranges bug in tomcat

RE: multipart/byteranges bug in tomcat 4.1.x

2004-11-22 Thread Mark Thomas
in tomcat 4.1.x Thanks. I'll ask for some quick advice. Is it safer (stability wise) to upgrade to 5.0.x rather than directly to 5.5.x? Thanks, Vincent -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Monday, November 22, 2004 2:38 PM To: 'Tomcat Users

RE: TC 5.0.28 error creating temporary file

2004-11-27 Thread Mark Thomas
Have you tried pre-compiling your JSPs before deployment? Mark -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of M.Hockings Sent: Saturday, November 27, 2004 12:59 PM To: [EMAIL PROTECTED] Subject: Re: TC 5.0.28 error creating temporary file Tim Funk wrote:

RE: EJB in tomcat

2004-11-29 Thread Mark Thomas
Can EJB's be deployed in tomcat ?? No. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: bug JDBC Real with CLIENT-CERT

2004-11-29 Thread Mark Thomas
I committed some patches to support CLIENT-CERT to 5.5.x recently. Should be in the next release. If you want them now, you can always grab them from CVS. Mark -Original Message- From: Paulo Alvim [mailto:[EMAIL PROTECTED] Sent: Monday, November 29, 2004 4:02 PM To: Tomcat Users

RE: [java] RE: bug JDBC Real with CLIENT-CERT

2004-11-29 Thread Mark Thomas
- De: Mark Thomas [mailto:[EMAIL PROTECTED] Enviada em: segunda-feira, 29 de novembro de 2004 17:02 Para: 'Tomcat Users List' Assunto: [java] RE: bug JDBC Real with CLIENT-CERT I committed some patches to support CLIENT-CERT to 5.5.x recently. Should be in the next release. If you want

RE: [java] RE: bug JDBC Real with CLIENT-CERT

2004-12-01 Thread Mark Thomas
we are wondering it won't work with JNDI too (we can't test this at this moment)... We are using Tomcat 5.0.28 and we didn't like to migrate it, because our apps are running ok...only if necessary... Thanks again! Alvim -Mensagem original- De: Mark Thomas [mailto:[EMAIL

RE: [java] RE: bug JDBC Real with CLIENT-CERT

2004-12-01 Thread Mark Thomas
will have to work with two WARs (one for each configuration)...if I need to have both form based and cert based authentication in the same application, right? Do you know any better workaround? Paulo Alvim. -Mensagem original- De: Mark Thomas [mailto:[EMAIL PROTECTED

RE: Where is the source code of class org.apache.tomcat.util.threads.ThreadPool

2004-12-04 Thread Mark Thomas
jakarta-tomcat-connectors\util\java\org\apache\tomcat\util\threads Mark -Original Message- From: zerol tib [mailto:[EMAIL PROTECTED] Sent: Saturday, December 04, 2004 8:49 AM To: [EMAIL PROTECTED] Subject: Where is the source code of class

RE: Using mailing lists

2004-12-13 Thread Mark Thomas
To get messages 123 through 145 (a maximum of 100 per request), mail: [EMAIL PROTECTED] To get an index with subject and author for messages 123-456 , mail: [EMAIL PROTECTED] They are always returned as sets of 100, max 2000 per request, so you'll actually get 100-499. To receive all

RE: WebDAV servlet bug for UTF-8 characters

2004-12-13 Thread Mark Thomas
Sorry for the delayed reply. You need to set URIEncoding=UTF-8 in the connector. Mark -Original Message- From: Garret Wilson [mailto:[EMAIL PROTECTED] Sent: Monday, November 29, 2004 11:52 PM To: Tomcat Users List Subject: WebDAV servlet bug for UTF-8 characters I have a file

RE: Olen joululomalla, palaan 4.1.2005

2004-12-17 Thread Mark Thomas
No worries. I'll kick them off the list. Mark -Original Message- From: Wade Chandler [mailto:[EMAIL PROTECTED] Sent: Friday, December 17, 2004 9:30 PM To: Tomcat Users List Subject: Re: Olen joululomalla, palaan 4.1.2005 [EMAIL PROTECTED] wrote: I will be out of the office

RE: Help me off this list!

2004-12-15 Thread Mark Thomas
-Original Message- From: TK Banks [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 15, 2004 7:56 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Help me off this list! No matter how many times I send mail to [EMAIL PROTECTED] I continue to be flooded with tomcat-user

RE: extra directory in WebDAV servlet listing

2004-12-18 Thread Mark Thomas
Tomcat version? JVM version? OS? -Original Message- From: Garret Wilson [mailto:[EMAIL PROTECTED] Sent: Saturday, December 18, 2004 12:53 AM To: 'Tomcat Users List' Subject: extra directory in WebDAV servlet listing I have the WebDAV servlet set to

RE: extra directory in WebDAV servlet listing

2004-12-19 Thread Mark Thomas
Users List Subject: Re: extra directory in WebDAV servlet listing Mark, Mark Thomas wrote: Tomcat version? 5.5.4. JVM version? 5.0. OS? Windows XP Professional SP2. Garret - To unsubscribe, e-mail

RE: extra directory in WebDAV servlet listing

2004-12-19 Thread Mark Thomas
From: Garret Wilson [mailto:[EMAIL PROTECTED] Mark Thomas wrote: If I can get this to work as you expect it to, it should provide a solution for how do I use webdav to manage my webapp? - something that is far from easy at the moment. I would imagine the solution might also

RE: extra directory in WebDAV servlet listing

2004-12-20 Thread Mark Thomas
The extra directory problem is now fixed in CVS for TC4.1.x and TC5.5.x I'll look at the arbitrary file system root next. Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Turning on verbose mode in the JVM

2004-12-22 Thread Mark Thomas
From: Tennessee Leeuwenburg [mailto:[EMAIL PROTECTED] 1) How do I pass the -verbose (-v) flag to the JVM? JAVA_OPTS 2) How do I pass arbitrary flags to the JVM? JAVA_OPTS 3) How do I add information to the wiki when I don't have permission to edit the pages? I believe you have to

RE: Turning on verbose mode in the JVM

2004-12-23 Thread Mark Thomas
It is an environment variable. Have a look in catalina.bat or catalina.sh for more info on this and other environment variables. Mark -Original Message- From: Tennessee Leeuwenburg [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 22, 2004 11:47 PM To: Tomcat Users List Subject:

Re: windows-1251 (Russian encoding)

2004-12-28 Thread Mark Thomas
There have been lots of posts about this and for a while now 99.9% of the problems have been caused by configuration or coding problems. I would suggest building up a very simple test case along the following lines and making sure everything works as expected at each stage. 1. Simple JSP that

Re: va.lang.SecurityException in tomcat 5.5.4

2004-12-28 Thread Mark Thomas
ssk 2001 wrote: Hi I installed tomcat5.5.4 and jdk1.5 in the windows xp machine. Iam using beanfactory 0.99 framework. I get this error , can anybody help on this... 1. Please don't post the same message multiple times if you don't get a reply straight away. At best it does nothing to help and

Re: questions on WebDAV implementation

2004-12-28 Thread Mark Thomas
Garret Wilson wrote: * I note that WebDAVServlet keeps a static SimpleDateFormat around for quickly formatting the creation date/time. The Java API docs for DateFormat indicate that date formats are not synchronized. Does this raise the potential for corrupted date printing, should multiple

Re: questions on WebDAV implementation

2004-12-28 Thread Mark Thomas
Peter Crowther wrote: From: Mark Thomas [mailto:[EMAIL PROTECTED] The best way forward is to create a bugzilla item for this and list the issues you find in that. Even better, would be if you had patches for some (or all) of these ;) The Bodington III project over here in the UK will also have

Re: ClientAbortException in Tomcat 4.1.31 console

2004-12-29 Thread Mark Thomas
This is normal. Typically, it happens when the user clicks stop on their browser before the page has finished loading. Mark MERCADIER Didier ROSI/SIFAC wrote: Hi, I'm running a servlets application (with Xerces and Xalan), and I have a lot of ClientAbortException in Tomcat console. My

Re: ClientAbortException in Tomcat 4.1.31 console

2004-12-30 Thread Mark Thomas
for your help. -Message d'origine- De : Mark Thomas [mailto:[EMAIL PROTECTED] Envoy : mercredi 29 dcembre 2004 19:36 : Tomcat Users List Objet : Re: ClientAbortException in Tomcat 4.1.31 console This is normal. Typically, it happens when the user clicks stop on their browser before the page has

Re: WebDAV and redirects

2004-12-30 Thread Mark Thomas
trying to get the last word on this, and it looks like Mark Thomas or others may be able to set the record straight. Not sure I can set the record straight completely as it is a while since I played with any of this. TC4 and TC5 handle requests for http://www.example.com/folder differently

Re: Session restart replication when using jsvc

2004-12-30 Thread Mark Thomas
Bill Barker wrote: This is the old, buggy, code that ships with Tomcat. You need to get the code from commons-daemon CVS HEAD if you want shutdowns (and restarts) to work properly. Bill, Just thinking ahead to the next 4.1.x release - do you know if there is a commons-daemon release that

Re: java.lang.NullPointerException in tomcat 5.5.4

2005-01-03 Thread Mark Thomas
1. Please don't post the same message multiple times. 2. Please don't hijack another thread - it plays havoc with thread-aware mail clients. You need to start a new thread and then your message may get answered. Mark ssk 2001 wrote: Hi I installed tomcat 5.5.4 ,jdk1.5 and beanfactory 1.0.1. When

[OT] Thread hi-jacking - How to avoid

2005-01-05 Thread Mark Thomas
All, There have been a number of unintentional thread hi-jackings recently and I wanted to clarify why it seems to be increasing, how it can happen and how to avoid it. Why the increase? = I don't think there has been an increase. What has increased is the use of good thread

Re: Tomcat 4.0 admin url?

2005-01-05 Thread Mark Thomas
For a default install, using a browser on the same box as tomcat: http://localhost:8080/manager/html You will need to edit conf/tomcat-users.xml to add a user that has the manager role. Mark Scott Purcell wrote: Hello, A while back, I was learning Tomct 4.1.31. Anyway, back then I used a

Re: Serving files from Tomcat...sorta

2005-01-06 Thread Mark Thomas
Have you looked at using webDAV? Tomcat has a basic implementation or there is the slide project. Mark Will Hartung wrote: Simply put, we have a system where folks are able to upload files into an 'incoming' directory, and download any of their files from any place below their home directory. We

Re: catalina.out export to another file

2005-01-06 Thread Mark Thomas
Please: - Don't post messages multiple times. It is more likely to decrease rather than increase your chances of receiving an answer to your question. - Don't hi-jack another thread. Clicking reply and changing the subject line is NOT the right way to post a message on a new topic as it

Re: How do you configure webDAV

2005-01-07 Thread Mark Thomas
Liu Steve wrote: Hello, Is there documentation on how to configure the HTTP header properties of files delivered by the WebdavServlet? No. But there isn't any functionality within the webDAV servlet to configure either ;) The only configuration I could find for the WebdavServlet are samples with

Re: Socket Exception - Heavy load

2005-01-07 Thread Mark Thomas
Please do not hijack another message thread. If you wish to post to the list create a new message and send it. DO NOT reply to a list message and change the subject. Thread aware mail clients still recognise this as a reply and do not show it as a new message. Mark [EMAIL PROTECTED] shyam

Re: How do you configure webDAV

2005-01-08 Thread Mark Thomas
Liu Steve wrote: Are there known filters that will make the changes in header I suggested based on config or one must roll his own? Almost certainly, but none that I am aware of. Try Google. Mark Cheers, Steve Liu -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent

Re: CGI : environment variables

2005-01-10 Thread Mark Thomas
Pierrick Brihaye wrote: Aswering to myself... Pierrick Brihaye a crit : I can't find any valuable help in the list archives. The passShellEnvironment init-parameter, which has a very promising name ;-), seems to be applicable to 4.1 releases only

  1   2   3   4   5   >