NT and tomcat

2001-01-25 Thread Affan Alim
Hi All, We are ISP and want to setup how i setup the diretoratry structutre and classpath because i don't want to run the jsp and servlet without the 8080 port because we give the services to client. Please do help me. affan

Re: Linux and Tomcat (URGENT)

2001-01-25 Thread leak
1. I know that linux will show me a lot of processes. I know these processes are native threads and they share the memory. (I have more then 40 processes, each one is consuming 70456. This means that Tomcat isn't using 40 x 70456. But all these processes are sharing the same 40456.)

Tomcat 3.2.1 kHTTPd

2001-01-25 Thread Dominique BATARD
Hi Is it possible to run Tomcat 3.2.1 with kHTTPd included in the Linux 2.4 kernel ? Dom

[jBoss-User] Problems loading property files under tomcat3.2.1

2001-01-25 Thread Kimpton,C (Chris)
Hi, I am trying to use jboss, which loads a jndi.properties file off the class path to get some application configuration data. This is a cut down version of what the code does; public class Servlet1 extends javax.servlet.http.HttpServlet { protected void

Tomcat as Service...

2001-01-25 Thread Robuschi \(Delfi\)
Hello everybody!!! I'm tryin' to install Tomcat 3.2.1 as NT Service on a JDK1.3. The jk_nt_service module isn't right because of the usage of JDK1.3 So I'm tryin with JavaService (http://www.alexandriasc.com/software/JavaService/). I configured the Tomcat Service and it starts but it

Re: Benchmarking

2001-01-25 Thread Andre Couture
There is also a tool I used myself for benchmark and can be found at the following address; http://www.hpl.hp.com/personal/David_Mosberger/ It has been written by HP Research Labs. Cheers Andre On Tue, 23 Jan 2001, Jon Baer wrote: There is a tool @ http://www.mindcraft.com/webstone/, I have

Re: Tomcat as Service...

2001-01-25 Thread leak
So I'm tryin with JavaService (http://www.alexandriasc.com/software/JavaService/). I configured the Tomcat Service and it starts but it doesn't works. If I start Tomcat in the manual mode (and the prompt window appears) it works fine I used the bat examples in JavaService that help

error: 500

2001-01-25 Thread Bob Kersten
Hello, I've installed Tomcat 3.2.1 (stand-alone) and the JDK1.3, and started Tomcat using justGo and it all works well. When I connect to http://localhost:8080/ it displays the default tomcat homepage. Then I tried to use some of the examples, and it appears that only the servlet examples

RE: error: 500

2001-01-25 Thread Randy Layman
As this error indicates, Tomcat can not find javac (java.lang.NoClassDefFoundError: sun/tools/javac/Main). This indicates that you have not set your JAVA_HOME variable or have set it to the wrong path. (It needs to point to the directory that contains lib/tools.jar). Randy

URL to Servlet Hangs

2001-01-25 Thread Wyn Easton
Hello, I was hoping that someone could give me some help with the following problem. I have a servlet that needs to respond to requests from URLs and other servlets. Servlet to servlet link works fine. The problem is that there does not seem to be a way for a URL connection to tell when the

Tomcat 3.2.1 login and password of Admin context

2001-01-25 Thread LEBRETON Philippe
I have dowload TOMCAT 3.2.1 and i can't add a new context whit the Admin because the Admin tell me a login and password. I don't know this login/password. Help me Thanks begin:vcard n:Philippe;LEBRETON x-mozilla-html:FALSE adr;dom;quoted-printable:;;1=3Brue Bouch=E9 Thomas=0D=0ABP 3604;Angers

configuring 1 webapp with multiple form logon pages

2001-01-25 Thread BBueckers
Using 3.2.1 has anyone configured a webapp that has multiple form-based logon pages. Basically I need a different logon page for each corporate unit? It appears to me that that by default, tomcat allows only 1 login page per webapp. Any Ideas?

RE: configuring 1 webapp with multiple form logon pages

2001-01-25 Thread Randy Layman
My question is, how do you know which logon page to use? Is there something special about the machine they are requesting from? Do they try and go to a special (corporate unit specific) URL? Or is it supposed to guess somehow? One thing to remember is that the form-based

RE: configuring 1 webapp with multiple form logon pages

2001-01-25 Thread BBueckers
The logon page is determined by which section of the site the users are trying to access. For example if the user is trying to get to the Marketing section they will be prompted with the Marketing logon page, that represents the Marketing's UI look/feel. However, if the user wanted to go to the

RE: configuring 1 webapp with multiple form logon pages

2001-01-25 Thread Randy Layman
Then you probably want to create one really big login page that does basically a set of if { } else if { }, comparing a portion of request.getServletPath() to the whatever identifies each section. (Would probably work with jsp:include to include the different login pages).

RE: RequestInterceptor authenticate and authorize. Need advise

2001-01-25 Thread Cathy Young
How can a JSP get access to the authenticate method of a request interceptor, such as JDBCRealm ? Is there also a way for a JSP to find out which interceptor is handling authentication. I want users to enter their userID and password values, add these details to the database that JDBCRealm is

AW: Actually RE: Tomcat processes... (to Christoph Rooms)

2001-01-25 Thread Ralph Einfeldt
Which jdk 1.3 do you use, Sun or IBM ? Sun's jdk tends to use much more memory than the IBM jdk. (At least that's our experience) -Ursprngliche Nachricht- Von: Christoph Rooms [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 24. Januar 2001 23:55 An: [EMAIL PROTECTED] Betreff: RE:

Cannot recover key error and SSL

2001-01-25 Thread Craig Smithpeters
I know this has been discussed on the list before, but I have not been able to find a definitive solution by searching through the archives. I'm running Tomcat 3.2 final on 3 different Windows 2000 Advanced Server boxes. After following the instructions in the SSL doc that comes with

RE: Please, Please help with the install of Tomcat!

2001-01-25 Thread Jayesh
adding it to autoexec.bat and renaming is not necessary. add it to STARTUP.BAT in your c:\jakarta-tomcat-3.2.1\bin directory. -Original Message- From: G.Nagarajan [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 25, 2001 1:16 AM To: [EMAIL PROTECTED] Subject: RE: Please, Please help

JNI Servlet with Tomcat Problem

2001-01-25 Thread Ryan Adrian
Hi, I am using a servlet call to a C dll with JNI. I am using Windows NT4, TOMCAT 3.2, jdk1.3, c dll. Below is my code # import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class jniServlet2 extends HttpServlet {

RE: JNI Servlet with Tomcat Problem

2001-01-25 Thread Nicholas Christopher
Make doubley certain that the dll implements the function prototypes that javah creates from your native class. I've had it were the library loaded just fine but there was a name missmatch between the native methods and the JNI functions and I recieved similar sort of runtime errors AFTER

Installing Tomcat into IIS Automatically

2001-01-25 Thread Randy Layman
I was wondering if anyone out there has come up with a way to install Tomcat into IIS programatically (using some program or editing the registry directly)? Or is this something that is not possible? The reason is that I am starting to think about installing our application on

Re: mod_jk compile warning

2001-01-25 Thread Carlos
Title: mod_jk compile warning i have the same problem. If you find the solution please help me thanks Carlos - Original Message - From: Hammon, Sean To: [EMAIL PROTECTED] Sent: Thursday, January 25, 2001 5:52 PM Subject: mod_jk compile warning I just tried to

Linux / apache / tomcat which mod_jk.conf and the contextAdmin page

2001-01-25 Thread Joe
Hello, The documentation is a little confusing as where to start first. There are 3 RPMs for Linux. One was documentation, one was the module itself, and one was the main tomcat stuff. I installed all 3. 1) In the module do I need both mod_jk.so and mod_jserv_tomcat.so ? 2) Also

taglib / context

2001-01-25 Thread C. Jason Benedict
does anyone know how to share a taglib from one context to another? therefor you would set up a base context and all other contexts would use it's taglibs. -- C. Jason Benedict

Re: Tomcat 3.2.1 login and password of Admin context

2001-01-25 Thread Stefano Martinella
Hi Philippe, For username and password try to look in the conf/tomcat-users.xml file bye Stefano - Original Message - From: "LEBRETON Philippe" [EMAIL PROTECTED] To: "Tomcat" [EMAIL PROTECTED] Sent: Thursday, January 25, 2001 4:18 PM Subject: Tomcat 3.2.1 login and password of Admin

getParameter in Tomcat on IIS

2001-01-25 Thread Rodriguez Victor A.
Hi All, this is my first post to the list, and I'm not currently subscribed tomcat-user. I'm setting up Tomcat 3.2 + IIS and we get the problem stated in http://znutar.cortexity.com/BugRatViewer/ShowReport/55 and http://w4.metronet.com/~wjm/tomcat/ToFeb11/msg02723.html (getParameter is null

Problem with Tomcat and Apache Server Side Includes

2001-01-25 Thread Nick Holloway
I want to be able to use server side includes within Apache to populate part of an otherwise static HTML page with some dynamically generated components. The main reason for this approach is that the JSP and HTML will be developed and published independently. I have the web app as the root

RE: Tomcat 3.2.1 login and password of Admin context

2001-01-25 Thread CPC Livelink Admin
Title: RE: Tomcat 3.2.1 login and password of Admin context Add the role 'admin' to one of the accounts you listed. Then that account will work. (There is a blurb about this in the context.xml) -Original Message-From: Andy Scasso [mailto:[EMAIL PROTECTED]]Sent: Thursday, January

How to include from a non-local URL?

2001-01-25 Thread Neil Aggarwal
Hello: I hve a machine runnng an application that generates a piece of content that I want to include in a JSP page. According to the jsp include tag docs, I can only include a local document using it. Is there a way to include the result of a general URL? Thanks, Neil. -- Neil

Re: Cannot recover key error and SSL

2001-01-25 Thread Craig Smithpeters
Sorry for this reply to my own message, but I found a work around (solution ?). Make sure the password for the key you generate is the same as the password for the keystore. - Original Message - From: Craig Smithpeters To: [EMAIL PROTECTED] Sent: Thursday, January

RE: Which JVM for Tomcat?

2001-01-25 Thread Michael Wentzel
I believe there were some sort of "issues" between Sun and Blackdown. To my best recollection one of the major "issues" was that Blackdown had gotten so far behind schedule at one point. I don't know about the relationship between IBM and Tomcat. If IBM follows the specs for VM elopement

Re: Configuring web.xml for HttpServlet - Solution!

2001-01-25 Thread Stephen Bacon
Aha! never underestimate the power of just guessing. The solution was to hit the servlet by specifying "servlet" in the path, i.e.: http://servername/context/servlet/servlet-name If the servlet is installed under the ROOT webapp as Wyn Easton suggested, then you can skip specifying the context

RE: mod_jk load balancing

2001-01-25 Thread Nair, Nipun
Title: mod_jk load balancing Hi Margaret, Take a look at the link :- http://java.apache.org/jserv/howto.load-balancing.html This is a bit old, and it talks about load balancing with Jserv ( not tomcat ) - using mod_jserv I assume that the syntax for the load balacing portion is mostly

RE: Problems with context-relative path include directive

2001-01-25 Thread CPC Livelink Admin
The way it nehaves is that "/" is the root of your webapp. So, when doing things with the servlet container alone, you would reference the file as "/JSPHeader.jsp". If, however, you are sending something to the browser for it to get, then do "%= request.getContextPath() %/JSPHeader.gif"

RE: Please, Please help with the install of Tomcat!

2001-01-25 Thread Roland Dong
First, thanks very much! I follow the instruction and change the jdk1.3 to jdk and reset my autoexec.bat file so it looks like this: SET BLASTER=A220 I7 D1 T2 SET SNDSCAPE=C:\WINDOWS set JAVA_HOME=c:\jdk set TOMCAT_HOME=C:\tomcat\ set PATH=c:\jdk\bin PATH

Re: Please, Please help with the install of Tomcat!

2001-01-25 Thread Jim Rudnicki
do the following, rename jdk1.3 to jdk Okay, I have to say DO NOT do this. The JDK installer adds registry entries for the install locations. Jim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email:

RE: Pleae, Please help with the install of Tomcat!

2001-01-25 Thread Roland Dong
Jim, Thank you so much. It works very well! It took me a few second to down load the program and a few second to have the tomcat up running! It makes me wondering why the people who created Tomcat haven't done something like what you did to make our lives eazier... Thanks again! Roland

NEW PROBLEM with Running a thread from a JSP

2001-01-25 Thread travis
I have an iframe that is used to show status on various things and one of those things is mail progress. Right now the status page goes through it's chores and shows the status as it's being run. So when it's checking mail, it checks the mail and shows a progress bar and "Retrieving x of y