RE: Problem adding new servlets under Tomcat 4.0.3

2002-04-25 Thread Ken Miller
Jake, Got it working...thanks for the help. Ken -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Bug ?!? redirector - cookies

2002-04-25 Thread Maarten Eerdekens
Dear all, Yesterday I found out this problem: I wrote a servlet setting and retrieving cookies. To make sure the value of the cookies does not contain strange characters, I en/decode this value as Base64. I tested the servlet on a development machine (W2K - tomcate 4.0.1 standalone) and every

EmbededTomcat in Tomcat 3.2.3

2002-04-25 Thread Xavier Marjou
Hello, I tried to embed Tomcat3.2.3 in the following class: import org.apache.tomcat.startup.EmbededTomcat; import javax.servlet.ServletContext; import java.net.URL; public class MyEmbeddedTomcat { public static void main(String args[]) { try { EmbededTomcat tc = new EmbededTomcat();

How to detect Timeout and take action consequently

2002-04-25 Thread Raphael Di Cicco
Hi my web application has a timeout of 15 minutes. I'm trying to figure out how to check whether there is a timeout, and in this case warn the user to come back to the login page (instead of a horrible NullPointerException). Did anyone come up with a JSP that's working with this ? -- To

Re: tomcat/apache with ALIASES (Was canonical names)

2002-04-25 Thread Hamish Marson
Brian Bernardo wrote: I am trying to use canonical names under apache 1.3.20 to work with tomcat 4.01. Right now when I go to http://cname1.domain/webapps Small correction... Sorry... It's the pedant in me... What you're using (Or trying to use) is aliases... The DNS records (CNAME etc al)

RE: JSP compile fails to find class

2002-04-25 Thread Steve D George
Thanks for the assistance. I think others have had this problem before cos I managed to find a similar posting in the archive after posting this. Just in case anyone finds this in the future, I added import statements for the two bean classes and sure enough it works fine now. Cheers. Steve

Tomcat multiple instances

2002-04-25 Thread Heart Prince
hi, I am developing an application service provider site. different people can register there, and they will get their own homepage and data (sensitive data like credit card info etc). currently i have created different folders for each user and gave it names (DNS) like user1.mysite.com,

Re: tomcat/apache with ALIASES (Was canonical names)

2002-04-25 Thread Oki DZ
On 04/25 15:33 Hamish Marson wrote: What you're using (Or trying to use) is aliases... The DNS records (CNAME etc al) are named after what they point AT (or more accurately) resolve to. Thus the CNAME record (Canonical name) points or resolves to the REAL name of the host. (Literally, the

Re: Error compiling mod_webapp for debian Linux

2002-04-25 Thread Simon Stewart
On Wed, Apr 24, 2002 at 03:53:34PM -0400, Andy Carlisle wrote: For purposes of recording this on the user group so that others may benefit (if they bother to check first that is ;- ), here is exactly what I did: Thank you, Jeffrey, for posting the steps needed to get mod_webapp built for

OT: RE: oci8 driver problem on Linux

2002-04-25 Thread Wolfgang Stein
-Original Message- From: Reynir Hübner [mailto:[EMAIL PROTECTED]] First of all, the classes12.zip is not the same for Oracle9i and 8i, so you must ensure that you've downloaded the correct one (from otn.oracle.com). Hi, we have a problem with our jdbc-connection (sql-exception:

servlet in multiple Tomcat-instances

2002-04-25 Thread it
Hi, I'm using multiple instances of Tomcat 3.2.4. The problem is, that I can access servlets of one instance even if the servlet is NOT in the webapps-directory of another instance. This is very confusing during the development of the servlet, because it still lives in the other instances

Re: tomcat/apache with ALIASES (Was canonical names)

2002-04-25 Thread Hamish Marson
Oki DZ wrote: On 04/25 15:33 Hamish Marson wrote: What you're using (Or trying to use) is aliases... The DNS records (CNAME etc al) are named after what they point AT (or more accurately) resolve to. Thus the CNAME record (Canonical name) points or resolves to the REAL name of the

Get the HttpSession from sessioncontext using sessionid

2002-04-25 Thread Yaman Kumar
Hi, I have a case where I would like to get the session from sessioncontext using sessionid. As 2.3 spec says thatthe below method is deprecated and has no replacement and returns null. String sessID = request.getParameter(sessid); HttpSession foriegnsession =

configuration doubt

2002-04-25 Thread Mandar Pohnekar
Dear Sir, does the Tomcat-IIS configuration for 4.0.1v is avaible? I m using tomcat 4.0.1 and I want to configure it with IIS webserver. Please guide me with this respect. Is there any way to upload .php files in tomcat? Thanking U, Mandar P.

mod_jk Catalina 4.0.2 communication problem

2002-04-25 Thread Denel Laurent
Hi all, I'm currently having troubles with the couple Catalina 4.0.2 and Apache 1.3.17. It seems that the connection between mod_jk and the jvm is not stable enough to handle the load. Our machines (there are two of them) are Netra X1 from Sun, running solaris 8: 5.8 Generic_108528-10. The JVM

multiple Tomcat-instances and a confused servlet...

2002-04-25 Thread klingenauber
Hi, I'm using multiple instances of Tomcat 3.2.4. The problem is, that I can access servlets of one instance even if the servlets is in the webapps-directory of another instance. This is very confusing during the development of the servlet, because it still lives in the other instances although

org.apache.jasper.JasperException: Unable to compile (class jsp.MoniBean not found)

2002-04-25 Thread chuck amadi
Error: 500 Location: /volapp/jsp/registerProcess.jsp *Internal Servlet Error:* org.apache.jasper.JasperException: Unable to compile /home/chucka/tomcat/work/DEFAULT/volapp/jsp/registerProcess_1.java:76: Class jsp.MoniBean not found. MoniBean formHandler = null;

Re: org.apache.jasper.JasperException: Unable to compile (class jsp.MoniBeannot found)

2002-04-25 Thread Todd Kaplinger
Thisis similar to a recent post for 4.0. Here is what appears to be going on. url requested -- /volapp/jsp/registerProcess.jsp context root -- /volapp creates a class file who's package is jsp. (If you keep the generated java, this will be pretty obvious). Since your bean is not in a package,

Re: Class jsppages.MoniBean not found. SORTED MYSELF CHEERS ALL

2002-04-25 Thread chuck amadi
chuck amadi wrote: *Hi there any reason for this as i i haven't got jsppages in my classes path or as a package in my MoniBea* *jsp:useBean id=formHandler scope=request class=MoniBean/** **jsp:setProperty name=formHandler

Re: org.apache.jasper.JasperException: Unable to compile (class jsp.MoniBeannot found)

2002-04-25 Thread Steve D George
This sounds very similar to my problem except that my JSP was in the root of the context so I got a slightly different error message. (See my posting from earlier today) Try adding this to the top of your JSP: %@page import =MoniBean% It worked for me! Cheers. Steve George

lib dirs - How do they work???

2002-04-25 Thread Steve D George
Hi, got a question about how the 'lib' directories are used. I have a webapp that makes use of a bunch of classes that generate images of maps (ie. streetmaps) that can be embedded in web pages. To make use of the mapping API, you need to access a number of jar files and therefore I've dumped

A Bit Off topic: UTF-8

2002-04-25 Thread Gregor Kovaè
Hi! I noticed a while ago that some of you had to use UTF-8 on your database. I'm just wondering how did you specify your collating sequence to be ok and not let it use byte - by - byte collating? Best regards, Kovi -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional

Stopping directory indexing

2002-04-25 Thread Allen Harper
How do I stop directory indexing? In other words, how do I stop the user from typing a URL pointing to a directory and getting the directory listing. Also, by default, if a user types the URL pointing to a .jar file, they can retrieve that .jar file... How can you stop that? Allen

Re: Stopping directory indexing

2002-04-25 Thread Gary McGowan
Allen In web.xml there will be init-param param-namelistings/param-name param-valuetrue/param-value /init-param Set the value to false and this will stop directory listing Gary - Original Message - From: Allen Harper [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

RE: Stopping directory indexing

2002-04-25 Thread Vinay Singh
-For Stopping directory listing look for following in server.xml of tomcat *** RequestInterceptor className=org.apache.tomcat.request.StaticInterceptor debug=0 suppress=false / *** Change to suppress=true -If you jar are lying in /WEB-INF/lib/ users cannot

SOAP

2002-04-25 Thread Martin Mauri
Hi, can anyone here suggest me a good place to download a good tutorial about SOAP? thanks you. Martin -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Visual café Ajp13Connector problems

2002-04-25 Thread Alexander Höglind
Hi, just wanted to let you know that there might be a problem in Ajp13Connector.class when you are running Tomcat 4.03 as a standalone service in debugmode in Visual café 4.1 a with jdk 1.2.2 VM. Ajp13Connector uses setKeepAlive that isn't included in that version of the Socket class. I just

Re: How to detect Timeout and take action consequently

2002-04-25 Thread Raphael Di Cicco
I have found the answer so I give the contribution : //put this code in every page with a @page include % long timeout = (new Date()).getTime() - session.getLastAccessedTime(); if(session==null || (timeout session.getMaxInactiveInterval()*1000)) { throw new MyException(Session has

Réf. : SOAP

2002-04-25 Thread staginfo-ar
www.xmethods.com/gettingstarted/apache.html Here is a small tutorial for beginning. Next use the apache tutorial. I have another link but I've forgotten it, I contact a friend and send it to you in a few days if you want. Jc -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional

Re: Réf. : SOAP

2002-04-25 Thread Martin Mauri
I'll appreciate that. thank you. - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, April 25, 2002 10:46 AM Subject: Réf. : SOAP www.xmethods.com/gettingstarted/apache.html Here is a small tutorial for beginning. Next use the

RE: MIME types in 3.3

2002-04-25 Thread Larry Isaacs
Hi Keith, The only alternative I'm aware of, other than cut and paste, is to build your own Tomcat 3.3.x and re-enable the the readDefaultWebXml() call in the contextInit() method of WebXmlReader.java. Cheers, Larry -Original Message- From: Keith Wannamaker [mailto:[EMAIL PROTECTED]]

Réf. : Re: Réf. : SOAP

2002-04-25 Thread staginfo-ar
http://www.soapware.org/directory/4/tutorials Try this. About 10 links to soap tutorials. Good luck!!! garsJC -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: How to detect Timeout and take action consequently

2002-04-25 Thread Jacob Kjome
That's fine, but why would you need to warn the user that the session is almost expired? As long as they are active any time within the 15 minutes they will have another 15 minutes from the time last accessed. This isn't really something you need to keep track of. The only thing you really

Re: Visual café Ajp13Connector problems

2002-04-25 Thread Alexander Höglind
H. I did a lot of work here but I just found out that I was terrible wrong about this!! Just forget about this message and make sure that you connect on port 8080! ( ; D)=( || o===o Alexander Höglind [EMAIL PROTECTED] - Original Message - From: Alexander

RE: multiple Tomcat-instances and a confused servlet...

2002-04-25 Thread Larry Isaacs
In server.xml, ContextInterceptor className=...AutoSetup will automatically add subdirectories of TOMCAT_HOME/webapps as contexts, using the subdirectory name as the context name. Context declarations in server.xml can override the settings for the auto-added contexts. If you don't want a web

Re: SOAP

2002-04-25 Thread Elizabeth Barham
Martin Mauri [EMAIL PROTECTED] writes: Hi, can anyone here suggest me a good place to download a good tutorial about SOAP? James Goodwill has some nice articles (on about SOAP): http://www.onjava.com/pub/ct/33 There are probably others on the site as well. Regards, Elizabeth -- To

TLD crashing in Tomcat

2002-04-25 Thread Javier Urbaneja Fan
I´m using Tomcat 4.0.3 I have written a tag library descriptor that fit the current Sun's DTD (web-jsptaglibrary_1_2.dtd), with the names of the elements according with the XML recomendation (i.e., tlib-version), it originates the next Parse Error when starting Tomcat:

Apache 2, Tomcat 4 and mod_jk2

2002-04-25 Thread Simon Stewart
Thanks to Michael Delamere and Pascal Forget, I'm happy to shout out that there's a HOWTO for setting up Apache 2, mod_jk2 and Tomcat on Linux (and therefore probably other UNIX flavours) It's linked from http://www.pubbitch.org/jboss Regards, Simon -- I'm moving to Mars next week, so if you

RE: Class jsppages.MoniBean not found. SORTED MYSELF CHEERS ALL

2002-04-25 Thread Larry Isaacs
I don't think moving all the pages to the base directory of your web application is the best solution. The important point about: jsp:useBean id=formHandler scope=request class=MoniBean/ is that MoniBean is declared to be in the default package, i.e. it has no package. If you don't declare

Multiple tomcat instances - disadvantages

2002-04-25 Thread Heart Prince
hi, I am developing an application service provider site. different people can register there, and they will get their own homepage and data (sensitive data like credit card info etc). currently i have created different folders for each user and gave it names (DNS) like user1.mysite.com,

RE: JSP compile fails to find class

2002-04-25 Thread Leonard Crowe
Is there a standard name for these static includes? Just thought I'd ask before making something up. -Original Message- From: Todd Kaplinger [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 7:05 PM To: [EMAIL PROTECTED] Subject: RE: JSP compile fails to find class If the

Using JCE with Tomcat 4.0

2002-04-25 Thread Debra Mendelson, CCE
I am trying to do some encryption and decryption inside of my servlets. I am running JDK 1.3 with Tomcat 4.0.3 I have added jce1_2-do.jar into my common/lib subdirectory in Tomcat and introduced it to my JDK by adding the line security.provider.3=com.sun.crypto.provider.SunJCE to

secure connections with SSL

2002-04-25 Thread Sidney Barbosa Ansaloni
Hi, I'm using TomCat 4.0.3-LE and J2SDK 1.4.0 in a Win98 PC. I've been deploying a web application and I would like that only certain pages run under SSL in my application (I've already configurated my TomCat to work with SSL). These pages absolutely require a secure connection. So, how can I

My Tomcat server doesn't run??????

2002-04-25 Thread Suresh Akula
Hi All I have downloaded jakarta-tomcat-3.1.1.zip and installed tomcat onto my D:drive. When i start the tomcat server by clicking on D:\jakarta-tomcat\bin\starttup.bat ..server doesn't run..wut is the problem???. I tried to download the latest version jakarta-tomcat-4.0.3 it also had the same

RE: TLD crashing in Tomcat

2002-04-25 Thread Douglas, Rory
You might try changing the DTD referenced in your web.xml as well ( ie change/check that is 2.3 not 2.2)?? Otherwise move to 4.0.4b2. I've been using that for a while now, and I haven't had any weird tag library issues. It also fixes a bug in 4.0.3 that makes my app hang on certain redirects

Re: tomcat/apache with ALIASES (Was canonical names)

2002-04-25 Thread Joseph Molnar
No. I use A and CNAMES depending on the situation. Do you have proper aliases set up in Apache? Joe - Original Message - From: Oki DZ [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, April 25, 2002 2:28 AM Subject: Re: tomcat/apache with ALIASES (Was canonical

Re: Class jsppages.MoniBean not found. Im Digesting

2002-04-25 Thread chuck amadi
Larry Isaacs wrote: I don't think moving all the pages to the base directory of your web application is the best solution. The important point about: jsp:useBean id=formHandler scope=request class=MoniBean/ is that MoniBean is declared to be in the default package, i.e. it has no package. If

RE: Using JCE with Tomcat 4.0

2002-04-25 Thread John W. Warner
If you're heavy on security you should be using JDK 1.4.0 and it will cut out this middle step you are experiencing. Technically, the JCE is deprecated in favor of the JDK itself since 1.4.0 incorporated the security work. Probably the preferred method would be to inside your constructor put

Re: getRemoteUser(), getAuthType() returning empty string insteadof NULL?

2002-04-25 Thread James Garrison
Ignacio J. Ortega wrote: Did you tried with tomcatAuthentication=true? This way works for me .. Still fails the same way. -- James GarrisonAthens Group, Inc. mailto:[EMAIL PROTECTED]5608 Parkcrest Dr http://www.athensgroup.com

Re: secure connections with SSL

2002-04-25 Thread Simon Stewart
On Thu, Apr 25, 2002 at 12:15:58PM -0300, Sidney Barbosa Ansaloni wrote: Hi, I'm using TomCat 4.0.3-LE and J2SDK 1.4.0 in a Win98 PC. I've been deploying a web application and I would like that only certain pages run under SSL in my application (I've already configurated my TomCat to work

Compiling mod_jk on Win2K, anyone?

2002-04-25 Thread Douglas, Rory
Hello It seems some people are having success getting mod_jk2 compiled on Linux platforms. Is this the only way? Compiling the java side of the connector is, of course, painless and works like a charm. The native side appears to be somewhat confusing. I have downloaded Cygwin which gave me

RE: Using JCE with Tomcat 4.0

2002-04-25 Thread Debra Mendelson, CCE
Thanks, That did the trick. Your advice about migrating to JDK 1.4.0 is well taken. Does JDK 1.4 come with any providers? -Original Message- From: John W. Warner [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 11:26 AM To: 'Tomcat Users List' Subject: RE: Using JCE with

Spoofing Tomcat

2002-04-25 Thread adrianthiele
Does anyone know how to spoof the identification on Tomcat ? So that it responds as a different server type and/or version. Adrian -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: secure connections with SSL

2002-04-25 Thread Sidney Barbosa Ansaloni
Thanks, I'm a newbie in this list... I'll start a new thread next time. []'s Sidney Simon Stewart wrote: On Thu, Apr 25, 2002 at 12:15:58PM -0300, Sidney Barbosa Ansaloni wrote: Hi, I'm using TomCat 4.0.3-LE and J2SDK 1.4.0 in a Win98 PC. I've been deploying a web application and

RE: Compiling mod_jk on Win2K, anyone?

2002-04-25 Thread Tim Cronin
this is for mod_jk but it might help... http://www.acg-gmbh.de/mod_jk/ -Original Message- From: Douglas, Rory [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 11:06 AM To: Tomcat Users List (E-mail) Subject: Compiling mod_jk on Win2K, anyone? Hello It seems some people are

RE: tomcat/apache with ALIASES (Was canonical names)

2002-04-25 Thread Brian Bernardo
First of all, I am very proficient with DNS; that was not the question. I want users who go to http://name.domain/webapps to have the same webappdeployment as http://name2.domain/webapps. It is important that however they got there (domain prefix) be maintained throughout their session. This

Re: Compiling mod_jk on Win2K, anyone?

2002-04-25 Thread Simon Stewart
On Thu, Apr 25, 2002 at 12:06:17PM -0400, Douglas, Rory wrote: Hello It seems some people are having success getting mod_jk2 compiled on Linux platforms. Is this the only way? There is a site with a Win32 DLL on it for mod_jk somewhere, but I can't remember where. It's been mentioned in

[Q] Using IBM JDK with tomcat 3.3

2002-04-25 Thread Sudhakar Chandra
Hi, Here is my setup: tomcat: 3.3a mod_jk: 3.3a Sun JDK: 1.1.8v1 IBM JDK: 1.1.8 OS: Debian GNU/Linux testing When I use Sun's JDK, the ajp12 and ajp13 workers start accepting connections. Here are relevant bits from the log files: Jdk11Compat: Installing jar protocol handler 2002-04-25

Question about web.xml

2002-04-25 Thread IvanLatysh
Hi All. I have small problem and I couldn't decide what to do. My application (JSP + Servelt) using dns server to perform dns lookup. I want to put dns server name into some external configuration file for convience. It seems that file web.xml could be used for this. Please help with idea where

RE: My Tomcat server doesn't run??????

2002-04-25 Thread Tim Cronin
read RUNNING.txt in the root of the tomcat directory -Original Message- From: Suresh Akula [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 11:54 AM To: [EMAIL PROTECTED] Subject: Re: My Tomcat server doesn't run?? I am beginner on tomcat..i havent got any solution yet..i

RE: [Q] Using IBM JDK with tomcat 3.3

2002-04-25 Thread Larry Isaacs
Tomcat 3.3.x doesn't get a lot of testing against any 1.1.8 JDK. What little testing it does get is done with Sun's JDK 1.1.8. This testing is done with a Tomcat that is built with Sun's JDK 1.1.8. The binary distribution is built with Sun's JDK 1.3.1. You might try building Tomcat 3.3 with

RE: My Tomcat server doesn't run??????

2002-04-25 Thread Lecaros, Noel
Could you outline the steps you took? We can help you better if we knew exactly what you did. Cheers, Sponks -Original Message- From: Suresh Akula [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 9:54 AM To: [EMAIL PROTECTED] Subject: Re: My Tomcat server doesn't run?? I

Re: getRemoteUser(), getAuthType() returning empty string insteadof NULL?

2002-04-25 Thread James Garrison
James Garrison wrote: Ignacio J. Ortega wrote: Did you tried with tomcatAuthentication=true? This way works for me .. I'm willing to look through the Tomcat code to try and debug this. Can you suggest where to start? -- James GarrisonAthens Group, Inc.

Re: My Tomcat server doesn't run??????

2002-04-25 Thread Suresh Akula
I am beginner on tomcat..i havent got any solution yet..i am running tomcat server on windows XP and the error is JAVA_HOME is not defined..when i set that variable to the parent directory where my java is installed(JAVA_HOME = D:\j2sdk1.4.0) still it doesn't work but the error message is

Apache 2.0, mod_webapp, Redhat 7.2 build problem

2002-04-25 Thread Ford, Richard
Well, I can't seem to get mod_webapp built under RedHat 7.2. I can't build the connector, and I'm not entirely sure why. I'm using Apache 2.0.35, which builds fine with no errors, and the latest snapshot of apr. mod_webapp is from the 4.0.2-01 bundle of the connectors. Apache was build with

RE: getRemoteUser(), getAuthType() returning empty string instead of NULL?

2002-04-25 Thread Ignacio J. Ortega
De: James Garrison [mailto:[EMAIL PROTECTED]] Enviado el: jueves 25 de abril de 2002 18:52 I'm willing to look through the Tomcat code to try and debug this. Can you suggest where to start? http://cvs.apache.org/viewcvs/~checkout~/jakarta-tomcat-connectors/jk/ja

Re: Catalina - Memory Usage always accumulating after one week

2002-04-25 Thread Rick Fincher
Hi Albert, There is a memory leak in the javac compiler in JDK 1.4.0. This is described in the release notes with Catalina. You can work around it by using jspc to precompile your JSP's or by dropping back to JDK 1.3.1. Hopefully it will be fixed in JDK1.4.1. Rick Hi Tomcat User, I use

Re: Apache 2.0, mod_webapp, Redhat 7.2 build problem

2002-04-25 Thread Michael Delamere
Hi, have a look at the HOWTO produced by Simon. http://www.pubbitch.org/jboss/ bye Michael Delamere - Original Message - From: Ford, Richard [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 25, 2002 7:05 PM Subject: Apache 2.0, mod_webapp, Redhat 7.2 build problem

Configuration of Tomcat for Netscape Enterprise Server

2002-04-25 Thread Yerragunta, Manjunath (Infosys)
Hi, We have a website running on Netscape Enterprise Server ( ver 3.63 ). So far we have been having only static content on the site. Now the new requirements need that we use JSPs as well. We are looking at integrating Tomcat with the existing installation of NES 3.63. The webserver is running

Re: compiled jk2 at last :-)

2002-04-25 Thread Pascal Forget
Michael Delamere wrote: Hi guys! After a lot of testing and doing silly things (last resort stuff), I finally managed to get jk2 compiled. And it works! YES!!! Here is what I did: 1. download http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0.3/src/jakar

stand alone tomcat

2002-04-25 Thread hagemanusa
I can't for the past two weeks use tomcat as standalone. I set mircsoft as my default browser. the local8080 index.html states that I have installed tomcat correctly. However, when the stand alone tomcat server appears after the fourth line the carrot blinks like it is waiting for input but

(another) question regarding JNDI + JDBC + null DataSource

2002-04-25 Thread Keith O'Connell (Work)
I've currently got a fairly simple app running which has been using DriverManager.getConnection() in order to connect to a database. I'd like to move this over to a JNDI-based DataSource solution; however, I'm having some problems, which I've seen have popped up for several people before.

Re: Servlet killing tracking

2002-04-25 Thread Neale Rudd
Hi Jacqueline, If your servlet is being destroyed, you can either do a stack trace dump to the log file in your destroy() method... new Exception().printStackTrace(); .. and then see which part of tomcat is killing the servlet, or alternatively do something else (depending on the problems

Re: Apache 2.0, mod_webapp, Redhat 7.2 build problem

2002-04-25 Thread Jeffrey Bonevich
Ford, Richard wrote: Well, I can't seem to get mod_webapp built under RedHat 7.2. I can't build the connector, and I'm not entirely sure why. I'm using Apache 2.0.35, which builds fine with no errors, and the latest snapshot of apr. mod_webapp is from the 4.0.2-01 bundle of the

RE: My Tomcat server doesn't run??????

2002-04-25 Thread Suresh Akula
these are the steps i took 1)extracted jakarta-tomcat-4.0.3.zip onto D: drive 2)set environment variable JAVA_HOME = D:\j2sdk1.4.0 2)Run startup.bat from D:\jakarta-tomcat-4.0.3\bin folder I get the following error: D:\jakarta-tomcat-4.0.3\binstartup The JAVA_HOME environment variable is not

Re[2]: My Tomcat server doesn't run??????

2002-04-25 Thread Jacob Kjome
Hello Suresh, You also need to specify CATALINA_HOME as an environment variable and set this to D:\jakarta-tomcat-4.0.3 Jake Thursday, April 25, 2002, 12:17:08 PM, you wrote: SA these are the steps i took SA 1)extracted jakarta-tomcat-4.0.3.zip onto D: drive SA 2)set environment variable

RE: My Tomcat server doesn't run??????i found it out

2002-04-25 Thread Suresh Akula
thanks...i found out the solution..it is running now From: Suresh Akula [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: My Tomcat server doesn't run?? Date: Thu, 25 Apr 2002 17:17:08 + these are the steps i took 1)extracted

RE: My Tomcat server doesn't run??????

2002-04-25 Thread Jay Gardner
-Original Message- From: Suresh Akula [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 11:17 AM To: [EMAIL PROTECTED] Subject: RE: My Tomcat server doesn't run?? these are the steps i took 1)extracted jakarta-tomcat-4.0.3.zip onto D: drive 2)set environment variable

RE: Apache 2.0, mod_webapp, Redhat 7.2 build problem

2002-04-25 Thread Ford, Richard
Obviously not very deep a search. There is a *ton* of postings from the last two weeks covering this issue. The short of it is: Go here and follow the instructions, it works. http://www.pubbitch.org/jboss.html Heh. Type mod_webapp in the search engine and see what gets returned :)

RE: Apache 2.0, mod_webapp, Redhat 7.2 build problem

2002-04-25 Thread Ford, Richard
Hi, have a look at the HOWTO produced by Simon. http://www.pubbitch.org/jboss/ This is great, thanks! Richard -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

RE: My Tomcat server doesn't run??????

2002-04-25 Thread Lecaros, Noel
You might have misspelled your JAVA_HOME, assuming this was a direct cut-and-paste from the command window. You also need to set CATALINA_HOME to your Tomcat install directory. Cheers, Sponks -Original Message- From: Suresh Akula [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25,

SystemOutLogger by context?

2002-04-25 Thread Miriam Blake
I've seen this asked but never answered... Is there a way to configure tomcat to use SystemOutLogger by context instead of having all stdout messages log into catalina.out? Thx. Miriam -- Miriam Blake Library Without Walls Los Alamos National

Re: Apache 2.0, mod_webapp, Redhat 7.2 build problem

2002-04-25 Thread Simon Stewart
The build process is buggy. This is something that has been discussed a lot recently, and there's a HOWTO that I've knocked up from my own experiences and those on the list. Take a look at http://www.pubbitch.org/jboss/ for the document. HTH! Cheers, Simon -- You know, I've gone to a lot of

RE: My Tomcat server doesn't run??????

2002-04-25 Thread Zachary Kuhn
Hey your problem is a misspelling. In your message it says Using JAVA_HOME: D:\jd2sdk1.4.0 notice that this is the wrong spelling. It should be D:\j2sdk1.4.0 you have an extra d in there Zak -Original Message- From: Lecaros, Noel [mailto:[EMAIL PROTECTED]] Sent: Thursday, April

Tomcat-4.1-dev not expanding .war file in webapps dir on startup if I explicitly specify a Context in Server.xml

2002-04-25 Thread Jacob Kjome
I'm probably just missing something, but it seems like my .war file, which I place in the $TOMCAT_HOME/webapps directory should be expanded upon startup of Tomcat, but it isn't when I specify a Context in Server.xml. In fact, it is expanded when I let Tomcat create a Context for it both at

Re: getRemoteUser(), getAuthType() returning empty string insteadof NULL?

2002-04-25 Thread James Garrison
Ignacio J. Ortega wrote: De: James Garrison [mailto:[EMAIL PROTECTED]] Enviado el: jueves 25 de abril de 2002 18:52 I'm willing to look through the Tomcat code to try and debug this. Can you suggest where to start?

Re: Apache 2.0, mod_webapp, tomcat 4.x integration

2002-04-25 Thread digital synapse
i've managed to load tomcat and apache 2.035 fine with your supplied mod_webapp.so file Simon. I both tomcat and apache work on problem on their own however when i go to www.liquidshell.net/examples it gives me a Object not found! error 404. ? What's goin down this time hrm... -digitalsy

request resource not available

2002-04-25 Thread Eric J. Meisler
I keep getting an error The request resource (/test/Login) is not available. I have no idea what is going wrong. I found an error that reads Exception intitializing TldLocationsCache: XML parsing error on file /WEB-INF/web.xml (line 3, col 9): Element type webapp must be declared my web.xml

RE: Request Interceptor

2002-04-25 Thread Subir Sengupta
Here's an example of a filter. This will run (after you put in the correct package) as is. It doesn't do anything terribly useful, but it should show you how a filter works. package xx.xx.xx; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class ExampleFilter

RE: Using JCE with Tomcat 4.0

2002-04-25 Thread Ganey, Todd
It is basically the same as JCE 1.2 just it is internal to JDK 1.4 . So providers will not have changed for you. For the JCE in JDK 1.4 you might want to get the Unlimited Strength (at least I think that is the name they give it) policy files. Todd -Original Message- From: Debra

Re: Apache 2.0, mod_webapp, tomcat 4.x integration

2002-04-25 Thread Simon Stewart
On Thu, Apr 25, 2002 at 01:49:33PM -0400, digital synapse wrote: i've managed to load tomcat and apache 2.035 fine with your supplied mod_webapp.so file Simon. I both tomcat and apache work on problem on their own however when i go to www.liquidshell.net/examples it gives me a Object

Re: [Q] Using IBM JDK with tomcat 3.3

2002-04-25 Thread Greg Bailey
I'm not familiar with Debian but if it's a 2.4 Linux kernel, you may need to set the environment variable LD_ASSUME_KERNEL=2.2.5 to get Java applications (like Tomcat) to work. Some JDK's (like IBM JDK 1.3 and 1.3.1) do this for you automatically. I use IBM's JDK 1.3 with Tomcat 3.3a and 3.3.1

Re: request resource not available

2002-04-25 Thread Jacob Kjome
Hello Eric, You misspelled url-pattern as url-patter + why do a URL mapping to map it right back to the package + className? Why don't you do something like: servlet-mapping servlet-nameLogin/servlet-name url-pattern/login/url-pattern /servlet-mapping Jake Thursday, April 25, 2002,

tomcat and SSL (keyfile password)

2002-04-25 Thread Dave North
Hello, After a few hours trying to get this working, I've finally got my tomcat server working with a certificate signed by Verisign. This all works great. However, to do this, I need to configure the keyfilePass into the server.xml file. This is bad as our security policy is thou

Re: tomcat and SSL (keyfile password)

2002-04-25 Thread bm
Hi Dave ohhh...good to know that. I need to set up the tomcat 4.0.3 with verisign. Can you please send those doc to me ? I appreciate your help thanks in advance BM Dave North wrote: Hello, After a few hours trying to get this working, I've finally got my tomcat server working

RE: tomcat and SSL (keyfile password)

2002-04-25 Thread Tim Cronin
your how-to would be very beneficial. thanks -Original Message- From: Dave North [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 1:25 PM To: [EMAIL PROTECTED] Subject: tomcat and SSL (keyfile password) Hello, After a few hours trying to get this working, I've finally

RE: getRemoteUser(), getAuthType() returning empty string instead of NULL?

2002-04-25 Thread Ignacio J. Ortega
What do you think? From the code if you used tomcatAuthentication=true you will get the expected behavior, that is Tomcat will not see any auth done in IIS ( was it or any valid name ), so your test case should work as expected, what i dont understand, why you see when

RE: tomcat and SSL (keyfile password)

2002-04-25 Thread Dave North
OK, here's what I did (this was using a test versign cert but the procedure is the same for a real production cert): STEP A - generate your private key Pre-req: JDK must be installed 1) cd to $JAVA_HOME/jre/bin 2) run ./keytool -genkey -alias tomcat -keyalg RSA -keystore FULL PATH TO KEYSTORE

Re: tomcat and SSL (keyfile password)

2002-04-25 Thread Richard C . Dunn
Dave, I would be interested, too. Thanks. Rich Dunn Arkona, Inc. On Thursday 25 April 2002 12:25 pm, you wrote: Hello, After a few hours trying to get this working, I've finally got my tomcat server working with a certificate signed by Verisign. This all works great. However, to do

Re: Apache 2.0, mod_webapp, tomcat 4.x integration

2002-04-25 Thread Ken Anderson
Did you try www.liquidshell.net/examples/ (the last slash is important) Ken Simon Stewart wrote: On Thu, Apr 25, 2002 at 01:49:33PM -0400, digital synapse wrote: i've managed to load tomcat and apache 2.035 fine with your supplied mod_webapp.so file Simon. I both tomcat and apache work on

  1   2   >