Re: solved! blue screen with servlets/jsp in Apache-Tomcat

2001-07-05 Thread Dominic North
I have now had a long (2-3 hour), trouble-free Tomcat testing session with ZoneAlarm simply shutdown. While not ideal, this is not too painful, and means that you don't need to uninstall ZoneAlarm. I am not sure whether you can simply restart ZoneAlarm; I could not get the services it uses

(pas d'objet)

2001-07-05 Thread Guillaume Quero

Apache installer requesting for machine restart

2001-07-05 Thread Eitan Ben Noach
Hello, We want to launch Apache installer from our product installer. Does any body can tell us, under which circumstances Apache installer requests for machine restart ( Windows NT 2000 )? Thanks, Eitan Ben-Noach

strange way to start tomcat

2001-07-05 Thread Alex Madon
Hello I downloaded tomcat 3.2.2 binaries distribution and installed it in my /opt (SuSE linux 7.0) dir. The sequence from the doc: TOMCAT_HOME=/opt/jakarta-tomcat-3.2.2 ; export TOMCAT_HOME; JAVA_HOME=/usr/lib/jdk1.1.8/; export JAVA_HOME; bin/startup.sh didn't work: the server serves pages only

RE: JDBC Problem with Ultradev

2001-07-05 Thread James Radvan
For those of you that are still having problems with this, make sure your driver is present in the Tomcat /webapps/[mywebapp]/WEB-INF/classes directory and select 'use driver on application server' in your connection setup in Ultradev. - James Radvan Websphere

c++ dll

2001-07-05 Thread Arik Levin
Hi. I have some c++ dll, which I use thru native java class at my servlet. (I call it like.. System.loadLibrary(dll name)) When I use it at JRun env it works fine. I have Jboss-Tomcat env, and at this env It just wouldn't work. I have

Xalan Redirect for multiple output from Web Page

2001-07-05 Thread Ruairi
Hi, I need to generate a few html files from one request. I have tried xt:document with little success, so I am now trying Xalan's Redirect. I run the following XSL through Cocoon and get no error messages. However no extra files are generated on the server. Is this a directory permissions

RE: c++ dll

2001-07-05 Thread Arik Levin
I have tried this, and I know that the java can find the dll, because I once had the dll up by the IIs too, and the tomcat yelled that the dll is already loaded.. so I killed the IIs, and back to the UnsatisfiedLinkError. -Original Message- From: Sam Newman [mailto:[EMAIL

RE: c++ dll

2001-07-05 Thread Manish Bhatnagar
Hi Arik! Where did you place the dll in Tomcat? Try placing it in TOMCAT_HOME/lib. ..mb.. -Original Message- From: Arik Levin [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 05, 2001 4:46 PM To: [EMAIL PROTECTED] Subject: c++ dll Hi. I have some c++ dll,

RE: Question on IIS with Tomcat

2001-07-05 Thread Randy Layman
In regedit you don't need to put the double backslashes, just use one. Randy -Original Message- From: Chen Bo [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 9:12 PM To: [EMAIL PROTECTED] Subject: Question on IIS with Tomcat Hello, all there There's

RE: JDBC Realm Questions Tomcat 3.2.2

2001-07-05 Thread Rajehswar V. Rao
I am looking for same -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 05, 2001 4:02 AM To: [EMAIL PROTECTED] Subject: Fwd:JDBC Realm Questions Tomcat 3.2.2 Someone please respond to these questions so I know whether JDBC Realms are a

Re: User login logging (JDBC authentication)

2001-07-05 Thread Mark Muffett
Raj and all I've managed to make the changes (very easy), but of course it doesn't work exactly as I wanted it (isn't life always like that...) I've got a database which is filling up fast since a new log gets written to it every time a user accesses a new page (probably about 100 times

RE: has anyone ever got the error-page feature (defined in web.xml) to work?

2001-07-05 Thread Hughes, Tim
Hi, We are trying to use the error-page facility but without any success. Does Tomcat implement this or not? Has anyone seen it working? Tim Hughes -Original Message-

RE: User login logging (JDBC authentication)

2001-07-05 Thread Randy Layman
What is happening is that Tomcat is using the user's credentials (username/password) in the Session to authenticate. If they are not there or invalid, then the user is prompted to log in again. Randy -Original Message- From: Mark Muffett [mailto:[EMAIL PROTECTED]]

RE: has anyone ever got the error-page feature (defined in web. xml) to work?

2001-07-05 Thread Randy Layman
We have is successfully working for catching Java Exceptions. Haven't tried HTTP Error codes, though. Randy -Original Message- From: Hughes, Tim [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 05, 2001 8:38 AM To: '[EMAIL PROTECTED]' Subject: RE: has anyone ever

Access protected

2001-07-05 Thread Nicolas Preget
Hi I would like to protect (using password for instance) the access to parts on my Tomcat installation. Do you know how I can make it ? Regards. Nicolas

RE: User login logging (JDBC authentication)

2001-07-05 Thread Rajehswar V. Rao
Hi Randy and all, if that is the case where can i set username and password And one more thing, i am using tomcat with IIS ...can i restrict resources(JSPs and Servlets) on tomcat from IIS... Any help would be appreciated -raj- -Original Message- From: Randy Layman

RE: has anyone ever got the error-page feature (defined in web. xml) to work?

2001-07-05 Thread Hughes, Tim
Hi, I have been playing around with this for a couple of hours now and it seems that the following is the case: If the error is generated by a servlet (response.sendError(int i)), then: -you can catch it with another servlet (i.e. with a servlet as error page) -but you cannot catch it with a

Re: Tomcat startup under NT

2001-07-05 Thread David Herder
A thank you goes out to Steven Turoff... your suggestion helped me to isolate the problem once I was able to see what Tomcat was doing... an improperly terminated Resource Interceptor in the server.xml. Thanks!!! Another request... now that my servlets are working, where can I access the

Does Apache Come With Tomcat Built In or Pre Integrated?

2001-07-05 Thread Russell, Steve
Just curious if it does or doesn't. If it doesn't, why not. I'm sure there is a good reason. I'm just curious Steve Steve Russell Web Developer III ValueOptions - Lifescape 703-205-6589 [EMAIL PROTECTED] ** This email and

RE: User login logging (JDBC authentication)

2001-07-05 Thread Rajehswar V. Rao
Hi randy, I would appreciate your patience... I am coming from first... This is my prblem I have 10 JSPs under myCon/jsp folder in Tomcat.. One of them is Login.jsp...which does authentication of user... i check the username and password against data which lies in SQLServer 7.0... Once the

RE: User login logging (JDBC authentication)

2001-07-05 Thread Randy Layman
You can use the Realms security infrastructure of Tomcat to achieve what you are trying to do - you will need to modify your web.xml file, but its pretty easy. http://jakarta.apache.org/cvsweb/index.cgi/jakarta-tomcat/src/doc/ is the documentation for Tomcat in the CVS

Re:RE: JDBC Realm Questions Tomcat 3.2.2

2001-07-05 Thread Jonathan Pierce
The real question is are you just wanting jdbc datasources or are you wanting a JDBC user authentication modality? Because that's what JDBCRealm is for, not for general JDBC connections. Once, again I've got to say I think you are misunderstanding Realms. You do not need to directly access JDBC

RE: c++ dll

2001-07-05 Thread Everitt, Andrew
It doesn't require code, in the arguments for the JVM add the -D parameter e.g. java -classpath [CLASSPATH] -Djava.library.path=[Path to DLL] org.apache.tomcat.Tomcat [args] Andi. -Original Message- From: Manish Bhatnagar [mailto:[EMAIL PROTECTED]] Sent: 05 July 2001 12:49 To:

Re: mod_webapp.so

2001-07-05 Thread Alberto Torna Jr.
I can't tell you how Tomcat 4.x and Apahce are integrated. But I can tell you how Tomcat 3.2.x Apache work. In the end, it was so simple! 2 things. 1. Append “Include TOMCAT_HOME/conf/tomcat-apache.conf to appache’s httpd.conf file 2. Drop mod_jserv.dll into APACHE_HOME/modules And it

-encoding option

2001-07-05 Thread Kaneda K
I sometime have this error, when I update some of my classes, and after stopping / restarting tomcat. org.apache.jasper.JasperException: Unable to compile class for JSP/datadev/webapps/capimmo/WEB-INF/classes/com/cybericare/cas/capimmo/ProceduresSentences.java:1: The source file encoding

Re: Xalan Redirect for multiple output from Web Page

2001-07-05 Thread Robert Koberg
h3a href={@file}Exercise xsl:value-of select=.//a/h3 redirect:write file=ccrap.html I think you might want (I assume the @file is a relative path, otherwise provide the full system path): h3a href={@file}Exercise xsl:value-of select=.//a/h3 redirect:write select=@file but,

Re: PoolMan woes

2001-07-05 Thread Matt Barre
Thank you for the help. I upgraded to jdk1.3.1 which got PoolMan running. I can now setup the config file and tomcat presents me with a list of available pools when I use the packaged poolman application. I ran queries against the pool and had no problems. I shutdown Tomcat, and changed the

NT services applet

2001-07-05 Thread Minglong Wu
Hi, I am trying to install nt_service on my win2000 jdk131 How to figure out the following question: "From the NT services applet, highlight your service and press start." How to find the NT services apple? Thanks. Minglong

RE: NT services applet

2001-07-05 Thread Randy Layman
Go to the Start Menu (the little button labeled Start in the lower left corner of the screen) and click it. On the menu that pops up, select Settings. This will cause another menu to popup. Select Control Panel. This will open a window. Double click on the Services icon. This is the

Re: solved! blue screen with servlets/jsp in Apache-Tomcat

2001-07-05 Thread Dominic North
As meg, I only have SP1. In the mean time, I've had this reply from Zone Labs: In article [EMAIL PROTECTED], Support wrote: (#7225-29-3430\293430) Thank you for providing information regarding this issue. This is a known problem and our engineers are working towards a fix. We

How stable is 4.0

2001-07-05 Thread Michael Lechner
My question: is anybody using the 4.0 Beta version in a production environment ? Is the current version worth giving it a try (of course with an internal test first). I'm having some (lots) of stability problems with the latest tomcat release on a "quite busy" site ( up to 300 simultanious

filtering IP's on Tomact

2001-07-05 Thread Paulo Roque
Hi, Could anyone enlight me about if it is possible to filter a set of IP addresses on Tomcat 3.2.1 ? Thanks! Paulo Costa Portugal _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

RE: JDBC Realm Questions Tomcat 3.2.2

2001-07-05 Thread Ignacio J. Ortega
Hola Kaneda: It does. I personally use it, and it . It is stable. I use mySQL mm driver. Fine !!! (NB: for the mySQL user add autoReconnect=true otherwise the realms crash an no one can be indentify correctly that make that connectionURL=jdbc:mysql://LOCALHOST:3306/mydatabase?autoReco

Apache-Tomcat-mod_jk integration

2001-07-05 Thread kun yan
I am new to tomcat. When I tried to build mod_jk from tomcat souce code, I got the following error: apxs:Break: Command failed with rc=16777215 after all the *.c compiled. Anyone know why and how could I get mod_jk.so? Thanks in advance! Regards, Kun

Is there a quick solution for tomcat4-b5 and RMI

2001-07-05 Thread Peck, Jason
I am trying run some code from within a web-app under tomcat4-b5 that uses rmi. The code works fine from the command line however once called from within a web-app I get a nasty exception when trying to get the remote object. Everything is running locally on a NT platform using jdk1.3_02. I

Re: filtering IP's on Tomact

2001-07-05 Thread Alberto Torna Jr.
What do you mean by filtering? From: "Paulo Roque" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: filtering IP's on Tomact Date: Thu, 05 Jul 2001 16:35:35 - Hi, Could anyone enlight me about if it is possible to filter a set of IP addresses on

restarting web-apps independently

2001-07-05 Thread Frederick Lefebvre
Would Tomcat allow us to restart web-apps independantly without having to restart the application server(Tomcat). Thanks Fred -Original Message- From: Dmitri Colebatch [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 04, 2001 8:13 PM To: [EMAIL PROTECTED] Subject: Re: Starting

Making Tomcat 3.2 A Service On Win 2000 ( using jdk 1.3.0_02 )

2001-07-05 Thread Russell, Steve
Hi; I found some instructions at jakarta.apache.org for making tomcat a service: http://jakarta.apache.org/tomcat/tomcat-3.3-doc/NT-Service-howto.html It didn't answer some questions I would like to know before I begin. 1. The instructions mention setting TOMCAT_HOME in

RE: Making Tomcat 3.2 A Service On Win 2000 ( using jdk 1.3.0_02 )

2001-07-05 Thread Tim
Steve, I recently set Tomcat up as a service on an NT box using JavaService : http://www.alexandriasc.com/software/JavaService/documentation.html It's pretty straight forward to set up and has been working for a week now with no probs whatsoever. JavaService was originallyinspired by

RE: Making Tomcat 3.2 A Service On Win 2000 ( using jdk 1.3.0_02 )

2001-07-05 Thread Russell, Steve
Thanks. I just got it. I set a "JDK_HOME" environ variable ( no spaces in the path ), I moved the exe to the TOMCAT_HOME\bin I moved their tomcat32Install.bat file to TOMCAT_HOME\bin I ran the install file I went to services ( windows 2000 ) and there is no "tomcat" there. Any ideas

Registry question

2001-07-05 Thread Bayi, Omari J.
Hello- I'm having a little trouble following the tomcat install directions. On step 8 of Configuring the ISAPI Redirector in the Tomcat IIS How to document, it states to add a Filter DLLs key under HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\W3SVC\Parameters. However, it doesn't say

java error in database access

2001-07-05 Thread Dwaipayan
i have been facing a problem in tomcat which i could not solve may be due to being a first time user . i will be pleased if u could tell me the source of this problem. i have a login page where the user enters username and password in 2 text fields(user pwd).the form action leads to login.jsp

RE: Registry question

2001-07-05 Thread Jann VanOver
Yes. That is correct. And make sure your path to isapi_redirect.dll does NOT have any spaces in it. This can cause problems. -Original Message- From: Bayi, Omari J. [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 05, 2001 12:29 PM To: '[EMAIL PROTECTED]' Subject: Registry question

java error in database access

2001-07-05 Thread Dwaipayan
i have been facing a problem in tomcat which i could not solve may be due to being a first time user . i will be pleased if u could tell me the source of this problem. i have a login page where the user enters username and password in 2 text fields(user pwd).the form action leads to login.jsp

generic exceptions on startup

2001-07-05 Thread wire
This is a partial list of exceptions that I'm getting at startup (Win 98, 3.2.1). Anybody know what's going on? TOMCAT_HOME is properly set to C:\tomcat Not Apache nor IIS nor NS (whatever that is) are not involved in my setup at all. Thanks. java.lang.Exception at

RE: Making Tomcat 3.2 A Service On Win 2000 ( using jdk 1.3.0_02 )

2001-07-05 Thread Randy Layman
1. No quotes and no spaces in filenames allowed. Use one backslash (\) in your paths. The examples that come in the conf directory are correctly formatted, but probably for the wrong directories. 2. Sun fixed the problem for JDK 1.3.1. All 1.3.0 versions have problems.

RE: generic exceptions on startup

2001-07-05 Thread William Kaufman
Looking at the source code, he's just throwing the execption to himself as a debugging message. You could turn it off by dropping your debug level to 20, but I wouldn't worry too much about it. -- Bill K. -Original Message- From: [EMAIL

RE: java error in database access

2001-07-05 Thread Randy Layman
Your problem is the JDBC-ODBC Bridge. Search through Sun's BugParade for more detailed information, but basically the bridge is not thread-safe and concurrent access will cause Page Fault/GPF/Dr Watson errors on Windows based computers. Randy -Original Message- From:

Re: PoolMan woes

2001-07-05 Thread Matt Barre
One more thing to go and I think I'll be there :) My dev system uses SQL Server which works perfectly with PoolMan currently. My prod system is running MySQL. Currently MySQL gives an error saying user:'web@' not valid. I have made multiple entries in the mysql user table for the same

admin password

2001-07-05 Thread Chris Kmiec
Does anyone know what the password is to get into the Admin tool that comes with the standard installation of tomcat? I didn't find anything of relevance in the /webapps/admin/Web-inf/web.xml file or anywhere in its vicinity. I tried the various combinations of Admin/Admin, Admin/Tomact

Re: admin password

2001-07-05 Thread David Herder
I believe that it has something to do with editing the tomcat-user.xml file to match what the (admin context) web.xml file states for the particular role. I am trying to solve this problem, too, so if you find out, please let me know. dave -- From: Chris Kmiec [EMAIL PROTECTED] To:

web.xml and taglibs

2001-07-05 Thread Mike Jackson
I've got a custom tag library that works on my devel system (win32, tomcat by itself), but when I go over to the production system (unixware, apache-mod_jk-tomcat) my library doesn't seem to be working. I'm using the following entry in the web.xml file: taglib

mod_jk build on Solaris 2.6

2001-07-05 Thread kun yan
Hi, I installed Apache 1.3.20 Tomcat 3.2.2 on Solaris. I tried to build mod_jk.so but get the following error. gcc -DSOLARIS2=270 -DUSE_EXPAT -I../lib/expat-lite -DNO_DL_NEEDED -I/mnt/sdt/kunyan/apache/include -I/usr/java1.2/include/solaris -I../jk -I/usr/java1.2/include -DSOLARIS -c

Re: admin password

2001-07-05 Thread Grim Shieldsson
If you look in the webapp/admin/WEB-INF/web.xml file, you'll notice that the roe is set to admin. Then you go into the tomcat-user.xml file, and make sure that a user in that file has the role of admin. Voila. --- David Herder [EMAIL PROTECTED] wrote: I believe that it has something to do with

Re: JSP / JavaBean problem

2001-07-05 Thread Boris Niyazov
According to JSP specs if you're attemting to initialize a bean property from a request parameter that does not exist or is defined as an empty value then jsp:setProperty command has no effect: the tag is just ignored. More exactly (from the JSP 1.1 spec): If the param is not set in the

RE: Does Apache Come With Tomcat Built In or Pre Integrated?

2001-07-05 Thread Jann VanOver
It doesn't. Not everyone who needs Apache needs Tomcat and vice-versa. -Original Message- From: Russell, Steve [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 05, 2001 6:33 AM To: '[EMAIL PROTECTED]' Subject: Does Apache Come With Tomcat Built In or Pre Integrated? Just curious if it

RE:TOMCAT LOG FILE BEHAVIOUR

2001-07-05 Thread Boris Niyazov
It's a feature. I'm not sure what you can do on NT but on unix we have written a script that moves all logs in an archive and then restarts tomcat. You may want to modify your tomcat startup.bat script to add this functionality.

Re: http errors

2001-07-05 Thread Francisco Areas Guimaraes
I tried what you said, put the error-page in the web.xml in the WEB-INF inside my app(webapps/test/WEB-INF) and in the web.xml in the conf directory( tomcat/conf). I´m using tomcat 3.2.1 and win2000, i tried in tomcat 3.3 and it didn´t workout either, what could be wrong? - Original

Startup Script

2001-07-05 Thread Lars Nielsen Lind
Hi. I have some problems with the default 'tomcat.sh start' script. When I'm running it from my Java app. the program freezes. If I start another instance of the Java app. and choose to shutdown Jakarta-Tomcat, then the first Java app. shows all the startup details. So when I'm starting

Re: List traffic et al

2001-07-05 Thread Hemant Singh
HI: Heartly agree with yur idea and before this also i keep on getting agree with same kind of ideas but i just dont know who is the moderator of this group and how this can be acheived. Regards Hemant - Original Message - From: Milt Epstein [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

log files

2001-07-05 Thread John Michael Luy
is there a way to rotate logs for tomcat-3.2.2. can you limit the size of the logfile within tomcat?

Tomcat as an NT Service, in win 2000

2001-07-05 Thread Henry Kozachkov
Will the instructions for NT service work in win 2000. I don't know if this is a bug or not, but under win 2k, I get C:\net start tomcatThe Tomcat service is starting.The Tomcat service could not be started. The service did not report an error. More help is available by typing NET HELPMSG

stand alone tomcat webserver question

2001-07-05 Thread Yomyung Leem
Hi folks. I am quite new to this web server stuff, and I found tomcat today. What I want to know that I could not find on the web page were the following: 1. Can it handle cgi perl scripts? *.asp files? 2. ApJServDefaultPort 8007, does ApJServ have to be started even in stand alone mode? (I

Truncation when using getAttribute() from request object

2001-07-05 Thread sam
G'day I am running IIS 4 on NT Server with Tomcat 3.2.2 I have IIS set up to receive SSL requests (not tomcat). This has proven successfull on my development box. Where i have been able to use the following code to get the serial number of the certificate sent with a SSL request.

RE: I need help in tomcat configuration with Oracle 8.1.7

2001-07-05 Thread Mike Braden
Tobias, Here is an example that should help: http://www.thejspbook.com/solaris-oracle-howto.html Mike. -- Mike Braden [EMAIL PROTECTED] [EMAIL PROTECTED] -Original Message- From: Internet Total Solutions LLC - Customer Liaisons Department - [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

Re: Getting contextPath from a HttpServlet object

2001-07-05 Thread Dmitri Colebatch
request.getContextPath(); cheesr dim On Fri, 6 Jul 2001 13:27, you wrote: Is there an API to get the contextPath for a servlet? -- Thanks Jacob

Remove DNS lookup

2001-07-05 Thread David Wall
Is there a class that can do a reverse DNS lookup, giving me the hostname that matches a given IP address? I'm able to retrieve the IP address of an HTTP request just fine using request.getRemoteAddr() (and getRemoteHost() returns the same IP address dotted numbers), but the java.net package

Re: Remove DNS lookup

2001-07-05 Thread wire
Thursday, July 05, 2001, 11:35:55 PM, [EMAIL PROTECTED] wrote: DW Is there a class that can do a reverse DNS lookup, giving me the hostname DW that matches a given IP address? I'm able to retrieve the IP address of an DW HTTP request just fine using request.getRemoteAddr() (and

Re: Reverse DNS lookup

2001-07-05 Thread David Wall
InetAddress.getByName(ip address).getHostName() will do what you want, if the info is available. Where would the info have to be available? Is there anything comparable to a dig -x command under Unix? For most IP addresses, there will not be anything configured on my computer, but I know

can't find tomcat.jar ?

2001-07-05 Thread wire
A fresh install of 3.3-m4 (with jdk1.4 on '98), and when I try to access a jsp I get an error on finding C:\tomcat\lib\tomcat.jar. And C:\tomcat\lib\tomcat.jar does exist. Thanks for any help. org.apache.jasper.JasperException: Unable to compile Found 2 system errors: *** Error: Could not find

RE: Tomcat as an NT Service, in win 2000

2001-07-05 Thread Govind Agarwal
This happens whenthe Wrapper.properties file is not configured properly. Check for all the path mentioned in your properties file and then try to run it again. otherwise try to run the Tomcat.bat file in the bin folder or run the command mentioned at the end of wrapper.properties file.

Re: List traffic et al

2001-07-05 Thread Jeff Kilbride
Even if the list is not split into these specific sub-topics, I would certainly like to see it split along Windows/Unix lines. I use Unix exclusively and I skip over 99% of the Windows questions, because I don't have any experience with Tomcat on that platform. I'm sure Windows users feel the

Re: List traffic et al

2001-07-05 Thread Dmitri Colebatch
I think the big problem with splitting the list is that everyone is going to be interested in their own little niche. I for instance learn nothing by answering many questions that I answer, but I do learn things from reading other answers. If the list was split, I would (potentially) have

mod_jk

2001-07-05 Thread Anagha Mudigonda
hi, while compiling the source for mod_jk i find a lot of .h files cant be opened ... like jk_global.h etc. am i doing something wrong ?? help ! how do i go about it ? regards anagha -- Where the mind is without fear and the head is held high; Where knowledge is free; Where the world has not

Re: imp - Tomcat with SSL

2001-07-05 Thread Dmitri Colebatch
On Fri, 6 Jul 2001 16:03, Parag S wrote: Does Tomcat supports SSL yes it does. download it - look in $TOMCAT_HOME/doc/tomcat-ssl-howto.html If yes then which version supports it. thats from 3.2 Please let me know immediatly hmmm, its a mailing list - we'll answer your query when we

RE: imp - Tomcat with SSL

2001-07-05 Thread Lakshminarayanan Ramakrishnan
ITHINK TOMCAT 3.2 SUPPORTS SSL, YOU CAN GO THRU THE DOCUMENTATION PROVIDED. LAX -Original Message-From: Parag S [mailto:[EMAIL PROTECTED]]Sent: Friday, July 06, 2001 11:33 AMTo: [EMAIL PROTECTED]Subject: imp - Tomcat with SSL Does Tomcat supports SSL If yes then