Re: NT Service Bug Still in JDK 1.3.1

2001-03-29 Thread Paul Kofon
Hi Mark, I have checked out what you talked about and I found it to be incorrect. I run Tomcat as a service the prescribed way on Win2k. My JVM is Sun's JDK1.3.1 Beta and I can logout without losing the service. Paul From: Steve Ruby [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL

Re: chart in jsp

2001-03-29 Thread stefan werner
hi jeff ,hi all, the servlet you use is a servlet 2.3 stuff, i think. is there any url to take a look at this code? i am involved in creating svg's and not very familar with writing servlets. but i'd like to show my interactive work. i tried this ( i found in german java-magazin 04/2001): import

RE: Multiple files upload

2001-03-29 Thread Edwards, Peter
Lakshmi If you are using an HTML form to upload the file then you have some restrictions. The file input element lets you upload one file only and you cannot script this element (i.e. you cannot dynamically set the value of the field for security reasons.) This led us to writing an applet but

resource factories?

2001-03-29 Thread Torgeir Veimo
I'm struggling a bit with setting up a resource factory for DirContext's. I have a ContextPool class that has an empty constructor and setter methods for the params I want to set. I preferrably want to use this resource factory on a per-web-application level. Can I do that? The reason is that

Re: resource factories?

2001-03-29 Thread Torgeir Veimo
I'm using tomcat4.0beta1 btw. -- - Torgeir

SSL and URI-Rewriting

2001-03-29 Thread Wolle
Hello , I have wrote some Java Servlets, that works with Session Tracking. I use the response.encodeURL Methode for it. when the client has disabled cookies, the jsessionID is suffixed. Thats fine ;-) this will work with Tomcat , and Tomcat over Apache. Now, when I User mod_ssl for the

Re: Bugs or what ???

2001-03-29 Thread Daniel K
What do you expect System.exit(0) to do? First I thought I could exit directly from that line. (Like syntax "exit" in PHP) So what shoud I do to exit from jsp ? It tells the current VM to end. So it ends and the tomcat inside the VM dies to. So It's normal right ? -Ursprngliche

Re: Bugs or what ???

2001-03-29 Thread Wolle
Hei, try a simple return; greetings wolle Daniel K wrote: What do you expect System.exit(0) to do? First I thought I could exit directly from that line. (Like syntax "exit" in PHP) So what shoud I do to exit from jsp ? It tells the current VM to end. So it ends and the tomcat inside

RE: Multiple files upload

2001-03-29 Thread Alistair Hopkins
I use the input type INPUT TYPE="file" NAME="file"/ along with a hacked about version of the O'Reilly class to let me set FileFilters to control the file types people want to upload and it works fine for multiple files -Original Message- From:

Cookie setMaxAge

2001-03-29 Thread Garry De Toffoli
I have a problem setting the MaxAge to a cookie; that's an extract of my code: newCookieValue = "" + System.currentTimeMillis();newCookie = new Cookie("couldbeprov",newCookieValue);newCookie.setMaxAge(31536000); // 1 year response.addCookie(newCookie); the problem is that the cookie is

RE: BY ANY BEANS NECESSARY!

2001-03-29 Thread Kevin Sangeelee
There are detail of this in the archives. From a previous post by Craig McClanahan... JSP 1.1 spec. (p. 63-64), the value of the "class" attribute must be a fully qualified class name of the implementation class. The import does not affect this... -Original Message- From: Tom Horn

Help to unscribe my membership

2001-03-29 Thread Benny Antony
I want to unsubscribe from the group for the time being, what I am to do? Thank you, Benny _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

AW: Multiple files upload

2001-03-29 Thread Ralph Einfeldt
There are two sides of your problem: the server and the client. If you use FTPClient in the servlet you need a FTP server on the client (Which is not a very common situation). If your client doesn't have a FTP server the only option to use FTP is the other way round: Build an applet that is

HttpServletRequest and RequestDispatcher

2001-03-29 Thread Wyn Easton
Hello, Could someone help me understand the following situation? I have two servlets (s1 and s2) and one jsp (j1). If I do this in s1: request.setAttribute("str1", "Hello"); then forward to s2: ...forward(request,response); In s2 I do this: request.setAttribute("str1", "So Long"); then forward

Re: not handling all requests

2001-03-29 Thread Wyn Easton
--- "Kresimir (Binsco)" [EMAIL PROTECTED] wrote: Hi, Question: I installed and configured tomcat successfully - but when accessing the jsp(s) I wrote with Internet Explorer, one out of five (on average) requests results in browser message: This page cannot be displayed... etc...etc...

Re: RV: TOMCAT JSP EXECUTION

2001-03-29 Thread Peter Davison
You need to include "tools.jar" in your classpath. The java compiler "sun.tools.javac.Main" is included in that jar file which is part of the JDK, not the JRE. Hope that helps. Pete Davison On Thu, 29 Mar 2001 14:00:27 +0200 Sierras [EMAIL PROTECTED] wrote: -Mensaje original-

Re: Servlets work, but JSP doesn't...

2001-03-29 Thread John Clark L. Naldoza
Jason, You have to have JAVA_HOME environment variable defined so that jasper is able to find the compiler in order to compile the jsp. ~larry i.e. inside your tomcat.sh file have the following entries... TOMCAT_HOME=/tmp/jakarta-tomcat # or wherever..;-) JAVA_HOME=/opt/jdk1.2.2 #

EJB Access Bean in Tomcat-jsp

2001-03-29 Thread Dennis Meerveld
Hi, I have created an CMP-EJB in VA for Java 3.5. For this EJB I created an access bean for usage in a JSP-page. This JSP-page is running in Tomcat. I already added the jars (so for my accessbean and ejb-related stuff) to the \lib-dir. All classes are found, no problems there. But I do get

Re: EJB Access Bean in Tomcat-jsp

2001-03-29 Thread Valeriy Molyakov
As far as I know - Tomcat is not container for EJB ! - Original Message - From: "Dennis Meerveld" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 29, 2001 4:54 PM Subject: EJB Access Bean in Tomcat-jsp Hi, I have created an CMP-EJB in VA for Java 3.5. For this EJB I

RE: Tomcat Security Architecture and RSA ACE authentication

2001-03-29 Thread Rodriguez Victor Alberto (DSI)
Hi, My client is going to adopt RSA ACE security infrastructure which to my understanding will require users to append a hardware generated number to their passwords when they authenticate. So we will have system where password changes every 15 seconds and it can not be cached in tomcat and

Disable session.useCookie

2001-03-29 Thread Andreas
Hello everybody. I am using Tomcat 3.1.1 along with JDK 1.2.2 on a redhat 6.2 system. I would like to disable the use of Cookies on one of my Servlets, but cannot find out how. The servlet context is automatically added and the servlet is in the webapps dir along with a web.xml file. I saw

Tomcat 3.2.1 not finding classes properly ?

2001-03-29 Thread Andreas
I recently tried the following combination, which works just perfectly with Tomcat 3.1.1: Tomcat 3.2.1, JDK 1.2.2, js.jar (from Rhino 15R1 mozilla.org, to utilize javascript). The servlet I am working on (debugging and fixing some stuff) relies on the js.jar here. The problem was, that

Re: HttpServletRequest and RequestDispatcher

2001-03-29 Thread Bo Xu
Wyn Easton wrote: Hello, Could someone help me understand the following situation? I have two servlets (s1 and s2) and one jsp (j1). If I do this in s1: request.setAttribute("str1", "Hello"); then forward to s2: ...forward(request,response); In s2 I do this:

CLASSPATH

2001-03-29 Thread Batsheva Raviv
I am facing problems setting the classpath in win2k and sun4. for some reason suddenly when I write import javax.util.naming.*; I get error: package javax.util.naming does not exist. Isn't it part of the tools.jar package in 1.3? my setting are win2k I entered it in "control panel"

I don't get it...

2001-03-29 Thread John Towell
I bring in a Bean class that imports an oracle class that's not on my tomcat server, so I get a: 'Class oracle.sqlj.runtime.Oracle not found in import.' error OK - so I bring in the appropriate jar file and put it in $TOMCAT_HOME/lib and restart tomcat. I look at messages and tomcat has

RE: CLASSPATH

2001-03-29 Thread Grewal, Gary
Title: RE: CLASSPATH I think you are trying to access javax.naming.* and not javax.util.naming.* Try that and then see === Gary Grewal -Original Message- From: Batsheva Raviv [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 29, 2001 10:40 AM To: Tomcat Usr (E-mail) Subject:

I get a new session on each page

2001-03-29 Thread kevin b
I'm using Tomcat 3.2 and IIS 5.0 and I'm having problems with sessions. Each page get a new session ID so my carts are empty on each page or refresh. If I run tomcat 3.2 in stand alone mode it works fine. Here is an example piece of code that I did. % Long text = (Long)

Sessions under IIS 5.0

2001-03-29 Thread kevin b
I'm using Tomcat 3.2 and IIS 5.0 and I'm having problems with sessions. Each page get a new session ID so my carts are empty on each page or refresh. If I run tomcat 3.2 in stand alone mode it works fine. Here is an example piece of code that I did. % Long text = (Long)

Re: I get a new session on each page

2001-03-29 Thread kevin b
--- kevin b [EMAIL PROTECTED] wrote: I'm using Tomcat 3.2 and IIS 5.0 and I'm having problems with sessions. Each page get a new session ID so my carts are empty on each page or refresh. If I run tomcat 3.2 in stand alone mode it works fine. Here is an example piece of code that I did.

Servlets and mod_jk problem

2001-03-29 Thread Kyle Tippetts
I'm having trouble getting servlet mapping to work properly using mod_jk on Tomcat 3.2.1 on Linux. First of all I should mention that jsps work fine. Servlets work as well *if* they're located in the /webapps/whatever/Web-inf/classes directory, or if the url contains the fully-qualified name of

RE: CLASSPATH

2001-03-29 Thread Batsheva Raviv
Title: RE: CLASSPATH Thank you, very much. but could you help me set the classpath in unix I am running .tcshrc I used to have .cshrc and it worked fine but now I can even compile a simple Hello.java Batsheva -Original Message-From: Grewal, Gary [mailto:[EMAIL

ServerAlias CPU Bound loop

2001-03-29 Thread Daniel Zen
Hello Tomcat Users, I have seen some people complaining of CPU usage rising to 100%, and I found the following in the readme: 6.11 Misconfiguration Can Cause CPU-Bound Loop If you misconfigure Tomcat 3.2 in a way that there is no valid context to handle a request (such as removing the root

RE: CLASSPATH

2001-03-29 Thread William Kaufman
Title: RE: CLASSPATH Unix variable namesare case-sensitive: try setting "CLASSPATH", not "classpath". -- Bill K. -Original Message-From: Batsheva Raviv [mailto:[EMAIL PROTECTED]]Sent: Thursday, March 29, 2001 9:11 AMTo: [EMAIL PROTECTED]Subject: RE: CLASSPATH Thank

HOWTO

2001-03-29 Thread Simon Chatfield
It's impossible to help someone with a problem when all they say is, "Hey, this doesn't work, what can I do to fix it?" When you post your problem, you need to be as descriptive as possible. answer these questions before you submit your problem. Has this question been asked/answered before?

Session Servlet

2001-03-29 Thread Vinicio Llumiquinga
Hi everybody I need a example of servlets with the object session If somebody may tell me where there are examples or tutorial thanks If somebady may tell me exactly how to work, where I can use it,for what purpose is this? very thanks -- Vinicio

RE: CLASSPATH

2001-03-29 Thread Batsheva Raviv
Title: RE: CLASSPATH sorry for the misunderstanding, but inside .tcshrc I wrote set CLASSPATH = ( /usr/java/lib/tools.jar ~/jars/ ) and when I run simple Hello I get the message Exception in thread "main" java.lang.NoClassDefFoundError: Hello Batsheva -Original Message-From:

Servlets do not run under Apache-tomcat

2001-03-29 Thread Animesh Chaturvedi - US
Hi I am running Apache 3.1.17 and Tomcat3.2.1 on a unix box and using mod_jserv as connector. and using SSL. The jsp are working perfectly, but servlets do not run at all. You get HTTP 404 document not found error. I have tried every possible way, but none works. for e.g if I reference a

RE: Session Servlet

2001-03-29 Thread William Kaufman
There's the cleverly-named SessionExample.java in the Tomcat examples directory. There's also a servlet tutorial at http://java.sun.com/j2ee/tutorial/doc/Servlets.html . -- Bill K. -Original Message- From: Vinicio

RE: CLASSPATH

2001-03-29 Thread William Kaufman
Title: RE: CLASSPATH I think tcsh uses "setenv" to set environment variables, not "set" (which only sets the variable in the current shell). -- Bill K. -Original Message-From: Batsheva Raviv [mailto:[EMAIL PROTECTED]]Sent: Thursday, March 29, 2001 9:34 AMTo: [EMAIL

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Filip Hanik
I would recommend switching to mod_jk but from your problem, it does't look like you have set up the context mapping of the /servlet context to go through mod_jserv. Filip ~ Namaste - I bow to the divine in you ~ Filip Hanik Software Architect [EMAIL PROTECTED] www.filip.net -Original

Re: HOWTO

2001-03-29 Thread Helen Zeng
Good advise, Simon! Thank you! Helen Simon Chatfield wrote: It's impossible to help someone with a problem when all they say is, "Hey, this doesn't work, what can I do to fix it?" When you post your problem, you need to be as descriptive as possible. answer these questions before you

RE: Intended use for Tomcat web server

2001-03-29 Thread Bill Graham
Tal, I have been testing a similar set up as yours: Redhat 6.2 Tomcat 3.2.1 w/ bug#1006 fix IBM 1.3.0 bld cx130-20010207 Linux 2.2.16SMP I'm testing the throughput of this test server by hammering it with http requests. The throughput is great, but I'm getting a ton of NullPointerExceptions on

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Animesh Chaturvedi - US
Thanks Filip!! I have the followinfg entry in my tomcat.conf file. Alias /examples /myroot/jakarta-tomcat/webapps/examples Directory "/myroot/jakarta-tomcat/webapps/examples Options Indexes FollowSymLinks /Directory ApJServMount /examples/servlet /examples Location /examples/WEB-INF/

using org.apache.tomcat.request.SecurityCheck

2001-03-29 Thread Batsheva Raviv
I try to compile the class ldapAuthCheck from the book "Professional Jsp" page 488 the compiler display this error: cannot resolve symbol symbol : class SecurityCheck location: package request public class ldapAuthCheck extends org.apache.tomcat.request.SecurityCheck{ Does anyone know where I

Tomcat NT Service problem

2001-03-29 Thread Hellinga, Roy G
I'm running Tomcat 3.2.1, on an NT4.0 workstation, installed as an NT service (just one instance of Tomcat). I followed the instructions provided in doc/NT-Service-howto.html that came with release 3.2.1. However, whenever I log off, the tomcat service quits. This really defeats the purpose of

Re: Servlets do not run under Apache-tomcat

2001-03-29 Thread Todd Pfaff
On Thu, 29 Mar 2001, Animesh Chaturvedi - US wrote: I am running Apache 3.1.17 and Tomcat3.2.1 on a unix box and using mod_jserv as connector. and using SSL. i assume you mean apache 1.3.17. i posted a similar question yesterday to this list. my environment is: linux mandrake 7.2 apache

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Animesh Chaturvedi - US
Oops typographical mistake Its apache 1.3.17 Animesh -Original Message- From: Todd Pfaff [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 29, 2001 12:38 PM To: [EMAIL PROTECTED] Cc: Animesh Chaturvedi - US Subject: Re: Servlets do not run under Apache-tomcat On Thu, 29 Mar 2001,

Tomcat version war?

2001-03-29 Thread Christian Parpart
Hi, I do not really know, why there're so many different versions of Tomcat out. * Tomcat 3.2.2 beta 2 * Tomcat 3.3 Milestone 2 -- Tomcat 3.x-dev * Tomcat 4.0 beta 1 -- Tomcat 4.0-dev The Tomcat 4.0-b1 is a branch on its development version. the same (perhaps) for the 3.3 MS-2, too.

Servlets and mod_jk problem II

2001-03-29 Thread Wolle
Hello everyone, How could I proof, which Protokoll is been used on a connection `? Greetings Wolle "John P. Dodge" wrote: Shouldn't this line be: JkMount /apo/servlet/* ajp13 On Thu, 29 Mar 2001, Kyle Tippetts wrote: * I'm using mod_jk, so I include a customized mod_jk.conf

RE: Servlets and mod_jk problem

2001-03-29 Thread Kyle Tippetts
My apologies...it actually is JkMount /apo/servlet/* ajp13 --Kyle -Original Message- From: John P. Dodge [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 29, 2001 11:54 AM To: '[EMAIL PROTECTED]' Subject: Re: Servlets and mod_jk problem Shouldn't this line be:

I downloaded the Tomcat3.2.1 BUT

2001-03-29 Thread Trakhtenberg, Victor
Hello ! My name is Victor Trakhtenberg. I want to use the tomcat to run my servlets with the IIS. I work with Windows NT and IIS 4.0. I downloaded the Tomcat3.2.1 , BUT when I ran it I've got the message : You must set JAVA_HOME to point at your Java Development Kit installationbut I've made

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Filip Hanik
Alias /examples /myroot/jakarta-tomcat/webapps/examples Directory "/myroot/jakarta-tomcat/webapps/examples Options Indexes FollowSymLinks /Directory ApJServMount /examples/servlet /examples Location /examples/WEB-INF/ AllowOverride None deny from all /Location this looks like

Running Tomcat without tools.jar (javac) after precompiling my jsp's.

2001-03-29 Thread Eric Wong
I do not want to ship tools.jar with our product, so I precompiled jsp's using jspc. I am able to precompile my jsp's using the following: set TOMCAT_HOME=where I installed Tomcat. set JSP_HOME=where I keep my JSP's. set JSP_TEMP=where I put the java files generated by

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Todd Pfaff
yes, i agree, that's what it looks like, but this is *exactly* how tomcat creates the tomcat-apache.conf and mod_jk.conf-auto when it starts up. are those auto-created conf files know to be incorrect? On Thu, 29 Mar 2001, Filip Hanik wrote: Alias /examples

tomcat classpath - I don't get it...

2001-03-29 Thread John Towell
[Please forgive if this is reposted, my first post was over three hours ago.] I bring in a Bean class that imports an oracle class that's not on my tomcat server, so I get a: 'Class oracle.sqlj.runtime.Oracle not found in import.' error OK - so I bring in the appropriate jar file and put it in

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Animesh Chaturvedi - US
Yeah Filip I agree but why is it not serving my servlet. The HelloWorldExample Servlet's .class file is placed in /myroot/jakarta-tomcat/webapps/examples/WEB-INF/classes folder So if I point my browser to https://server-name/examples/servlet/HelloWorldExample it should run the

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Filip Hanik
yeah, but you can't mix mod_jk configurations with the mod_jserv module. the auto conf files are created for mod_jk, ApJServMount /examples/servlet /examples this command is for mod_jserv Filip ~ Namaste - I bow to the divine in you ~ Filip Hanik Software Architect [EMAIL PROTECTED]

Re: I downloaded the Tomcat3.2.1 BUT

2001-03-29 Thread bill french
victor, first, try setting your JAVA_HOME env variable in control panels system environment. at the bottom of the dialog, you'll see "variable" and "value" fields. make sure JAVA_HOME is set to the root of your jdk, which, from your description, is c:\jdk1.2.2. now, set another env variable,

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Animesh Chaturvedi - US
I am using tomcat1.3.17 that only supports mod_jserv not mod_jk. So the tomcat-apche.conf file thats generated automatically by tomcat 1.3.17 should have created Directives that are correct for mod_jserv. Do you mean to say that the Directives I have used in my Tomcat.conf file are not correct?

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Georges Boutros
hi, i don't know if anyone could help but i have the inverse problem of Animesh. my servlet works well like https://server-name/examples/servlet/HelloWorldExample but when i try to call it from a jsp page it doesn't work to submit a form or forward and it works when i include the servlet in

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Todd Pfaff
i know you can't mix mod_jk and mod_jserv configurations. but tomcat creates auto-config files for both mod_jk and mod_jserv each time it's started: mod_jk.conf-autofor mod_jk tomcat-apache.conf for mod_jserv_tomcat i know how to switch between mod_jserv and mod_jk. at least i

example using LDAP and JNDI

2001-03-29 Thread Batsheva Raviv
Hello, Can anyone help me find an example that implement LDAP and JNDI that works. I found out that the one in "Professional JSP" is not updated to Tomcat 3.2 BTW how do I know which version of tomcat am I using? Batsheva

help with jar classpath for JSP

2001-03-29 Thread Kirill Averianov
I have few jar files that I have to reference in my JSP file. Where do I specify them in a classpath ? Where do I have to put my jar files ? If somebody has an example of Manifest file with multiple jars in it's classpath please send me it.

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Filip Hanik
Also if in a jsp in the examples context i put jsp:forward page="/servlet/HelloWorldExample" / and refernce the jsp it works. this works because Apache nor mod_jserv is involved, this is an internal Tomcat operation So if I point my browser to

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Todd Pfaff
On Thu, 29 Mar 2001, Animesh Chaturvedi - US wrote: I am using tomcat1.3.17 that only supports mod_jserv not mod_jk. So the tomcat-apche.conf file thats generated automatically by tomcat 1.3.17 should have created Directives that are correct for mod_jserv. Do you mean to say that the

Tomcat Apache

2001-03-29 Thread Julie Ruiz
Tomcat and Apache can worh in the same port 80? How can I do it??? Julie.

RE: Tomcat Apache

2001-03-29 Thread Filip Hanik
mod_jk take a look at the mod_jk documentation on the website Apache listening on port 80 and proxying request to another port for tomcat. Filip ~ Namaste - I bow to the divine in you ~ Filip Hanik Software Architect [EMAIL PROTECTED] www.filip.net -Original Message- From: Julie

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Animesh Chaturvedi - US
Hey I am really sorry for making typo mistakes. I mean that tomcat 3.1.1 only supports mod_jserv. I am not using mod_jk. I am not using tomcat 3.2.1 rather tomcat 3.1.1, apache 1.3.17 and mod_jserv. Animesh -Original Message- From: Todd Pfaff [mailto:[EMAIL PROTECTED]] Sent:

sharing sessions between contexts

2001-03-29 Thread Andy Mauro
Hey all. Background: We are packaging our apps as a collection of functional modules. For example a shopping cart app would be packaged as multiple Servlet2.2 WAR (web application archive) files that would then be deployed in a servlet container. Each webapp (e.g. cart, store, checkout) would be

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Animesh Chaturvedi - US
Hi Filip I tried removing the alias directive. It did not work because then it starts looking into DocumentRoot which has been set to apache-home/htdocs and it does not find the file there since its not there. I have tried every combination in tomcat.conf file. It seems that /servlet requests

Re: Tomcat version war?

2001-03-29 Thread Milt Epstein
On Thu, 29 Mar 2001, Christian Parpart wrote: Hi, I do not really know, why there're so many different versions of Tomcat out. * Tomcat 3.2.2 beta 2 * Tomcat 3.3 Milestone 2 -- Tomcat 3.x-dev * Tomcat 4.0 beta 1 -- Tomcat 4.0-dev The Tomcat 4.0-b1 is a branch on its

Seamless apache and tomcat

2001-03-29 Thread Ryan
Right now I have a contextManager placed in the web.xml file so that when ever someone enters a URL containing the /jsp/, for examplehttp://domain.com/jsp/bleh.jsp apache will pass the task to tomcat and a jsp page will load and run as planned. However, now I want to make it so that

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Todd Pfaff
On Thu, 29 Mar 2001, Animesh Chaturvedi - US wrote: I have tried every combination in tomcat.conf file. It seems that /servlet requests do not reach tomcat atall. It looks for the servlet just like a normal file in the file hiearchy and does not invoke it. me too. exact same problem, but

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Filip Hanik
I would really switch to mod_jk that will solve your problems once and for all. this is a file I used in the past for mod_jserv. if I have time over I will see if I can get it up and running again Filip IfModule mod_jserv.c # Do not edit! ApJServManual on ApJServDefaultProtocol ajpv12

RE: Seamless apache and tomcat

2001-03-29 Thread Filip Hanik
read about mod_jk in the tomcat user guide. the integration is already done and it is automatic :) Filip ~Namaste - I bow to the divine in you~Filip HanikSoftware Architect[EMAIL PROTECTED]www.filip.net -Original Message-From: Ryan [mailto:[EMAIL PROTECTED]]Sent: Thursday,

RE: Servlets do not run under Apache-tomcat

2001-03-29 Thread Filip Hanik
of course for my configuration, I had to add the aliases to web.xml so that when the request for /examples/servlets/HelloWorld comes in, it gets forwarded to /examples and web.xml translates /examples/HelloWorld into the actual classname Filip ~ Namaste - I bow to the divine in you ~ Filip

Re: mod_jk on Solaris 8

2001-03-29 Thread Ryan J. McDonough
I am no 100% that this is a base installation and it does not have the development tools installed. I have gotten the to install the GNU tools but I'm running into another snag. I decided to take your advice and get the 3.3M2 sources and use that build script. The APXS script is set to use cc

FW: Missing attribute value in JSP

2001-03-29 Thread William Blackmon
Title: FW: Missing attribute value in JSP -Original Message- From: William Blackmon Sent: Thursday, March 29, 2001 5:22 PM To: '[EMAIL PROTECTED]' Subject: Missing attribute value in JSP I receive the following error: 'org.apache.jasper.compiler.ParseException:

problem of access web.xml

2001-03-29 Thread eileen li
Folks: Thanks for pay attention for my questions: 1. I don't think that tomcat read my web.xml file? 2. I created a directory call $TOMCAT_HOME/classess and drop some of jar files which my servlet will reference. But the tomcat does not pick it up and put into CLASSPATH. I am tring to install

setting TOMCAT_OPTS Variable

2001-03-29 Thread Mario Vera
Hi all... I have a Sun Solaris Server with TomCat 3.0. and JDK 1.2.2 I tried to set the TOMCAT_OPTS variable in tomcat.sh file, but I have a error whit -Xms and -Xmx parameters. below shows you the description of the line in tomcat.sh file $TOMCAT_OPTS -Dtomcat.home=${TOMCAT_HOME}

Re: mod_jk on Solaris 8

2001-03-29 Thread John P. Dodge
Here is the apxs configuration section using gcc: ## ## Configuration ## my $CFG_TARGET= q(httpd);# substituted via Makefile.tmpl my $CFG_CC= q(gcc);# substituted via Makefile.tmpl my $CFG_CFLAGS= q( -DSOLARIS2=260 -DMOD_PERL

Re: Compiling mod_webapp.c

2001-03-29 Thread David Crooke
RH7 shipped with a broken Glibc, have you patched it?

RE: setting TOMCAT_OPTS Variable

2001-03-29 Thread Bill Graham
gotta export and have quotes: export TOMCAT_OPTS="-Xms64M -Xmx128M" bill -Original Message- From: Mario Vera [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 29, 2001 4:22 PM To: [EMAIL PROTECTED] Subject: setting TOMCAT_OPTS Variable Hi all... I have a Sun Solaris Server with

mod_webapp

2001-03-29 Thread Hunter Hillegas
Just wondering where I can get more info on mod_webapp and Tomcat 4 / Catalina in general. I looked through CVS and also on the developer list but I can't find any docs, even preliminary ones. Thanks, Hunter

Re: problem of access web.xml

2001-03-29 Thread Jeff Kilbride
Hi Eileen, Jar files need to go in your WEB-INF/lib directory in order to get automatically recognized. The WEB-INF/classes directory is for non-jarred class files (i.e. com/domain.com/class/myclass.class) So, move your file to: $TOMCAT_HOME/webapps/lta/WEB-INF/lib/ltaServlet.jar and it

Integrating Tomcat 3.2.1 mod_jk with Apache 1.3.19 on HP-...

2001-03-29 Thread Jaffer Mahsoob
Subject: Integrating Tomcat 3.2.1 mod_jk with Apache 1.3.19 on HP-UX 11.00 Alright, I've tried everything that I can think of to build mod_jk on HP-UX 11.00. Before I loose my mind, is there anyone out there that could provide some advice as to how I can get this to work? Thanks,

RE: IP changes to domain name in URL

2001-03-29 Thread Christopher Shade
FYI, changing this to UseCanonicalName Off corrected the problem. Thank you so much, Hunter! ...Christopher in Denver -Original Message- From: Hunter Hillegas [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 27, 2001 12:16 PM To: Tomcat User List Subject: Re: IP changes to domain name in

binary file upload

2001-03-29 Thread Pasumarthi Naveen
I would like to implement binary file upload through JSP in a Tomcat 3.2(standalone/NO APACHE) environment. Going through the mail archive I found few references http://www.servlets.com/resources/com.oreilly.servlet/ jspsmart.com oop-reserch.com One other mail referred to a bug in apj13 and

tomcat classpath -- \tomcat\lib

2001-03-29 Thread brian luk
Hi all, tomcat documentation told me to put all my JAR files in c:\tomcat\lib\. but when i put my JAR files there, the classpath semes didn't find the JARs in c:\tomcat\lib dir. It works on unix but not WIN32. and i was forced to put my JAR files inside JDK/JRE's lib\ext directory. Anyone

RE: tomcat classpath -- \tomcat\lib

2001-03-29 Thread Dalia, Keith A - TOS-DITT1
Are you running tomcat as a service/daemon with Apache or IIS or from the startup.bat You might want to look at the wrapper.properties file. -Original Message- From: brian luk [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 29, 2001 3:35 PM To: [EMAIL PROTECTED] Subject: tomcat

Re: FW: Missing attribute value in JSP

2001-03-29 Thread Simon Chatfield
The comma in your imports

REPOST HELP: Trying to config/install Tomcat as a Service using the Jakarta NT Service

2001-03-29 Thread Jeff Leung
Reposting the original request. -Original Message- From: Jeff Leung [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001 5:40 PM To: Tomcat (E-mail) Cc: Jeff Leung Subject: FW: HELP: Trying to config/install Tomcat as a Service using Jak arta NT Service I am attempting to

JDBCRealms

2001-03-29 Thread Darin Wilcox
Can anyone give me a descriptive explanation of what JDBCRealms? I think it is what I want to use, but I haven't yet figured out if it is correct. Thanks. - Darin Wilcox Web Engineer College of Nursing University of Utah 585-7332

RE: tomcat classpath -- \tomcat\lib

2001-03-29 Thread brian luk
I run tomcat standalone ( not NT service ). is it matter to the classpath? and what's wrapper.properties use for? thanks --- "Dalia, Keith A - TOS-DITT1" [EMAIL PROTECTED] wrote: Are you running tomcat as a service/daemon with Apache or IIS or from the startup.bat You might want to look

Apache/mod_jk core

2001-03-29 Thread Alan Batie
I've built tomcat 3.2.1 on FreeBSD 4.1 and got it running, as well as apache 1.3.19. But. To get mod_jk to load, I had to add -Wl,-lc_r to the APXS command to get the pthread library. Now apache cores in a way very consistent with what I thought would happen when mixing -lc and -lc_r: (gdb)

RE: JDBCRealms

2001-03-29 Thread William Kaufman
http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/JDBCRealm.howto Is there something you want to know that isn't in there? -- Bill K. -Original Message- From: Darin Wilcox [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: tomcat classpath -- \tomcat\lib

2001-03-29 Thread Dalia, Keith A - TOS-DITT1
I run tomcat with IIS5 on W2K Advanced Server. The isapi_redirector.dll picks the .jars for the classpath from the wrapper.properties file. When standalone it gets it from the tomcat.bat see: :dynClasspath set _LIBJARS= for %%i in (%TOMCAT_HOME%\lib\*.jar) do call

Re: JDBCRealms

2001-03-29 Thread Jeff Kilbride
It's a way to authenticate users and roles via JDBC by configuring your server.xml file. Check this out: http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/JDBCRealm.howto --jeff - Original Message - From: "Darin Wilcox" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday,

Reloading Servlets

2001-03-29 Thread Colin Morris
Hi, I've been writing servlets, testing them as I go with my Tomcat-Apache Server and Netscape... I've run into the problem that sometimes, not all the time, when I refresh a servlet to see changes, it's not changed? I closed Netscape, deleted my web cache, and closed Kawa. But still

How to use a Bean

2001-03-29 Thread Chris Andreou
I am using JDK1.3 Tomcat 3.3 on Windows Nt platform. The problem I have is tomcat does not load the bean. It does load Java Api classes. I have the following bean: package testing; import java.io.*; public class TestBean implements Serializable { private String FirstName = null;

  1   2   >