Re: JSSE

2002-02-10 Thread masanori hashimoto
ARIGATOH!!(Thank you). I lacked proper understanding. http://java.sun.com/products/jsse Please note that JSSE comes bundled with Java 1.4, so there is no need for a separate download if you are using 1.4. Where can JSSE be downloaded? -- To unsubscribe: mailto:[EMAIL PROTECTED] For

RE: Load balancing app context ?

2002-02-10 Thread Jose Solorzano
What kind of state do you store in those variables? With multiple VMs, you can store user/session state in cookies, in a shared database or you can use an application server. --Jose - Message sent using LoudPC - get it now:

Tomcat 4.0.1 rpm install - test fails??

2002-02-10 Thread kalbee
I used the rpm install for Tomcat 4.0.1 onto RHLinux 7.1, and I can start/stop Tomcat using /etc/rc.d/init.d/tomcat start|stop|restart. I don't receive any errors doing this. However, when I go to test the tomcat installation using my browser: http://localhost:8080 I don't get the site, I get

Re: Load balancing app context ?

2002-02-10 Thread Vjeran Marcinko
- Original Message - From: Jose Solorzano [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Sunday, February 10, 2002 2:32 PM Subject: RE: Load balancing app context ? What kind of state do you store in those variables? With multiple VMs, you can store

Error reading init-params

2002-02-10 Thread Dominik Jednoralski
Hey Guys, I have a problem with getting my init-params from the web.xml-file. I'm using Tomcat 4, and these are the parameters I inserted into the webapps/root/web-inf/web.xml-file: web-app servlet servlet-nameShowMsg/servlet-name servlet-classlimeservlets.ShowMessage/servlet-class

RE: Tomcat 4.0.1 rpm install - test fails??

2002-02-10 Thread Mike Millson
I initially tried to install it using the rpms and got the same result as you - it didn't work. I'm also using RH 7.1. I finally gave up and installed a binary distro from the 4.0.1 release. It works fine - you just have to write your own init.d script or just start and stop it using the .sh

Re: Error reading init-params

2002-02-10 Thread Matt Egyhazy
i just use String thisString = getInitParameter(nameofparameter); matt - Original Message - From: Dominik Jednoralski [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, February 10, 2002 11:49 AM Subject: Error reading init-params Hey Guys, I have a problem with getting my

Re: Tomcat 4.0.1 rpm install - test fails??

2002-02-10 Thread Tore Skogly
I installed the RPM's on RH 7.2, and everything worked ok. One problem I have seen is that the documentation rpm doesn't contain what it is supposed to... Starting and stopping Tomcat using service tomcat4 start/stop/restart works out of the box after installing the rpms. Remember that the

Re: Please someone, I really need help with this issue.

2002-02-10 Thread Mark R. Diggory
I tried including WebAppDeploy ROOT warpConnection / this totally doessn't work, the ROOT mapping interfereswith all the other mappings and then nothing works but the ROOT mapping. if I hard code the sers directory with WebAppDeploy then it works, but this is not scaleable WebAppDeploy

Re: Tomcat 4.0.1 rpm install - test fails??

2002-02-10 Thread Frank
My tomcat 4.0.1 listens on port 8080 under 7.1(installed from the binary distro for all of the reasons already stated) [EMAIL PROTECTED] wrote: I installed the RPM's on RH 7.2, and everything worked ok. One problem I have seen is that the documentation rpm doesn't contain what it is

RE: Load balancing app context ?

2002-02-10 Thread Jose Solorzano
Yes, it does sound kind of weird :) You could simply use sockets for the initial connection. That way you won't need at least one blocked HttpConnector thread for each active applet client. Threads are relatively expensive. Also, you should take into consideration that certain routers won't let

How to get hold of the JSP session scope bean from within a Filter?

2002-02-10 Thread Kar YEOW
Does anyone knows how to get a reference to the jsp bean (ie jsp:useBean scope='session') inside the Filter code? Kar Yeow System Architect APIR Systems Pty Ltd Ph: 61 2 6260 6035 Fax: 61 2 6260 6037 Email: [EMAIL PROTECTED] -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional

Re: Load balancing app context ?

2002-02-10 Thread jonathan
On Sun, Feb 10, 2002 at 03:04:40PM -0600, Jose Solorzano wrote: Yes, it does sound kind of weird :) You could simply use sockets for the initial connection. That way you won't need at least one blocked HttpConnector thread for each active applet client. Threads are relatively expensive.

ClassLoader problem?

2002-02-10 Thread marco . sarti
Tomcat 4.0.1 - Linux - sun jdk 1.3.1_02 I'm developing a web app where users are authenticated on a Oracle database. I have implemented a personal Realm class called (for example) MyRealm. This class create an instance of a class MyPrincipal (implementing java.security.Principal) and store

Re: How to get hold of the JSP session scope bean from within aFilter?

2002-02-10 Thread Craig R. McClanahan
On Mon, 11 Feb 2002, Kar YEOW wrote: Date: Mon, 11 Feb 2002 08:06:08 +1100 From: Kar YEOW [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Subject: How to get hold of the JSP session scope bean from within a Filter? Does anyone

Using a JavaBean from within a servlet

2002-02-10 Thread Dahnke, Eric
Hello, This is killing me. I've got a form that posts to a servlet. I simply want to get the form variables into a bean's properties. I can find only one reference to what I'm trying to do here. it is a formToBean() method from a FormUtils package, that some company sells. Reading form

Empty documentations after installation

2002-02-10 Thread Bing Zhang
Hi, I downloaded and installed following rpms on a RedHat 6.2 box in the order they appear, tomacat4-4.0.1-1.noarch.rpm tomacat4-manual-4.0.1-1.noarch.rpm tomacat4-webapps-4.0.1-1.noarch.rpm However all the *.html files under $catilina_home/webapps/tomcat-docs and its subdirectory are

Re: Empty documentations after installation

2002-02-10 Thread Micael Padraig Og mac Grene
That is not unusual, unfortunately, just keep trying. Took me about five downloads to get all of the src code the other day. At 04:10 PM 2/10/02 -0800, you wrote: Hi, I downloaded and installed following rpms on a RedHat 6.2 box in the order they appear, tomacat4-4.0.1-1.noarch.rpm

Re: Using a JavaBean from within a servlet

2002-02-10 Thread Charles Baker
--- Dahnke, Eric [EMAIL PROTECTED] wrote: Hello, This is killing me. I've got a form that posts to a servlet. I simply want to get the form variables into a bean's properties. I can find only one reference to what I'm trying to do here. it is a formToBean() method from a FormUtils

Re: Empty documentations after installation

2002-02-10 Thread jonathan
On Sun, Feb 10, 2002 at 04:10:49PM -0800, Bing Zhang wrote: Hi, I downloaded and installed following rpms on a RedHat 6.2 box in the order they appear, tomacat4-4.0.1-1.noarch.rpm tomacat4-manual-4.0.1-1.noarch.rpm tomacat4-webapps-4.0.1-1.noarch.rpm However all the *.html files

RE: Using a JavaBean from within a servlet

2002-02-10 Thread Dahnke, Eric
Thanks a lot, how might I get at that FormBean instance from either the Welcome or Index jsp pages per the example below? I have properties in the FormBean class pertaining to error_msgs and such I'd like to get from the jsp. For the instance of the FormBean object that validate() was run on.

Re: Load balancing app context ?

2002-02-10 Thread Vjeran Marcinko
- Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, February 10, 2002 10:35 PM Subject: Re: Load balancing app context ? What you describe is what TC4.0.2 + mod_jk + apache does. You assign a unique jvmRoute to each of you tomcats and

Finally got IIS Tomcat to work

2002-02-10 Thread Scott Adamson
Many thanks to everyone on the list who have recently assisted me, finally found the problem - the default website was not set to port 80. Just my ignorance of IIS, didn't know that these 'websites' represented a different process listening on a different port. Bloody Doze, I can't wait to get

substitute security providers

2002-02-10 Thread Trevor Nielsen
Hi, I am currently trying to establish if I can specify my own security provider to be used by Tomcat 4.0.1 instead of the one packaged. I'm led to believe it may be possible (or may in the future be allowed) by the server.xml file. When you set up and SSL Connector, you have to specify the

AW: Moving to Tomcat from SilverStream - replacement for Fulcrum?

2002-02-10 Thread Ralph Einfeldt
Some possible solutions: http://jakarta.apache.org/lucene/docs/index.html http://sourceforge.net/projects/neatseeker/ http://www.htdig.org/ (To use it in java, you have to use some brute force, as they don't deliver a servlet anymore (at least I couldn't find it)

Re: Ajp12 Problems between Zeus and Tomcat-3.2.4

2002-02-10 Thread Zsolt Koppany
Sometimes I see HTTP headers shown by netscape-6 (for example the version number of the server), and sometimes the session handling seems to be buggy and these problem never occurs over the port 8080. Zsolt On Thursday 07 February 2002 04:20 pm, you wrote: De: Zsolt Koppany [mailto:[EMAIL