Where can I find mod-jk for tomcat 4.0 ?

2001-02-26 Thread Hervé Guidetti
Hi all, I am looking for mod_jk for tomcat 4.0. Where can I find that ?? What is its version (alpha, beta, ...) Thanks a lot. Herv - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL

RE: IIS and Tomcat (3.2.1)

2001-02-26 Thread Randy Layman
That depends, did you tell IIS to redirect to Tomcat for /*.jsp? (Chcek the uriworkermap.properties file for your settings, read through the isapi.log file to find out what is currently happening) Randy -Original Message- From: Tin Ngoc Doan [mailto:[EMAIL PROTECTED]]

RE: Database connection pool scope

2001-02-26 Thread Randy Layman
First of all, there are several connection pools avaiable, so you might want to look at those before you decide that re-inventing the wheel is a good thing. Second, most connection pools work by using static classes. Your code would look something like: Connection conn

Error messages

2001-02-26 Thread Patric Lichtensteiger
hi, i always recieve the following error message in the jakarta window: java.lang.NoClassDefFoundError: sun/tools/javac/Main but i know, that the tools.jar and all other .jar-files i need are in the classpath... this makes no sence to me... greetz

Global Init Parameters

2001-02-26 Thread Brett W. McCoy
I have in http://www.chapelperilous.net/~bmccoy/ --- A rock store eventually closed down; they were taking too much for granite.

RE: Database connection pool scope

2001-02-26 Thread Jon Crater
i use a connection pool in tomcat 3.2.1. i have a servlet, ConnectionBroker.java, which, in its init() method checks for the existence of the connection pool. if the connection pool is null, it creates an instance of it and binds it to the servlet context. then other classes can call this

RE: deep web.xml problem

2001-02-26 Thread Randy Layman
Ok, let me take a slightly different approach. In your web.xml file you are specifying some init-params for a particular named servlet. Its Tomcat's job that everytime it sees this name that it passes the init-params from the web.xml file to the init method (this happens everytime the

JDBC connecting to Oracle

2001-02-26 Thread mike thomas
Hi all Does anyone out there know the syntax for connecting a JSP to an Oracle database using JDBC? What I am really after is how do I set the database name, user name and password so that JSP can set up the connection. So far I have this :- Connection con = DriverManager.getConnection("??");

Case Sensitivity

2001-02-26 Thread Bilodeau, David
Our Intranet developers are using Tomcat for an internal site. We have just upgraded from 3.1 to 3.2. Now, many of our hyperlinks are case sensitive whereas before they seemed to be case insensitive. I'm just asking this question on behalf of the content owners because although I administer

halcyonsoft iasp

2001-02-26 Thread Jeremy Kusnetz
I am new to using tomcat. I am using halcyonsoft iasp, which parses .asp files as java servlets. I am trying to get tomcat 3.21, running with apache 1.3.12 to act as the servlet engine for iasp. Using documentation from halcyonsoft, I have gotten *.asp files to be parsed under the context

AW: JDBC connecting to Oracle

2001-02-26 Thread Kurt, Oliver
that depends if you use a thick oracle driver or the thin oracle driver. for the thin-driver the URL is: jdbc:oracle:thin:@host:port:SID example: jdbc:oracle:thin:@s_safedb1:1521:sf01 for the thick-driver: jdbc:oracle:oci8:@tns-listener-name see@ technet.oracle.com at the documentation for

RE: Tomcat as NT Service Error!!

2001-02-26 Thread Benjamin Cramer
Giovanni, I too had some difficulty getting things running smoothly as an NT Service on Win2K. I experienced the same error. Here's how I fixed mine: 1. Go to the c:\{My Tomcat Directory}\bin directory. 2. Rewrite your net service command like this: jk_nt_service -i service_name

RE: Case Sensitivity

2001-02-26 Thread Randy Layman
No. The Java platform is, generally, case sensitive. I believe that there were a number of hacks put into the Tomcat 3.1 code to allow this case insensitivity, however, case sensitive behavior is easier, and I believe its required by the JSP/Servlet spec. Randy -Original

porting from sun j2ee-ri to tomcat

2001-02-26 Thread Daniel Russ
Hi, I have a servlet that is basically an EJB client. I deployed the EJB and servlet as one application with a web and an ejb component, and it worked fine on my PC running Sun's J2EE Reference Implementation. I want to move the web app to a different machine that is running tomcat. I moved

RE: JDBC connecting to Oracle

2001-02-26 Thread Randy Layman
Perhaps you should consult the documentation that came with your Oracle JDBC drivers? I do know that there is an example of this in there. There is a method in DriverManager getConnection(url, username, password), so I believe it would be something like

RE: halcyonsoft iasp

2001-02-26 Thread Randy Layman
The whole concept behind web apps are that they are totally independent. You will heed to add the halcyonsoft stuff to each web app. Randy -Original Message- From: Jeremy Kusnetz [mailto:[EMAIL PROTECTED]] Sent: Monday, February 26, 2001 10:21 AM To: '[EMAIL

RE: halcyonsoft iasp

2001-02-26 Thread Jeremy Kusnetz
So how are *.jsp files handled? I managed to get *.jsp files parsed that weren't under a web app, at least ones that didn't use other classes falling under the WEB-INF directory. I would like to make virtual hosts, where a user could have a index.html, index.jsp, index.asp be usable. Would the

RE: halcyonsoft iasp

2001-02-26 Thread Morahg, Yoav
Actually, the web.xml file in conf is ignored in 3.2 and is back in use in 4.x Yoav -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Monday, February 26, 2001 10:12 AM To: [EMAIL PROTECTED] Subject: RE: halcyonsoft iasp For Tomcat 3.2: In the conf

hep

2001-02-26 Thread Vincent Choi
Hi I downloaded the latest Apache 1.1.14 and the Tomcat 3.2.1, they seems runing alright. However, I don't know how to config the server to run my jsp. Could u give me some help, please? Many thanks Vincent ** The contents

tomcat.bat

2001-02-26 Thread shlomi sarfati
Hi I need to run something that tomcat depends on before tomcat starts(rmiregistry.exe) I thought about using the tomcat.bat for this the thing is that if I do it like this , the tomcat wont work because it will wait for the other program to end to be simple , how can I call other program in

Re: Database connection pool scope

2001-02-26 Thread Valeriy Molyakov
Two questions: What is the singleton? Where it is possible to receive such class ? - Original Message - From: "Jon Crater" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 26, 2001 5:17 PM Subject: RE: Database connection pool scope i use a connection pool in tomcat

JNI shared libraries and wars

2001-02-26 Thread Nick Christopher
My web app uses some JNI code. Currently I've put the shared library into $TOMCAT_HOME/lib and added that directory to LD_LIBRARY_PATH. I'd like something more elegant and that worked on Un*x and Windoze. I'd love to get it into the war file. Is there a right way to do this or any better

removing /servlet from apache to tomcat ( mod_jk) URL's

2001-02-26 Thread Mohamed Nasser
Hello folks. I have two implememtations of apache-tomcat. One has all developed servlets in webapps. In this implementation when I removed the the /servlet/* ajp13 from the JkMount in the mod_jk.conf and left it as /* ajp13, things worked fine without the /servlet. However in

Re: Authentication to LDAP

2001-02-26 Thread Peter Andersén
Hi I can be included on this. I have built a bean for doing contextless login into LDAP. It maybe could be useful for this, but i need to understand what do you need for the plugins to work. I have not been looking at this much so if someone could enlight my on the subject i could check. /Peter

Re: tomcat.bat

2001-02-26 Thread Peter Andersén
Hi by doing call in bat. call resource.bat /Peter - Original Message - From: "shlomi sarfati" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 26, 2001 5:02 PM Subject: tomcat.bat Hi I need to run something that tomcat depends on before tomcat

Re: Authentication to LDAP

2001-02-26 Thread Fernando Padilla
get the source form tomcat 4.x, then go look at: // Realm interface src/catalina/src/share/org/apache/catalina/Realm.java // basic realm that most extend src/catalina/src/share/org/apache/catalina/realm/RealmBase.java // and other example realms ( where the LDAP, et al will live in )

Cannot load /var/apache/libexec/mod_jserv.so into server

2001-02-26 Thread Mark Sweeney
Hi I'm running apache 1.3 and Tomcat 3.2.1 on a SUN Solaris 8.0 Ultra 1 SPARC platform. I'm able to view the HTTP pages from Apache and run the servlet examples from Tomcat. The problem is I cannot load mod_jserver.so when attempting to load via tomcat.conf file. Below is the output I

404 error when pressing 'Submit' button when running a JSP

2001-02-26 Thread Schiff, Nicky
Having installed and attempted to configure Tomcat v3.2.1 and Apache v1.3, I try to run a JSP called 'logon.jsp' via my browser (IE v4.0). The Java application is installed within a Sun Solaris UNIX environment. The JSP is run via the browser by typing in the following URL :-

RE: first time user!!!

2001-02-26 Thread Zakaria .
Thanks a lot, it worked!!! I have another question, when i try to compile a simple servlet using: javac -classpath c:\tomcat\lib\servlet.jar MyServlet.java i get an error about the symbol : HttpServlet the same error i get when i use :javac MyServlet.java Like the servlet.jar doesnt work or

More on tomcat with SSL problem

2001-02-26 Thread Mandar Joshi
I created a java client communicating over https and used it with the same URL it throws following exception: javax.net.ssl.SSLException: Received fatal alert: handshake_failure (no cipher suites in common) at com.sun.net.ssl.internal.ssl.SSLSocketImpl.b([DashoPro-V1.2-120198])

about the

2001-02-26 Thread Bo Xu
Hi dear friends :-) I am new to this List, thanks for your help! :-) now I use jakarta-tomcat-4.0-b1(standalone, JDK1.3, winnt40). from the direction of one email in Servlet-List, I find the following link:

newbie: I assume Tomcat 3.2.1 does support SSL via IIS

2001-02-26 Thread Todd Carmichael
I would like SSL requests to come into IIS and then be forward to Tomcat in SSL mode. From the documentation (how-to) on how to get SSL to work, only Apace is mentioned. A quick answer would be appreciated. Thanks. - To

global init param context-param

2001-02-26 Thread Brett W. McCoy
I am using context-param to set global variables for my servlets, but my servlets are still not seeing them (the value is showing up as null). Here is an example: context-param param-namebw.client.configDir/param-name param-valueD:\dev\src\conf/param-value /context-param And the

Where to place .properties-Files when deploying a .war ?

2001-02-26 Thread Michael Specht
Hello, where i have to place the .properties-Files, when deploying an application as an .war-File? I tried several locations: - in root of war-File - in the WEB-INF/lib-directory - in the WEB-INF/classes directory - in the root of the web-apps/app dir and ... I always get the Message

Re: init-param with Tomcat4.0

2001-02-26 Thread Craig R. McClanahan
S Ramakrishnan wrote: Environment: Tomcat 4.0 on NT4.0 Browser: IE5.5 Problem: I am unable to get init-param to work. In my web.xml I have servlet servlet-nameQuote/servlet-name servlet-classQuote/servlet-class init-param

RE: global init param context-param

2001-02-26 Thread Brett Knights
oamFileProps.load(config.getInitParameter("bw.client.configDir") + System.getProperty("file.separator") + "SystemPref.properties"); Context.getInitParameter for globals - To

Problem starting Apache and Tomcat

2001-02-26 Thread Rouiller Samuel
Hi, I am using Apache with mod_jk and Tomcat. I included the mod_jk.conf file in my http.conf and configured the workers.properties file. My problem is that apache refuses to start by logging the following in error.log: [Mon Feb 26 20:16:15 2001] [emerg] (2)No such file or directory: Error

Re: TC3.2.1 - response commit on included JSPs

2001-02-26 Thread cmanolache
" if that destination is another character or byte stream, flush it." In this case, the destination is the servlet output stream - and it has to be flushed. That is only because the particular servlet engine implementation implements the ServletOutputStream of the Response object

MySQL driver - java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver

2001-02-26 Thread c cw_1
Hi I try to use MySQL to access the database. I set the drivername = "org.gjt.mm.mysql.Driver"; and set URL = "jdbc:odbc:test"; and I included the "c:\mm.mysql-2.0.2-bin.jar" in the CLASSPATH, I got the classNotFoundException. I used" Tomcat 3.1 MySQL 3.23.32 jdk1.3 Can some tell me how can

RE: global init param context-param

2001-02-26 Thread Brett W. McCoy
On Mon, 26 Feb 2001, Brett Knights wrote: oamFileProps.load(config.getInitParameter("bw.client.configDir") + System.getProperty("file.separator") + "SystemPref.properties"); Context.getInitParameter for globals Argh, I was hoping you wouldn't

Connecting to a servlet from within an applet

2001-02-26 Thread Neil Wood
Hi, how can I configure a servlet in Tomcat to be accessible from within a client side applet? I had this working in Java Web Server but in Tomcat I cant get it to work!! Thanks for any advice!! Neil Neil Wood, Systems Developer, Jungle Online Ltd. www.jungle.com

load on start-uo

2001-02-26 Thread Neil Wood
How do I get a servlet to load up on start-up of tomcat. probably easy but I dont know how to? where can i find answers to questions that are similar to this one? Thankyou, Neil Neil Wood, Systems Developer, Jungle Online Ltd. www.jungle.com

Fwd: load on start-uo

2001-02-26 Thread Neil Wood
Neil Wood, Systems Developer, Jungle Online Ltd. www.jungle.com How do I get a servlet to load up on start-up of tomcat. probably easy but I dont know how to? where can i find answers to questions that are similar to this one? Thankyou, Neil Neil Wood, Systems Developer, Jungle

Fwd: Connecting to a servlet from within an applet

2001-02-26 Thread Neil Wood
Neil Wood, Systems Developer, Jungle Online Ltd. www.jungle.com Hi, how can I configure a servlet in Tomcat to be accessible from within a client side applet? I had this working in Java Web Server but in Tomcat I cant get it to work!! Thanks for any advice!! Neil Neil Wood, Systems

RE: Connecting to a servlet from within an applet

2001-02-26 Thread Randy Layman
You simply need to make a request. It depends upon what you are trying to do. A GET or POST request can be made by URLConnection fairly easily. If you are looking for a session, you have to pass the session id back (the applet doesn't know about the cookies of the browser its running

E-mail guidelines...

2001-02-26 Thread Adam Fowler
Hi all, Could everyone please make sure that the to: address when they send e-mail to this list is [EMAIL PROTECTED] and not "tomcat user" "tomcat" or " ". It's a pain to sort through 50 unknown e-mails to put them in the right place. Also, the e-mail guidelines request that people use plain

RE: JServ - mod_jk

2001-02-26 Thread Adam Fowler
Hi, Mod_jk has its own config file called mod_jk.conf.auto you'll need to caopy this to something like mod_jk.conf.correct and edit it for your paths etc. After this make sure apache is including it. Regards, Adam. Adam Fowler Second year Computer Science undergraduate University of

admin

2001-02-26 Thread Shai Bentin
anybody know of a good tool for tomcat administration, something like an applet or application that lets you easily configure tomcat configuration files? thnx - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

How to setup CLASSPATH for different apps.

2001-02-26 Thread Rogelio Estudillo
Hello, I am running Apache with Virtual Hosts and Tomcat 3.2 (mod_jserv) on Linux . I'm trying to run multiple JVM's on the same machine (alpha and beta setup.) I've modified the httpd.conf to support the two virtual hosts and the ApJ mountpoints, created a server_alpha.xml and a server_beta.xml

Re: load on start-uo

2001-02-26 Thread Jon Crater
in the web.xml file for your context, map a servlet and use the load-on-startup tag. servlet servlet-nameServletName/servlet-name descriptionDescription/description servlet-classfully.qualified.class.name/servlet-class !-- Load this servlet at server startup time --

RE: deep web.xml problem

2001-02-26 Thread Dresmond.McLaurin
-Thank you very much, Randy... I got it right now... servlet-mapping - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Connecting to a servlet from within an applet

2001-02-26 Thread Neil Wood
Hi, how can I configure a servlet in Tomcat to be accessible from within a client side applet? I had this working in Java Web Server but in Tomcat I cant get it to work!! Thanks for any advice!! Neil Neil Wood, Systems Developer, Jungle Online Ltd. www.jungle.com

load on start-uo

2001-02-26 Thread Neil Wood
How do I get a servlet to load up on start-up of tomcat. probably easy but I dont know how to? where can i find answers to questions that are similar to this one? Thankyou, Neil Neil Wood, Systems Developer, Jungle Online Ltd. www.jungle.com

RE: JServ - mod_jk

2001-02-26 Thread Brett W. McCoy
On Mon, 26 Feb 2001, Adam Fowler wrote: Mod_jk has its own config file called mod_jk.conf.auto you'll need to caopy this to something like mod_jk.conf.correct and edit it for your paths etc. After this make sure apache is including it. I got the problem sorted out (not having mod_jk.conf

Re: MySQL driver - java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver

2001-02-26 Thread Denny Chambers
For the URL try this: URL = "jdbc:mysql://dbserver/dbname?user=myusernamepassword=myPassword" It's been about a year since I fooled around with MySQL, but this worked for me then. Denny c cw_1 wrote: Hi I try to use MySQL to access the database. I set the drivername =

RE: JServ - mod_jk

2001-02-26 Thread Brett W. McCoy
On Mon, 26 Feb 2001, Brett W. McCoy wrote: *sigh* At least I'm the programmer who has to do the re-coding... Oops, that should be "At least I'm NOT the programmer..." :-) -- Brett http://www.chapelperilous.net/~bmccoy/

Re: load on start-uo

2001-02-26 Thread William Brogden
Neil Wood wrote: How do I get a servlet to load up on start-up of tomcat. probably easy but I dont know how to? where can i find answers to questions that are similar to this one? Read the documentation, study the Tomcat examples - especially the way web.xml is used, download the

Installing Tomcat

2001-02-26 Thread Noah silva
Hello, I am a programmer and familiar with unix, HTML, and apache, but I am not familiar with JSP, jserv, or tomcat. In looking for a webmail product to meet my needs, I came across "webmail", which despite it's rather generic sounding name, looks like a very nice package. It can be found at:

Problem in Jakarta-Tomcat running in WinNT with multiple NICs

2001-02-26 Thread aneogi
Hi, I'm using Jakarta-Tomcat as the servlet container and also as the default web server listening to 8080 port for a Servlet-Jsp based application. The Servlet has a background thread running that communicates asynchrnously (asynchronous to the HTTP requests) with an external

Calling an EJB from a servlet

2001-02-26 Thread Ghislain Gadbois
Hi everyone, I developped a servlet that calls EJB components that are stored in an Oracle 8.1.7 database. When I run my servlet from Oracle JDeveloper, I can call my EJB components without any problem. When I deploy my servlet in Tomcat 3.2.1 (on SunOS 5.6), I always get the following

Re: MySQL driver - java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver

2001-02-26 Thread Niels Wagner
Hi, I try to use MySQL to access the database. I set the drivername = "org.gjt.mm.mysql.Driver"; and set URL = "jdbc:odbc:test"; I'm not using exactly the same configuration (Tomcat 4.0,cocoon) but my urls look like url=jdbc:mysql://localhost/db_name and I included the

RE: Installing Tomcat

2001-02-26 Thread Randy Layman
You need to install a JDK (from eitehr Sun or IBM) You need to download and un-tar/zip the Tomcat binaries (it is writtin in java, so there is only one package. The various binary directories are for the web server connectors) The Where to install is where ever you like.

Invalid Authorizaton

2001-02-26 Thread Bryan Murtha
I keep getting this error, I'm connecting to a mySQL database on the same Sun box as the webserver and Tomcat are running, I can use this same user/pass to connect through Perl DBI and everything is OK, but here I am told it's invalid. Have tried it using several different users, with no

RE: Connecting to a servlet from within an applet

2001-02-26 Thread GOMEZ Henri
You simply need to make a request. It depends upon what you are trying to do. A GET or POST request can be made by URLConnection fairly easily. If you are looking for a session, you have to pass the session id back (the applet doesn't know about the cookies of the browser its running

Re: init-param with Tomcat4.0

2001-02-26 Thread S Ramakrishnan
I am afraid I do not understand. Why are the two correlated? Unless I am mistaken, servlet mapping is for arriving at compact URLs for user convenience. Why is this mandatory in order to specify init-parm's? Thanks, Rk x77309 On Mon, 26 Feb 2001 10:58:44 Craig R. McClanahan wrote: S

Tomcat running inprocess with Netscape 3.62 webserver.

2001-02-26 Thread prasad . moganna
Hi guys, I am trying to set up tomcat to run inside the Netscape's webserver process. Using Netscape Enterprise Server 3.62 I followed all the steps mentioned in the documentation to run tomcat inside the webserver process. Downloaded the jni_connect.dll, changed the server.xml and

RE: Tomcat running inprocess with Netscape 3.62 webserver.

2001-02-26 Thread Adam Fowler
Hi, Should it be looking under the d:\struts directory? I thought struts was another jakarta project? Regards, Adam. Adam Fowler Second year Computer Science undergraduate University of Wales, Aberystwyth Carroll College, WI, USA(2000-2001) web: http://gucciboy.dyndns.org/aff9 e-mail:

RE: Connecting to a servlet from within an applet

2001-02-26 Thread Randy Layman
I've found it easire to simply pass the session ID as a parameter, and then in my servlet receive it back and use the HttpSessionContext.getSession(sessionID). I find it easier than messing with the cookies. Randy -Original Message- From: GOMEZ Henri [mailto:[EMAIL

RE: Connecting to a servlet from within an applet

2001-02-26 Thread GOMEZ Henri
I've found it easire to simply pass the session ID as a parameter, and then in my servlet receive it back and use the HttpSessionContext.getSession(sessionID). I find it easier than messing with the cookies. Yes but how did mod_jk will find and use it this way ?

Re: init-param with Tomcat4.0

2001-02-26 Thread Bo Xu
S Ramakrishnan wrote: I am afraid I do not understand. Why are the two correlated? Unless I am mistaken, servlet mapping is for arriving at compact URLs for user convenience. Why is this mandatory in order to specify init-parm's? Thanks, Rk x77309 On Mon, 26 Feb 2001 10:58:44

JSP caching

2001-02-26 Thread Jim Miani
Hi, I've been using Tomcat for about 2 months. For 7 weeks and 6 days, JSP recompilation worked fabulously, no complaints. It never cached. Today, suddenly, everytime I want to change a class file that is called by a JSP page, I have to *ugh* stop and restart Tomcat to get the new class file

RE: Connecting to a servlet from within an applet

2001-02-26 Thread Randy Layman
Never thought of that - its not been a problem with my configurations Randy -Original Message- From: GOMEZ Henri [mailto:[EMAIL PROTECTED]] Sent: Monday, February 26, 2001 5:53 PM To: [EMAIL PROTECTED] Subject: RE: Connecting to a servlet from within an applet

RE: Tomcat running inprocess with Netscape 3.62 webserver.

2001-02-26 Thread prasad . moganna
Don't be misleaded by the name of the dir. I wanted to use the struts framework, but for this one of the pre-requisites was to have a servlet container, which the documentation suggested tomcat and I went for that. Before jumping into writing the app., I thought I would first write a simple

mod_jk installation

2001-02-26 Thread Chris Andreou
I have installed (migrated) from jser_mod to jk_mod. I installed and I was able to run the examples. My problems is when I registered a new Context within Tomcat and try to run a simple sevlet then I get the exception handling errors. The steps i followed were: Server xml: Context

RE: init-param with Tomcat4.0

2001-02-26 Thread S Ramakrishnan
Thanks for your note. web.xml for my application has clearly bound a set of init-parm's with a servlet class. Hence the container must be able to uniquely determine the set of initial parameters, given a servlet class file, regardless of by what name ("default" or otherwise) the servlet is

RE: Connecting to a servlet from within an applet

2001-02-26 Thread Brett W. McCoy
On Mon, 26 Feb 2001, Randy Layman wrote: I've found it easire to simply pass the session ID as a parameter, and then in my servlet receive it back and use the HttpSessionContext.getSession(sessionID). I find it easier than messing with the cookies. According to the 2.2 spec of the

Re: MySQL driver - java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver

2001-02-26 Thread RameshBabu R Muthuvel
Try the following 1) URL = "jdbc:mysql:test"; 2) Add the classpath "c:\mm.mysql-2.0.2-bin.jar" as follows: StartSettingsControl PanelSystemEnvironmentSystem Variables 3) Restart the computer Try again. I got it, you too will get it. ramesh

Can anyone decipher this Tomcat error?

2001-02-26 Thread Conrad Gustafson
Hello there, Configuring Tomcat with IIS, I get an http 404 error when trying to hit http://localhost/examples/jsp/index.html. Do the following debug lines from the command prompt window mean anything to any Tomcat gurus out there? I know about the "Socket write error" problem between

Starting Tomcat

2001-02-26 Thread Ferdinand Enario
Hi, I am new to tomcat. I have just installed tomcat on Linux Mandrake 7.1 with Apache on it. I was able to configure this: http://localhost/examples/jsp/index.html My problem now is how do I start tomcat automatically before Apache starts (auto load on machine boot). Please help. Ferdinand

disabled cookies create a new session id

2001-02-26 Thread Guntupalli Shanti
Hi I have seen so many people sending mails regarding the same problem but I didn't find a solution yet. I am running TomCat 3.2 on Apache 1.3.12 through mod_jserv (tried mod_jk also). As long as I enable the cookies and run my application (which is a bunch of servlets) I have no problem. But

Re: disabled cookies create a new session id

2001-02-26 Thread Guntupalli Shanti
Forgot to mention I use encodeURL for all the links I have in my pages Any ideas would be appreciated. Thanks...Shanti At 04:51 PM 2/26/2001 -0800, you wrote: Hi I have seen so many people sending mails regarding the same problem but I didn't find a solution yet. I am running TomCat 3.2 on

RE: Difficulty getting IIS to recognize additional Tomcat contexts

2001-02-26 Thread Todd Carmichael
Same problem here. Any luck resolving the problem? -Original Message- From: Shrisha Radhakrishna [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 24, 2001 10:06 PM To: [EMAIL PROTECTED] Subject: Re: Difficulty getting IIS to recognize additional Tomcat contexts Here's a snippet

Re: Difficulty getting IIS to recognize additional Tomcat contexts

2001-02-26 Thread Shrisha Radhakrishna
Nada. I have pulled the last strand of hair off my bald colleague's head. --Shrisha - Original Message - From: "Todd Carmichael" [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, February 26, 2001 5:01 PM Subject: RE: Difficulty getting IIS to recognize

Re: JDBCRealm

2001-02-26 Thread Craig R. McClanahan
Herchel Wojciech wrote: Hi! I've got the following problem - I want to dynamically display certain information to a user, depending upon a role they've been granted (via JDBC authorisation). how do i do that? getParameter("role") returns null. The getParameter() method returns parameters,

Re: tc4: No processor available, rejecting this connection

2001-02-26 Thread Craig R. McClanahan
Endre Stlsvik wrote: On Sun, 25 Feb 2001, Craig R. McClanahan wrote: | Endre Stlsvik wrote: | | My config is like this: | | Connector className="org.apache.catalina.connector.http.HttpConnector" | port="##HTTPPORT##" minProcessors="1" maxProcessors="3" |

Re: tc4: catalina.home vs catalina.install

2001-02-26 Thread Craig R. McClanahan
Endre Stlsvik wrote: On Sun, 25 Feb 2001, Craig R. McClanahan wrote: | Endre Stlsvik wrote: | | Hi! | | It kind of seems to me that there is some "inconsistency" between the | catalina.home and where you actually want tomcat4 to _run_. | | I have a bunch of "installations" for my

Re: tomcat4... pretends to be tomcat3

2001-02-26 Thread Craig R. McClanahan
[EMAIL PROTECTED] wrote: I have removed tomcat 3.2.1 from my freebsd4.2 machine and installed tomcat4 instead. After re-booting and starting the tomcat server, I still get the tomcat3.2.1 splash page... How can this be?! It means one of two possible things: * You still have 3.2.1

Re: using tomcat 4 - Newbie

2001-02-26 Thread Craig R. McClanahan
David Treves wrote: Hi there, I am trying to implement the "HttpSessionActivationListener" interface, but my compiler doesnt recognize it, what should I do about it? Because this interface was added in the servlet 2.3 API classes, you need to make sure that the servlet.jar file that

Re: Case Sensitivity

2001-02-26 Thread Craig R. McClanahan
"Bilodeau, David" wrote: Our Intranet developers are using Tomcat for an internal site. We have just upgraded from 3.1 to 3.2. Now, many of our hyperlinks are case sensitive whereas before they seemed to be case insensitive. I'm just asking this question on behalf of the content owners

Re: JNI shared libraries and wars

2001-02-26 Thread Craig R. McClanahan
Nick Christopher wrote: My web app uses some JNI code. Currently I've put the shared library into $TOMCAT_HOME/lib and added that directory to LD_LIBRARY_PATH. I'd like something more elegant and that worked on Un*x and Windoze. I'd love to get it into the war file. Unfortunately, native

problems with apache and formbased sec?

2001-02-26 Thread John de la Garza
Are there any major problems with formbased security when running apache and tomcat? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Tomcat .vs. jspGNU

2001-02-26 Thread kunwar
hi all I'm a student who has to do a project (customer portal)using JSP and Oracle8 on a redhat 6i Intel machine. The problem is that the client has reffered two options: 1. Tomcat 2. jspGNU and we have to use whichever is the best for the job. If anyone can help with answers or websites,

RE: Difficulty getting IIS to recognize additional Tomcat contexts

2001-02-26 Thread Craig O'Brien
Hello, Why don't you guys just try simplifying things and dropping the variable. My config files look like yours but I'm not using variables. Mine works fine with tomcat 3.2 on IIS. Perhaps too much perl?? /test/*=ajp12 Worth a try, only takes 2 minutes. Also try dropping the "trusted"

Re: init-param with Tomcat4.0

2001-02-26 Thread Craig R. McClanahan
S Ramakrishnan wrote: Thanks for your note. web.xml for my application has clearly bound a set of init-parm's with a servlet class. Hence the container must be able to uniquely determine the set of initial parameters, given a servlet class file, regardless of by what name ("default" or

Progress in JSP/Servlet

2001-02-26 Thread Parayali, Jayesh 1065
Title: Progress in JSP/Servlet Hi, I need to show a text message while a jsp/servlet is doing some work. If I use out.flush() or response.flushBuffer(), I can not use sendRedirect since the Response has already been committed Any help is appreciated. Thanks, Jayesh

use of servlet tag in the apache/tomcat

2001-02-26 Thread KAPIL SHUKLA
Dear friends I am trying to migrate from java web server to apache/tomacat.problem is this that ,site uses servlet/servlet tag extensively,in its shtml pages. these servlets are not executed properly on the apache/tomcat. any work around kapil

Tomcat 3.2.1 mod_jk binaries for Solaris 8/SPARC and Linux (non-EAPI)

2001-02-26 Thread Jones, Stephen
Okay, I can't zip the non-EAPI ones small enough... (the group only takes 100k mesgs) Email me if you actually want them and don't find me annoying... Steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Tomcat 3.2.1 mod_jk binaries for Solaris 8/SPARC and Linux (EAPI)

2001-02-26 Thread Jones, Stephen
Since my company is attempting to redistribute mod_jk in binary format to simplify installing our web product, I compiled these versions of mod_jk for SSL-enabled (EAPI) Apache 1.3.17. The attached tarball includes: mod_jk_bin/mod_ssl/linux-i386/mod_jk.so

[ANNOUNCEMENT] Tomcat 3.2.2 beta 1 released

2001-02-26 Thread Marc Saegesser
I am pleased to announce that the Tomcat 3.2.2 beta 1 release is now available for download at http://jakarta.apache.org/builds/tomcat/release/v3.2.2-beta-1 Tomcat 3.2.2 contains bug fixes collected since the release of Tomcat 3.2.1. The bugs known to be fixed in this release are listed in the