Question W2k is supported for IIS-Tomcat?

2001-02-12 Thread hs_shin
we are using W2k server as Operating system. I read the article "Tomcat IIS How to". --- "Supported configuration" The IIS-Tomcat redirector was developed and tested on WinNt4.0 ~

Custom error Pages

2001-02-12 Thread Yogesh Agarwal
Hi All: I have set up tomcat/apache to host my web application. Now I want to throw custom error pages for 404/500 errors. I read in the archives that error-code tag in web.xml will work. I tried the same but it doesn't work. If somebody has faced the similar situation and come up with a

req.getSession(true) problems with 3.2.1

2001-02-12 Thread Richard Downey
Hi, I am moving working applications from 3.1.1 to 3.2.1 and after getting over the strictly enforced case rules everything seemed to be OK , however I've noticed that whenever a session expires using HttpSession session = req.getSession(true); seems to trigger a loop leading to a stack

RE: *** Generated Tomcat Temporary Class File Name Seem Too Long... Yes ***

2001-02-12 Thread Xavier
Thanks for your answer but anyway it does not work When I try to copy the .java file to the place in which I expect the .class file Windows NT refuses to copy the file because the file name is too long. That is really bad... I know that it is a problem of NT but that is really crap that we

RE: Error 404

2001-02-12 Thread Matt Campbell
Hi Harry, I am also having the same problem, and I'm running redhat 6.2 as well. I haven't been able to locate a solution, although someone did recomend that I clear out the $TOMCAT_HOME/work dir and see if that solves the problem. I am going to try that tonight, I'll let you know. If that

RE: 500 Location Error

2001-02-12 Thread Ananda Venkatapathy
Hi, I checked the log but i couldn't identify the error. The error message is that flushbuffer method not found in class file. regards, PATHY A.V. [EMAIL PROTECTED] -Original Message- From: Moin Anjum H. [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 10:11 AM To:

RUE for tomcat

2001-02-12 Thread shlomi sarfati
Does any body familiar with RUE for tomcat ? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Re: req.getSession(true) problems with 3.2.1

2001-02-12 Thread Kief Morris
Richard Downey typed the following on 09:45 AM 2/12/2001 + I am moving working applications from 3.1.1 to 3.2.1 and after getting over the strictly enforced case rules everything seemed to be OK , however I've noticed that whenever a session expires using HttpSession session =

Re: req.getSession(true) problems with 3.2.1

2001-02-12 Thread Luc Vanlerberghe
I don't know about the first problem, but the fact that the initial getSession is slower than before is due to the fact that the sessionid is now generated useing a java.security.SecureRandom object. The initialisation of objects that class take a while to initialise to make sure their state is

Re: Frustration with getInitParameter

2001-02-12 Thread Bill Brooks
On Fri, 27 Oct 2000, Craig R. McClanahan wrote: Paul Hoepfner-Homme wrote: Sorry, typo in web.xml below. I had servlet-paramMyServlet/servlet-param before, but it should be servlet-class obviously. I have fixed it below. Finally, I'm not alone!! I have 3.2 beta 6 as well.

Deployement question

2001-02-12 Thread Alaoui Karim
Hi all, A beginner question ;-) I hope someone can help me. I have an application Foo whith a jar file foo.jar installed in a shared directory. This application has a servlets side which use foo.jar. I created a web-application in tomcat foo. Is there a way to avoid copying the jar file

Re: Question W2k is supported for IIS-Tomcat?

2001-02-12 Thread Gallicus
Using the same information you have found in "Tomcat IIS How to" you will be able to perform the redirection between Tomcat and IIS 5 (Win 2k) with no problems. Performance seams to me to be the same as in IIS 4 configuration but if you have a dtabase (like Access) on the same machine, the

RE: req.getSession(true) problems with 3.2.1

2001-02-12 Thread Richard Downey
Hi , Thanks for the info on the random number generator that explains the delay on first loading a session it does indeed only happen on the first session of a tomcat run. I am cutting down some code to get a mini test of this problem and will post it shortly. Will also try re.getSession() .

bye

2001-02-12 Thread Christian Langmann
unsubscribe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Sessions lost when server restart or class reload

2001-02-12 Thread Carlos Romero Mas
When a class is reloaded because you have change it the objects saved on sessions are lost and all the users connected to that application suffer that. Then, one of the more interesting aspects of web applications are lost: change the application on fly transparently for most users of that

Context Manager - SocketException

2001-02-12 Thread Amir Nuri
Hi Does Anyone knows why what this exception means ???, and why do i get it ??? (I'm useing tomcat3.2) ContextManager: SocketException reading request, ignored - java.net.SocketException: Connection reset by peer at java.net.PlainSocketImpl.socketAvailable(Native Method) at

tomcat on FreeBSD4.2 problems (jdk1.3)

2001-02-12 Thread qazwasyx
I'm really struggling to install tomcat on FreeBSD 4.2 running in linux compat mode. I've *managed* to install jdk1.3, after changing one of the confs (I think) to point the wrapper the linux compat dir (instead of the native linux) - this was without the understanding of what I was doing,

Re: RMI in linux

2001-02-12 Thread Gutierrez, Jeff
Im using linux, jdk1.2.2 and tomcat. I'm having a problem with rmi registry... how do you start rmi regsitry? I read that its different from windows and it has something to do with the ports. Could anyone explain it more to me... like how would i bind it to a port i like to use like 8080 or

directory browsing....

2001-02-12 Thread mathew
can somebody tell me how do i prevent directory browsing when i am running tomcat as standalone web server eg. http://localhost:8080/examples/ max - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

jar-file

2001-02-12 Thread affan
How i can make the jar file from a class file.

RE: Xerces parser.

2001-02-12 Thread Kimpton,C (Chris)
Hi, The problem I think is due to tomcat using its XML parser code to process yours. It has an old DOM v1 parser - which means if you use new v2-only methods, you get this kind of error. The work around we use is to remove the jaxp/parser jar files from the tomcat lib and drop in the xerces

RE: req.getSession(true) problems with 3.2.1

2001-02-12 Thread Richard Downey
Hi , I can now re-create the stack overflow problem with the two attached servlets. The problem only occurs when you put something into the session (in my case I'm using the deprecated getValue, putValue for compatibility with Websphere etc but I *have* tried it with getAttribute / setAttribute

Re: directory browsing....

2001-02-12 Thread Oldeboershuis, Simon
mathew schrieb: can somebody tell me how do i prevent directory browsing when i am running tomcat as standalone web server eg. http://localhost:8080/examples/ The problem and the solution appears serveral times in the mailing list and in several mailing archives AND it is to be found in

Re: Installing Tomcat windows 98

2001-02-12 Thread Dick Poon
Just type the following line to set aside enough memory in DOS environment before typing startup C:\COMMAND.COM /E:4096 /P Obviously, "4096" means 4MB! hope this help! - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday,

Apache/Tomcat multipart/form-data uploads using Ajp13: solution.

2001-02-12 Thread Herko ter Horst
Various people have reported problems with uploading (binary) data to systems with Apache and Tomcat 3.x, using the AJP 1.3 protocol. We believe we have solved this problem in Tomcat 3.2.1, using the fix below. Problem description: Binary data (files) of any size could not successfully be

refresh/flush logs question

2001-02-12 Thread David Brewster
Hi I had a look through the mailing list history and the faq but couldn't find an answer to the following question: is there a way to cause the log file to be flushed (for example as in the mysqladmin --flush-logs) command. I'd like to move the current log files to a backup area and then flsh

SV: Xerces parser.

2001-02-12 Thread Peter Tornberg
Hi Chris, Works like a charm now! Thanks! /Peter -Ursprungligt meddelande- Frn: Kimpton,C (Chris) [EMAIL PROTECTED] Till: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Datum: den 12 februari 2001 13:38 mne: RE: Xerces parser. Hi, The problem I think is due to tomcat using its XML parser

basic configuratoin problem: class files outside of a /webapps/root subdirectory?

2001-02-12 Thread Goebel Martin
Hello, I'm using Tomcat 3.2 on Windows NT. From another machine, I start an applet (which, among others, invokes a servlet) being in the directory /webapps/root/myAppletDirectory. Do my other classes used by the applet necessarily have to be in a subdirectory of /webapps/root, or is it possible

web.xml and caracters

2001-02-12 Thread Carlos. UNICA COMUNICACION.
if in the web.xml i writte: context-param param-namename/param-name param-valuesn/paran-value /context-param the tomcat says me that there is one error "" there is any form to put in the web.xml this character? thanks Carlos UNICA Comunicacin Global

RE: web.xml and caracters

2001-02-12 Thread Ignacio J. Ortega
= amp; = lt; = gt; ,, are forbidden in xml.. Saludos , Ignacio J. Ortega -Mensaje original- De: Carlos. UNICA COMUNICACION. [mailto:[EMAIL PROTECTED]] Enviado el: lunes 12 de febrero de 2001 15:40 Para: [EMAIL PROTECTED] Asunto: web.xml and caracters if in the web.xml i

Tomcat 3.2 throwing a VerifyError at me

2001-02-12 Thread Rajnish Bhaskar
I didn't get a reply to this before, so I'm resending it. Raj. Hi all, I've been using Tomcat 3.1 for a quite a long time now, and I thought that I'd finally give 3.2.1 a try since it's (finally) out of beta. I've set up Tomcat on a Windows NT4 machine with Sun JDK 1.2 and added my webapp

Tomcat standalone SSL, import of certificate

2001-02-12 Thread Drasko Kokic
Hello, I have installed SSL support for Tomcat3.2.1 on a Windows NT machine, and it works nicely for a dummy certificate generated (according to the Tomcat SSL instructions) with keytool. Now I want to import an openssl-generated certificate (from thawte) which we use already for SSL support of

Re: refresh/flush logs question

2001-02-12 Thread David Brewster
On Mon, Feb 12, 2001 at 01:28:13PM -0300, [EMAIL PROTECTED] wrote: Hi David. I had this problem My solution was edit server.xml and change the verbosityLevel of jasper.log. See: In the FATAL mode, jasper.log only records the fatal errors and no more

RE: basic configuratoin problem: class files outside of a /webapps/ro ot subdirectory?

2001-02-12 Thread Randy Layman
Any file in the Web-inf directory is not available to the clients (IE or Netscape, etc). Therefore, any class in your Web-inf can not be loaded to be part of an applet. The reason that this is done is for security reasons - you wouldn't want anyone to just download your class and

RE: web.xml and caracters

2001-02-12 Thread Randy Layman
I believer that its amp;. You need to look at the XML spec at w3c.org and look at the pre-defined entities. There is also a method to insert an arbitray character by using ???;, but I forget the syntax right now. Its also in the XML spec. Randy -Original Message-

RE: Tomcat 3.2 throwing a VerifyError at me

2001-02-12 Thread Randy Layman
It would appear to me that you are trying to create an instance of a class (using Class.newInstance()) that doesn't have a matching contructor to how you are trying to load it. If I remember correctly, newInstance only works with No-Argument constructors. Check for this, and if its not

rs.next() problems with mm.mysql/JDBC 2

2001-02-12 Thread Cato, Christopher
Hello. Sorry for the off-topic (cross)post. I have a web application (servlets) which consists of 48 applications. The application was developed with the MySQL driver mm.mysql version 1.X Version 1.X does not implement scrollable result sets. I have just now upgraded the driver to version 2.0.4

RE: Tomcat 3.2 throwing a VerifyError at me

2001-02-12 Thread Rajnish Bhaskar
It would appear to me that you are trying to create an instance of a class (using Class.newInstance()) that doesn't have a matching contructor I never call Class.newInstance() at all in my code. maybe Jasper is generating this call? How do I check this, and how do I stop it from

RE: rs.next() problems with mm.mysql/JDBC 2

2001-02-12 Thread Randy Layman
Your code snippet really shouldn't have worked. The fact that it did looks to be a bug in the 1.x drivers. You might be able to write some form of script that looks for ResultSet rs = and then add rs.next() on the next line. Not the best solution and it won't get all of your

RE: Tomcat 3.2 throwing a VerifyError at me

2001-02-12 Thread Randy Layman
In the work directory will be a .java file that will correspond to your jsp file. (The name will be managled, but its fairly straight forward which file is which). You won't be able to change how Jasper works, but knowing which class it wants to create with a no-arg constructor will

Tomcat Servlets IIS ASP ?

2001-02-12 Thread Grobe, Gary
I work w/ JSP but have no experience with ASP. I'd like to know how IIS processes ASP and if these same request/responses can also be sent to TOMCAT? What are other people doing for tomcat sites that use ASP? - To unsubscribe,

Tomcat/Apache.

2001-02-12 Thread Sivasankarane, Deepa (D.)
Hi, I've installed Tomcat 3.2.1, on my Win NT machine and have Apache Server up and running. I'm new to this, could somebopdy please outline the steps needed to get a JSP, up and running in this environment ? ANd also ppoint me to a few source code samples ? THanx, dsivasan

any SGI specific help for building mod_jk

2001-02-12 Thread Hladky, David
All, Fo about a week I have been attempting to build mod_jk on an SGI indigo2. I have tried severa different configurations. Including, tomcat 3.2.1 with apache 3.12, apache 3.14 and apache 3.17. I am able to successfully compile apache in all of the listed configurations. The

RE: rs.next() problems with mm.mysql/JDBC 2

2001-02-12 Thread Joe Laffey
On Mon, 12 Feb 2001, Randy Layman wrote: --- ResultSet rs = stmt.execute(sql); String userId = rs.getString("userid"); String status = rs.getString("accountStatus"); Your code

RE: rs.next() problems with mm.mysql/JDBC 2

2001-02-12 Thread Le, Paul
look like your query result set contain only one record. If this is the case, then you need to move the cursor to the first record. Otherwise you are right you need to put your code inside the while loop -Original Message- From: Cato, Christopher [mailto:[EMAIL PROTECTED]] Sent: Monday,

RE: Tomcat 3.2 throwing a VerifyError at me

2001-02-12 Thread CPC Livelink Admin
An easy way to find it is to introduce an error in the JSP and look at Jaspers error message, which includes the full path to the file. -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 9:38 AM To: [EMAIL PROTECTED] Subject: RE: Tomcat 3.2

RE: mod_jk on Tru64 kills Apache

2001-02-12 Thread Varela Santoalla, Daniel
Are you sure mod_jk.so is linking with libpthreads.so library? I don't remember which is the name in Tru64 (libpthreads.so or libpthread.so). You can check with "ldd mod_jk.so" or equivalent. If not, you should have to alter the Makefile. I've not built mod_jk in Tru64, but the error you're

Can't get work jsp:useBeen scope = session in 4.0/b1

2001-02-12 Thread janis
Hello! I am running Tomcat4.0/b1 on Linux Red Hat 7.0 with Java 2 (jdk1.3) and connected to Apache with the connector mod_webapp. I seems to me that setting the scope to session for a bean (jsp_useBean scope="session" does'nt take any effect. By setting the scope to the application session

RE: Impossible parameter names (page, pageSize, field)

2001-02-12 Thread Chris Janicki
Yes Mr. GRUMPY-ASS, I did check the archives, and the Faq-o-matic, and Sun. I only found references to the JSP implicit variables, of which "pageSize" and "field" are NOT. Does anyone in a more amiable mood have insight on this? Original Message On 2/12/01, 9:03:42 AM, Michael Wentzel

Re: rs.next() problems with mm.mysql/JDBC 2

2001-02-12 Thread Cris Perdue
In my code, there are quite a number of spots where I directly read a one-row response like follows: --- ResultSet rs = stmt.execute(sql); String userId = rs.getString("userid"); String status = rs.getString("accountStatus");

Re: Can't get work jsp:useBeen scope = session in 4.0/b1

2001-02-12 Thread Chris Janicki
Your browser has to accept cookies in order for sessions to work... verify your browser setup. Original Message On 2/12/01, 10:52:21 AM, janis [EMAIL PROTECTED] wrote regarding Can't get work jsp:useBeen scope = "session" in 4.0/b1: Hello! I am running Tomcat4.0/b1 on Linux Red Hat 7.0

Re: Tomcat Servlets IIS ASP ?

2001-02-12 Thread Rob Tanner
ASP is a tagging system integral to IIS. The language between the tags is Microsoft's proprietary VBScript (and I think you can also use VBasic, another Microsoft proprietary language). It also uses COM objects and other of Microsoft's proprietary concoction. Nothing about ASP is Java. I

RE: *** Generated Tomcat Temporary Class File Name Seem TooLong. .. Yes ***

2001-02-12 Thread John Golubenko
Well, you may heard that Tomcat is GNU project. Just get the source code, modify it, and compile your own copy of Tomcat! What's the deal? -Original Message- From: Xavier [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 1:45 AM To: [EMAIL PROTECTED] Subject: RE: *** Generated

RE: Impossible parameter names (page, pageSize, field)

2001-02-12 Thread Michael Wentzel
PFS to me. There's a pretty widely used syntax of using package syntax for your session objects(page.size). --- Michael Wentzel Software Developer Software As We Think - http://www.aswethink.com mailto:[EMAIL PROTECTED] - To

tomcat only executes certain beans

2001-02-12 Thread Trish
i have installed tomcat 3.1.1 on SPARC/Solaris 7 platform. everything is working fine except that the application i am trying to run/test gives an error: org.apache.jasper.JasperException: Cannot find any information on property 'UserId' in a bean of type 'com.ppd.beans.CrfUser' CrfUser is a

RE: Can't get work jsp:useBeen scope = session in 4.0/b1

2001-02-12 Thread Narayanan
No Chris If cookies are not accepted automatically thru URL rewriting the contents are transfered U Just disable cookies and make a program this will work 100 % ...cos we can't expect all to enable cookies and we faced this problem in our project and we found that it is automatically

RE: Impossible parameter names (page, pageSize, field)

2001-02-12 Thread John Golubenko
Heh... he's really the one you called him... Michael, if you got problems, go somewhere else, this is not the place to do this. If you don't like the posts here, please unsubscripte from this mailing list, by sending your email to [EMAIL PROTECTED] I hope I won't see you crappy replies again in

RE: Using a servlet superclass

2001-02-12 Thread Samson, Lyndon [IT]
Well no simple solutions will do exactly what you want. There is nothing special about the init method in java. It might be nice if the servlet container promised to walk up the class hierachy calling each init as it goes but thats not how it works. But you could; 1.Use the java debugging

Re: *** Generated Tomcat Temporary Class File Name Seem TooLong. .. Yes ***

2001-02-12 Thread Alex Fernández
Where did you get the idea that Tomcat is a GNU project? It's an Apache project! The Apache license is quite less restrictive than GPL. You can use the code in a commercial project, you don't have to redistribute your changes. Please read the license that came with your package carefully -- it

Re: jar-file

2001-02-12 Thread John Ahrens
On Mon, 12 Feb 2001, you wrote: How i can make the jar file from a class file. jar cvf foo.jar foo.class where: foo.jar is the name of the jar file you wish to create. foo.class is the class file you want to incorporate. go to http://java.sun.com and search on jar for more details on

WebdavServlet

2001-02-12 Thread Duncan McGregor
I'm interested in extending WebdavServlet to give directory-like access to a compound video file format we're developing, allowing the file to be treated like a directory of scenes, themselves composed of shots. So I'll serve the file and scenes as DAV containers, and generate the data for

old problem with mod_jk.so

2001-02-12 Thread mikhail malamud
I had been searching archives for the past two days. This problem pops up both with Linux and FreeBSD. I still cant find the solution. After compiling compiling mod_jk.so from 3.2.1 source files and adjusting httpd.conf, I receive following error when trying to start Apache. ** Cannot

Re: tomcat only executes certain beans

2001-02-12 Thread William Brogden
Trish wrote: i have installed tomcat 3.1.1 on SPARC/Solaris 7 platform. everything is working fine except that the application i am trying to run/test gives an error: org.apache.jasper.JasperException: Cannot find any information on property 'UserId' in a bean of type

RE: *** Generated Tomcat Temporary Class File Name SeemTooLong. .. Yes ***

2001-02-12 Thread John Golubenko
Don't worry, I've read it. Here is the copy for you, if you didn't. There is clearly written that you can modify the source code, and redistribute or use it. Just like I said in previus email, that it's legal to modify the source code, (file name generation) and compile it back. While it's

RE: old problem with mod_jk.so

2001-02-12 Thread GOMEZ Henri
I had been searching archives for the past two days. This problem pops up both with Linux and FreeBSD. I still cant find the solution. After compiling compiling mod_jk.so from 3.2.1 source files and adjusting httpd.conf, I receive following error when trying to start Apache. ** Cannot

Re: mod_jk on Tru64 kills Apache

2001-02-12 Thread Bill Antoniadis
Hi, Unfortunetly ldd is not supported in the standard install of Tru64, but I am compiling and linking pthreads via "-Wc, -pthread" for compile and "-Wl, -lpthread" for the link. Regards, Bill Antoniadis Are you sure mod_jk.so is linking with libpthreads.so library? I don't remember which

RE: Tomcat Servlets IIS ASP ?

2001-02-12 Thread Grobe, Gary
Let me explain in a little more detail my question. I have servlets that insert code into responses (using filters) and I'd like to know if my client is using an ASP on IIS, will I be able to catch the response and insert my html code in that response? Also, will I be able to get requests also

RE: Tomcat Servlets IIS ASP ?

2001-02-12 Thread Michael Wentzel
I have servlets that insert code into responses (using filters) and I'd like to know if my client is using an ASP on IIS, will I be able to catch the response and insert my html code in that response? Also, will I be able to get requests also before IIS has start processing that ASP?

Re: *** Generated Tomcat Temporary Class File Name SeemTooLong. .. Yes ***

2001-02-12 Thread Alex Fernández
John, don't get jumpy. This is not one of your flame wars. GNU's Not Unix. Apache's not GNU. The Apache Group is not GNU. And the GPL (Gnu Public License) is not the Apache License. I was just trying to educate you: not all free software is GNU. There are several public licenses available

Context Manager - SocketException

2001-02-12 Thread Amir Nuri
Hi Does Anyone knows why what this exception means ???, and why do i get it ??? (I'm useing tomcat3.2) ContextManager: SocketException reading request, ignored - java.net.SocketException: Connection reset by peer at java.net.PlainSocketImpl.socketAvailable(Native Method) at

Where to set the JAVA_HOME?

2001-02-12 Thread nickm
Hi: Where do you set the JAVA HOME in tomcat? I looked all over the place for this including the .conf file? Thanks, Stefan

RE: Where to set the JAVA_HOME?

2001-02-12 Thread Jefferson Oliveira Andrade
You do not set it in tomcat. It is am environment variable. You must set it in you operating system. Jefferson. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Sent: Monday, February 12, 2001 2:16 PMTo: [EMAIL PROTECTED]Subject: Where to set the

RE: *** Generated Tomcat Temporary Class File Name Seem Too Long... Yes ***

2001-02-12 Thread Samson, Lyndon [IT]
Hi Xavier I think its the total length of your path, not just the filename component. Perhaps you should chop out some intermediate directories. cheers -Original Message- From: Xavier [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 4:15 PM To: [EMAIL PROTECTED] Subject:

RE: Tomcat Servlets IIS ASP ?

2001-02-12 Thread John Golubenko
P.S. to Michael: Sure. If you don't know anything about it, don't waste internet bandwidth sending it. -Original Message- From: Michael Wentzel [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 8:35 AM To: '[EMAIL PROTECTED]' Subject: RE: Tomcat Servlets IIS ASP ? I have

Re: rs.next() problems with mm.mysql/JDBC 2

2001-02-12 Thread Tim Endres
First, I presume you meant to say executeQuery(), since execute() does not return a ResultSet. Second, the documentation is very clear for ResultSet. Your original code should have never worked in the first place. A call to next() is required to position to the first row. If the MM driver

RE: Where to set the JAVA_HOME?

2001-02-12 Thread Samson, Lyndon [IT]
You could of course set it first thing in your tomcat.[sh|bat] file... -Original Message- From: Jefferson Oliveira Andrade [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 6:14 PM To: '[EMAIL PROTECTED]' Subject: RE: Where to set the JAVA_HOME? You do not set it in

RequestIntercepter, Authentication Login Form

2001-02-12 Thread Drasko Kokic
Hi again, I have finished an implementation of the SingleLogin infrastructure protecting the whole heterogene multi site portal using RequestIntercepters and Servlet API 2.2 container based security. There are still two issues I would like to understand better: 1. The URI to the login page is

RE: *** Generated Tomcat Temporary Class File Name SeemTooLong.. . Yes ***

2001-02-12 Thread John Golubenko
Sorry, but that moron pisses me off. I'm not saying that I know everything. The only thing I was trying to say, is that it's possible to modify source of tomcat, so fix the naming problem. -Original Message- From: Alex Fernndez [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001

SSL response

2001-02-12 Thread David Oxley
I tried posting this question on Sunday, but got no response so here it is again: I am using Flash to make a https request to a servlet. Flash seems to send the request and it gets to the servlet, but it hangs when reading/getting the response. It works fine when getting a text file containing

RE: Where to set the JAVA_HOME?

2001-02-12 Thread John Golubenko
in /etc/profile add line set JAVA_HOME=/path/to/jdk; export JAVA_HOME on windows set %JAVA_HOME%=c:/jdk i believe, but i dont remember. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 9:16 AM To: [EMAIL PROTECTED] Subject: Where to

Tomcat 4.0 and clustering

2001-02-12 Thread Ranko Bijelonic
Hi, I searched through the archives and I did not find a clear answer on this. Does Tomcat 4.0 have any clustering support? Also, anyone has any metrics on how 4.0 performs? Thank you, Ranko THE INFORMATION CONTAINED WITHIN THIS E-MAIL TRANSMISSION IS INTENDED TO BE SENT TO THE NAMED

client authentication with tomcat ssl direct, how to?

2001-02-12 Thread Jeff Lansing
Hi, The tomcat-ssl-howto document is clear on how to set up a server certificate sufficient for server authentication, and evidently a number of people on this list have been able to get far enough with client authentication to see Internet Explorer show the empty Client Authentication dialog.

flame wars

2001-02-12 Thread qazwasyx
can we all please calm down and send ONLY TECHNICAL messages to this list, it's high volume as it is! Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Re: Where to set the JAVA_HOME?

2001-02-12 Thread Pete Ehli
You don't have to bother with environment variables to run tomcat via windows - just go to this website and your starting and stopping problems in tomcat are solved! http://www.geocities.com/jdrudnicki/ -- Pete -- - Original Message - From: "John Golubenko" [EMAIL PROTECTED] To: [EMAIL

Please send me your step-by-step-doc, too

2001-02-12 Thread Philipp Zuderell
I'd like your Step-by-step-Doc, too. Thanks a lot... Phil -- mailto:[EMAIL PROTECTED] - To unsubscribe, e-mail:

RE: Where to set the JAVA_HOME?

2001-02-12 Thread Nael Mohammad
In the tomcat.sh fie, place an entry : JAVA_HOME=(java_home directory) -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Sent: Monday, February 12, 2001 9:16 AMTo: [EMAIL PROTECTED]Subject: Where to set the JAVA_HOME? Hi: Where do you set the JAVA

JDeveloper 3.2 and mod_jk

2001-02-12 Thread web . dev
Hi, We have a problem with Apache 1.3.14 + Tomcat 3.2.1 (with mod_jk) on WinNT 4. Example "Webapp" works fine, but if we deploy our beans and JSP with Oracle Jdeveloper 3.2 under a new Webapp created in server.xml file, an error occurs:

getInitParameter Error

2001-02-12 Thread RK
Hi: I am trying to get the following entries from web.xml. context-paramparam-nameDriverName/param-nameparam-valueorg.gjt.mm.mysql.Driver/param-value/context-param I am using the following apis to get the DriverName. public void init(ServletConfig scon) { super.init(scon);

Re: getInitParameter Error

2001-02-12 Thread Jeff Lansing
Hi, It looks like you might have a version of servlet.jar that doesn's corrsepond to the documentation you're using. Jeff RK wrote: Hi: I am trying to get the following entries from web.xml. context-param param-nameDriverName/param-name param-valueorg.gjt.mm.mysql.Driver/param-value

RE: Tomcat/Apache.

2001-02-12 Thread Ritwick Dhar
Deepa, If you are looking for documentation, you'll find them here: http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/index.html, although I suspect you know this already. This is also bundled in the Tomcat distribution. If you simply want to run JSPs, you don't *have* to use Apache.

Servlet runtime errors

2001-02-12 Thread Ashant Chalasani
Hi everyone, I'm trying to get a simple Java servlet load through Tomcat 3.2.1 but get the following error. Has anyone encountered this before? Could one please suggest a remedy. java.lang.NullPointerException at java.lang.ClassLoader.resolveClass0(Native Method) at

Re: Using a servlet superclass

2001-02-12 Thread Dale Thatcher
Hi, A quick comment on this technique. You must be careful when setting variables in the childClass if you call the init method from the constructor. For example the following code produces unexpected results: class Child extends Parent { int value1 = 0; int value2; public void

Re: faq-o-matic

2001-02-12 Thread Dale Thatcher
Hmm, sorry I missed it but shouldn't this be in the /doc/faq supplied with Tomcat? thanks, - Dale On Mon, Feb 12, 2001 at 12:20:14AM -0500, Gilles Laborderie wrote: Check http://jakarta.apache.org/site/faqs.html for a faq-o-matic Gilles On Mon, 12 Feb 2001, Dale Thatcher wrote: Hi,

RE: refresh/flush logs question

2001-02-12 Thread Cox, Charlie
Title: RE: refresh/flush logs question You did not mention the platform, but if you are on unix, you can use cp /dev/null tomcat.log to 'null' out the logfile. This sets the file to be 0 bytes without interrupting the process using it. Most processes do not have a problem with this. But

Here you have, ;o)

2001-02-12 Thread Charles Lee
Hi: Check This! AnnaKournikova.jpg.vbs - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Virus Alert

2001-02-12 Thread virusmaster
ISVW:[EMAIL PROTECTED]$B$+$i$"$J$?$X$N%a!<%k$K%&%$%k%9(B(VBS_KALAMAR.A)$B$rH/8+$7$^$7$?!#(B - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

InterScan NT Alert

2001-02-12 Thread testns
Receiver, InterScan has detected virus(es) in the e-mail attachment. Date: Mon, 12 Feb 2001 20:34:40 +0100 (Romance Standard Time) Method: Mail From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] File: AnnaKournikova.jpg.vbs Action: deleted Virus: VBS_KALAMAR.A

InterScan NT Alert

2001-02-12 Thread Virencheck
Receiver, InterScan has detected virus(es) in the e-mail attachment. Date: Mon, 12 Feb 2001 20:30:33 +0100 (W. Europe Standard Time) Method: Mail From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] File: AnnaKournikova.jpg.vbs Action: clean failed - deleted Virus: VBS_KALAMAR.A

Antigen found VBS/SST virus

2001-02-12 Thread ANTIGEN_SCOOBY
Antigen for Exchange found AnnaKournikova.jpg.vbs infected with VBS/SST virus. The file is currently Deleted. The message, "Here you have, ;o)", was sent from Charles Lee and was discovered in IMC Queues\Inbound located at Brightspark/BSPARK-MAIN/SCOOBY.

holy molely

2001-02-12 Thread Phillip Kuzma
since everyone knows.. i'm going to tell everyone anyway.. that message that charles' virus sent out to everyone on the list is indeed a virus. Don't open it. Moderator's of the list maybe should ban all emails containing .vbs files. -- CONFIDENTIALITY NOTICE This electronic mail

  1   2   >