getting server host and port

2002-03-27 Thread William Shulman
Hello- I am trying to write code that gets the host and port of the running tomcat server. Anyone know how to do this? -will -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Question on reloading web-applications.

2002-03-27 Thread Tarun Ramakrishna Elankath
Hi List, I know that there are two ways of reloading web-applications in tomcat. One is to set the reloadable parameter to true in the Context tag. The other is to use the manager web application that comes with Tomcat. Suppose my web-application is on a production server (along

AJP13

2002-03-27 Thread Lee Kyon
Can someone point me to a site with an AJP13 or AJP12 Documentation? Thanks -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: tomcat4 with apache 1.3 on windows 2000

2002-03-27 Thread Will Hall
An alternative to mod_jk is the warp connection ( webapp_module). However, if the experience of myself and many others on this mailing list is anything to go by do not use it in a Tomcat 4.03, Apache 1.3, NT 4.n configuration. Tomcat hangs when serving anything other that the simplest of HTML

AW: sessions, security, and the RFCs

2002-03-27 Thread Ralph Einfeldt
I don't know if there is a spec that defines this behaviour. The problem is, that if you keep the same session id after you switch to https it is possible that somebody steals your secure session. The only information that is used to identify the session is the session id. As long as you talk

mod_webapp for Tomcat 3.2.4?

2002-03-27 Thread Søren Neigaard
Where do I find and download mod_webapp for Tomcat 3.2.4, and is there a difference between this version and the latest so that I cant use the latest? -- Med venlig hilsen/Best regards, Søren Neigaard mailto:[EMAIL PROTECTED] -- Sometimes I think we're alone in the universe, and sometimes I

Re: Tomcat 4 NT Service

2002-03-27 Thread Morten Bhmer
You can find the source code for this under jakarta cvs /jakarta-tomcat-connectors/jk Best regards On Wednesday 27 March 2002 06:55, you wrote: Hi , Where can I find the jk_nt_service.exe for Tomcat 4? Or can I reuse any older version of this exe. Thankx Karthik -- To unsubscribe:

AW: mod_webapp for Tomcat 3.2.4?

2002-03-27 Thread Ralph Einfeldt
AFAIK you can use mod_webapp only for tomcat 4.* For tomcat 3.* you have to use mod_jk. -Ursprüngliche Nachricht- Von: Søren Neigaard [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 27. März 2002 09:54 An: [EMAIL PROTECTED] Betreff: mod_webapp for Tomcat 3.2.4? snip/ Where do I

RE: Problem with mime types, nobody answers?

2002-03-27 Thread Héctor Garcia Peris
At 18:57 26/03/02, you wrote: You question isn't clear to me. Tomcat 3.2.x still includes a conf/web.xml, in the binary distribution, but it is no longer used for establishing web application default settings. I'm not sure at which point it stopped being used. As a result, the default settings

Re: AW: mod_webapp for Tomcat 3.2.4?

2002-03-27 Thread Søren Neigaard
Ok but where do I download mod_jk for FreeBSD then, I cant seem to find it? /Søren Wednesday, March 27, 2002, 10:02:46 AM, Ralph wrote: RE AFAIK you can use mod_webapp only for tomcat 4.* RE For tomcat 3.* you have to use mod_jk. -Ursprüngliche Nachricht- Von: Søren Neigaard

Tomcat 4.0.x and reloading of servlets without restarting server

2002-03-27 Thread faivre
Hello, Please forgive me if this question has been answered in the past, I've found mixed information. Can servlets be reloaded without restarting Tomcat? I've followed the docs and tried several different server.xml config files with no luck. If this has worked for anyone out there would you

RE: sessions, security, and the RFCs

2002-03-27 Thread Manuel Mall
I am not sure which RFC you are referring to. It appears to me that the Session semantic Tomcat should implement has nothing (directly) to do with cookies, etc.. Tomcat implements sessions because the Java Servlet specification requires it to do so. Shouldn't the question therefore be what

AW: AW: Multiple users share java bean?

2002-03-27 Thread Alexander Reifinger
First of all, thank you so much Alexander for taking the time to explain this so thoroughly. *bow* Now, since each JSP is essentially a servlet, how does the servlet perform the sharing of the javabean ? Does a servlet that shares a javabean (similar to the JSP case [d] above, where

AW: Multiple users share java bean?

2002-03-27 Thread Alexander Reifinger
I describe the work what I need to finish. First the jsp file gets a user name, then pass it to java bean. And the bean get some values from the database accoding to the user name, then get a result and save it to database. The idea of synchronized objects cannot work. I want to acitvate

SSL Client Certificates

2002-03-27 Thread Renato Romano
I need to setup client Auth by using SSL and certificates; I correctly set up Tomcat (4) for ssl, using the standard docs, but what i need to do now, is: 1) request the client to send a Certificate (clientAuth=true in the Factory Element) 2) Use the information in the certificate to authenticate

RE: Tomcat 4.0.x and reloading of servlets without restarting server

2002-03-27 Thread Carlos Martins
Hi Brian, I have this configured in my tomcat's server.xml file: Context path=/bus docBase=C:\Documents and Settings\cmartins\My Documents\Tech Dev\java\busJCEdit cookies=true debug=0 workDir=C:\Documents and Settings\cmartins\My Documents\Tech Dev\java\busJCEdit\tmp reloadable=true It seems

AW: Tomcat, Webapp, Apache and mod_ssl, Protocol is switching

2002-03-27 Thread Ralph Einfeldt
That sound like https://intra.home.de/examples/servlets/ is redirected to http://intra.home.de:443/examples/servlets/index.html To me this looks like a bug in the part of tomcat that is responsible for the redirection to the 'welcome file'. (The welcome file is implemented in tomcat as a

Server side reports printing

2002-03-27 Thread Amine AMAR
Hi all, I have a tomcat+struts based application and I need to have reports printed (orders, bills, ...) on remote printers configured on the server (my application controles which printers to use). I also need to do some batch printing. Do any of you have an idea or experience that he wants

can Tomcat call classes in JARs?

2002-03-27 Thread Carlos Martins
Title: can Tomcat call classes in JARs? Hello, Is it possible to have tomcat call servlets that are included in a jar file rather than simple class files located in the WEB-INF/classes folder? I'm trying this, by placing the jar file with the classes in that folder, but tomcat does not

Re: can Tomcat call classes in JARs?

2002-03-27 Thread Amine AMAR
can Tomcat call classes in JARs?You need to put your jar file in the WEB-INF/lib folder Amine - Original Message - From: Carlos Martins To: Tomcat (E-mail) Sent: Wednesday, March 27, 2002 10:01 AM Subject: can Tomcat call classes in JARs? Hello, Is it possible to

RE: can Tomcat call classes in JARs?

2002-03-27 Thread Reynir Hübner
place your .jar file in WEB-INF/lib and it will work you must call your servlet with full path (e.g. com.companyname.package.classname) in your url-path. http://server.com/servlets/com.companyname.package.classname/ if your servlet is not in a package http://server.com/servlets/classname/

Re: sessions, security, and the RFCs

2002-03-27 Thread Joel Rees
Ralph Einfeldt explained: The problem is, that if you keep the same session id after you switch to https it is possible that somebody steals your secure session. Yes, of course. (Sometimes I miss the obvious.) The only information that is used to identify the session is the session id. And

Look at this document (Was Re: can Tomcat call classes in JARs?)

2002-03-27 Thread Sriram N
--- Carlos Martins [EMAIL PROTECTED] wrote: Hello, Is it possible to have tomcat call servlets that are included in a jar file rather than simple class files located in the WEB-INF/classes folder? I'm trying this, by placing the jar file with the classes in that folder, but tomcat

FW: can Tomcat call classes in JARs?

2002-03-27 Thread Carlos Martins
Title: can Tomcat call classes in JARs? BINGO!! thank you very much - it's working fine now! (also my jar file was not properly built, but now it is - sorry - newbie!!) Anyway, a note to reynir: No need to address the full package in the URL - the secret is the servlet declaration made in

RE: can Tomcat call classes in JARs?

2002-03-27 Thread Reynir Hübner
sure what ever, if you want to map your servlets into web.xml you can do that, with any name if you like. bye -reynir -Original Message- From: Carlos Martins [mailto:[EMAIL PROTECTED]] Sent: 27. mars 2002 10:20 To: Tomcat (E-mail) Subject: FW: can Tomcat call classes in JARs?

RE: can Tomcat call classes in JARs?

2002-03-27 Thread Carlos Martins
Reynir, Do you find this method bad? are there perfomance issues? -Original Message- From: Reynir Hübner [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 27 de Março de 2002 10:23 To: Tomcat Users List Subject: RE: can Tomcat call classes in JARs? sure what ever, if you want to map

Re: AW: Multiple users share java bean?

2002-03-27 Thread camccuk
You guys are confusing me... At 10:52 27/03/2002 +0100, you wrote: Great, that's what I thought. But here's why I'm getting confused. The servlet tutorial says that a servlet is created once and once only (that's when the init() is run).

Chaging default port

2002-03-27 Thread Panayiotis Periorellis
I have installed apache tomcat 4.0a and iwas wondering how can I chage the default port which is currently 8080.. Regards panos -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

SV: AJP13

2002-03-27 Thread Klosa Uwe
Have a look at http://jakarta.apache.org/tomcat/tomcat-4.0-doc/config/ajp.html Uwe -Ursprungligt meddelande- Från: Lee Kyon [mailto:[EMAIL PROTECTED]] Skickat: den 27 mars 2002 09:48 Till: 'Tomcat Users List' Ämne: AJP13 Can someone point me to a site with an AJP13 or AJP12

RE: Chaging default port

2002-03-27 Thread Reynir Hübner
check out server.xml, change the port in the clause that looks like this : Connector className=org.apache.catalina.connector.http.HttpConnector port=8080 minProcessors=5 maxProcessors=75 enableLookups=true redirectPort=8443 acceptCount=10 debug=0

mod_jk for FreeBSD (was AW: mod_webapp for Tomcat 3.2.4?)

2002-03-27 Thread Joel Rees
Søren Neigaard asked: Ok but where do I download mod_jk for FreeBSD then, I cant seem to find it? http://jakarta.apache.org/tomcat/tomcat-3.3-doc/mod_jk-howto.html#s61 But if you get it here, you'll have to compile it. No problem, right? So I did a quick search for you at the freebsd site:

RE: AJP13

2002-03-27 Thread Lee Kyon
Thanks, does anyone know what the abreviation AJP stands for by the way? -Original Message- From: Klosa Uwe [mailto:[EMAIL PROTECTED]] Sent: Mittwoch, 27. März 2002 11:40 To: 'Tomcat Users List' Subject: SV: AJP13 Have a look at

Starting multiple Tomcat4 different than with Tomcat3?

2002-03-27 Thread Alessandro Vananti
Hi all, I want to start multiple instances of Tomcat4. I created two different server.xml files with different port numbers. I tried this solution with Tomcat3 and it works fine. With Tomcat4 it does not start. I get an error, kind of JVM bind, that usually one gets when the port is already in

AW: sessions, security, and the RFCs

2002-03-27 Thread Ralph Einfeldt
Unless you are in the secure mode it's unsafe to send the session id for the secure session. So how do you want to (re)establish the secure session? Using the unsecure session id is forbidden as it can be faiked. Using the secure id is forbidden, as at this point the communication is not

cvs

2002-03-27 Thread Dominic Parry
Hi Is there an easier way to get everything I need to build tomcat 4 from the csv repository other that getting all the required modules one at a time? Thanks Dominic Parry B.Sc (Information Systems, Computer Science) B.Sc (Hons) Computer Science Rhodes University -- To unsubscribe:

AW: AJP13

2002-03-27 Thread Ralph Einfeldt
AFAIK: Apache JServ Protocol -Ursprüngliche Nachricht- Von: Lee Kyon [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 27. März 2002 11:50 An: 'Tomcat Users List' Betreff: RE: AJP13 snip/ Thanks, does anyone know what the abreviation AJP stands for by the way? snip/ -- To

Re: failure notice

2002-03-27 Thread Pier Fumagalli
Nope... You mught have problems in stripping out the mailto:; part of the URL? :) Pier [EMAIL PROTECTED] Joel Rees [EMAIL PROTECTED] wrote: Are there problems with [EMAIL PROTECTED] ? Or perhaps the problem is Outleak Esspresso attaching mailto:; to the the to: header? -

Re: Question on reloading web-applications.

2002-03-27 Thread Fabian Sommer
Hi Tarun, One way would be provide every user a way to reload their web-application only, without granting access to the manager application (and thus without bothering the sys-admin). Or is there a parameter in Tomcat that checks whether the class files have changes every once in a

Re: Question on reloading web-applications.

2002-03-27 Thread Dominic Parry
Hi Tarun, One way would be provide every user a way to reload their web-application only, without granting access to the manager application (and thus without bothering the sys-admin). Or is there a parameter in Tomcat that checks whether the class files have changes every once in a

Exception during startup processing

2002-03-27 Thread Ron Lepine
I had tomcat4 running with IBMJava2-13 for about a month with no problems. Now it will not come up. I see the processes starting and then disappear. The error I'm getting is java.lang.reflect.InvocationTargetException: java.lang.NoClassDefFoundError: org/apache/naming/JndiPermission at

Re: Question on reloading web-applications.

2002-03-27 Thread João Augusto Charnet
Dominic Parry wrote: Hi Tarun, One way would be provide every user a way to reload their web-application only, without granting access to the manager application (and thus without bothering the sys-admin). Or is there a parameter in Tomcat that checks whether the class files

Parse Error in Tomcat Startup...

2002-03-27 Thread João Augusto Charnet
Every time a start TOMCAT I get the following error PARSE error at line 1 column 1 org.xml.sax.SAXParseException: The markup in the document preceding the root ele ment must be well-formed. Anyone knows what's wrong ??? Thanks a lot John.

AW: Tomcat, Webapp, Apache and mod_ssl, Protocol is switching

2002-03-27 Thread Schulze Christian
Well, to me it looks also like a bug in tomcat if a file index.html exists in https://intra.home.de/examples/ (an delployed Application) and it contains a line META HTTP-EQUIV=refresh CONTENT=0; URL=servlet/myapp or META HTTP-EQUIV=refresh CONTENT=0;

jasper tag pool 3.3

2002-03-27 Thread peter lin
Does anyone know who wrote the tag pool implementation for TC3.3? I am considering port/merging the TC3.3 tag pool code to TC4.0.x jasper. thanks. peter -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL

RE: jasper tag pool 3.3

2002-03-27 Thread Arnaud Heritier
you'd better post this query on the dev list. arnaud -Message d'origine- De: peter lin [SMTP:[EMAIL PROTECTED]] Date: mercredi 27 mars 2002 13:53 A:Tomcat Users List Objet:jasper tag pool 3.3 Does anyone know who wrote the tag pool implementation for TC3.3? I am

Tomcat service-- command line restart

2002-03-27 Thread Stephen Clarke
Hi, Does any kind person happen to have on the tip of his tongue the command line to restart Tomcat as a service in win2k? Many thanks. -- Best, Stephen Clarke -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL

New to Tomcat - Need Help!

2002-03-27 Thread Korakaki Stella
Hi! I was looking for a way to have a web server running serlvets so I tried Tomcat4. I know few about xml and the configurations are written in xml. I have a lot of questions: - How can I add a directory /icons just like in apache ? - What shall I write at the web.xml of each WEB-INF directory

RE: Tomcat service-- command line restart

2002-03-27 Thread Cato, Christopher
net stop tomcat net start tomcat ? -Original Message- From: Stephen Clarke [mailto:[EMAIL PROTECTED]] Sent: den 27 mars 2002 14:08 To: tomcat Subject: Tomcat service-- command line restart Hi, Does any kind person happen to have on the tip of his tongue the command line

Changing Default Port

2002-03-27 Thread Panayiotis Periorellis
I have installed apache tomcat 4.0a and iv was wondering how can I chage the default port which is currently 8080.. Looking forward to hearing from you Regards panos -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list:

Re: JSP TagLib Help...pleease

2002-03-27 Thread Chuck Amadi
Pavel Brun wrote: Hello all, Are there any people on this list who are experienced with custom taglib, especially, its lifecyle? Is there a website that might help me understand taglib's or is there some kind of a taglib forum? Please let me know. I am encountering problems. Thanks Paul

Multiple instances of tomcat

2002-03-27 Thread Vijay Kandy
Hello all, I have posted this once, but went unanswered. Can some one please help me? Iam having problems configuring multiple instances of Tomcat with Apache. I have 7 instances of Tomcat talking to Apache. But Tomcat is serving both HTML and Servlet content. I want Apache to serve HTML and

Re: Changing Default Port

2002-03-27 Thread rsequeira
Look for the port attribute of the Connector (HttpConnector) element in your server.xml. RS Panayiotis Periorellis [EMAIL PROTECTED] on 03/27/2002 07:20:19 AM Please respond to Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] cc: Subject: Changing Default

package org.apache.jasper.runtime does not exist

2002-03-27 Thread Chuck Amadi
Hey any takers Can't believe this i had this thing running once apon a time. At first i had a META-INF/taglib problem as it couldn't be located . Since checking the path of my taglib and created a taglib.tld in the META-INF . I know get this error

Re:package org.apache.jasper.runtime does not exist

2002-03-27 Thread Chuck Amadi
Hey pretty long error log. Anyway basically can't find package org.apache.jasper.runtime does not exist. _0002fregisterMySql_0002ejspregisterMySql_jsp_0.java [10:1] package org.apache.jasper.runtime does not exist import org.apache.jasper.runtime.*; ^

Re: New to Tomcat - Need Help!

2002-03-27 Thread rsequeira
First Tomcat has some excellent documentation to get started and running. I would advise you to have a look at it. Next see answers intermixed... Korakaki Stella [EMAIL PROTECTED] on 03/27/2002 07:04:58 AM Please respond to Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL

RE: Tomcat service-- command line restart

2002-03-27 Thread John Roth
You can do: net stop Tomcat net start Tomcat - assuming, of course that Tomcat is your service name. I have multiple instances on each server, so my names vary by which instance. John -Original Message- From: Stephen Clarke [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 27, 2002

AW: Tomcat, Webapp, Apache and mod_ssl, Protocol is switching

2002-03-27 Thread Ralph Einfeldt
Did you try my apache work around ? -Ursprüngliche Nachricht- Von: Schulze Christian [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 27. März 2002 13:43 An: 'Tomcat Users List' Betreff: AW: Tomcat, Webapp, Apache and mod_ssl, Protocol is switching (or any workaround) please let me

Please Ignore

2002-03-27 Thread Paul Brown
CUNT PISS TWAT FUCK BASTARD KNOB FANNY GIT PRICK WANKER BUGGER cunt piss twat fuck bastard knob fanny git prick wanker bugger I'm trying to get the list server to ban me This message contains confidential information and is intended only for the named individual and may not be disseminated

Who use Tomcat as a stand-alone server in production environment ?

2002-03-27 Thread Laurent Comte
I was very surprised to see how it's difficult to configure Tomcat with Apache and for now : I can't get no satisfaction ... But it seems to be very easy to install Tomcat and execute in stand-alone mode ... So I ask you : who use Tomcat as a stand-alone server in production environment ? Why

Hey any takers - Unable to load class org.apache.taglibs.jdbc.connection.ConnectionTag

2002-03-27 Thread Chuck Amadi
Hi there having problrms with this one Please note that i was able to get the dbtags running albeit i need to get a connection to MySql Database using the mm.mysql-2.0.4-bin.jar file that is also in my /WEB-INF/lib subdirectory of my web applicationbbnp. I assume that the dbtags Copy the dbtag

Process won't die

2002-03-27 Thread Martin Erlandsson
Hi List! I am running Tomcat 4.0.2 on Solaris. When Tomcat is shut down with the shutdown.sh script, it always leaves a process behind, which I have to kill manually. However, when starting it from the command line (catalina.sh run) and stopping it with Ctrl-C, the process dies OK. Has anyone

RE: Tomcat service-- command line restart

2002-03-27 Thread John Niven
-Original Message- From: John Roth [mailto:[EMAIL PROTECTED]] Sent: 27 March 2002 14:12 To: 'Tomcat Users List' Subject: RE: Tomcat service-- command line restart You can do: net stop Tomcat net start Tomcat - assuming, of course that Tomcat is your service name. I

Apache + Tomcat

2002-03-27 Thread Jarecsni Jnos
Hi, I use Apache in front of a Tomcat application. In Apache's config there's the following: RewriteRule !^/myAppContext(.*) - [C] RewriteRule (.*) http://bookline/myAppContext$1 [P] This works fine (I can omit the application context from the urls, Apache will supply it and proxyies

RE: JSP compile error when switching JDK to 1.4.0

2002-03-27 Thread Larry Isaacs
Based on discussions I have seen here, I believe your error implies that javac from your 1.3.02 is being invoked and it can't handle the new jar format found in rt.jar from 1.4.0. Try to make sure the tools.jar is coming from 1.4.0. Cheers, Larry -Original Message- From: Ganey, Todd

RE: Process won't die

2002-03-27 Thread Anthony Eden
Yes, I have seen the same problem running Tomcat 4.0.1 on Linux. In my case I believe it is due to threading issues - i.e. non-daemon threads are still running when Tomcat tries to exit. However I have not proven yet that this is the case. In fact I have switched the offending threads to

Re: Process won't die

2002-03-27 Thread Jean-Luc BEAUDET
Martin Erlandsson a écrit : Hi List! I am running Tomcat 4.0.2 on Solaris. When Tomcat is shut down with the shutdown.sh script, it always leaves a process behind, which I have to kill manually. However, when starting it from the command line (catalina.sh run) and stopping it with Ctrl-C,

RE: Problem with mime types, nobody answers?

2002-03-27 Thread Larry Isaacs
You can download the Servlet specs here: http://java.sun.com/products/servlet/download.html Tomcat 3.2.x implements the Servlet 2.2 spec. The conf/web.xml uses the same syntax as what would be used in a WEB-INF/web.xml, so you can cut and paste if you wish. An important point to remember is

Re: Who use Tomcat as a stand-alone server in production environment ?

2002-03-27 Thread todd tredeau
Look, it is really not that hard e-mail me with your platform and I'll tell you what to do for apache/tomcat configuration, if I can figure it out you can. todd http://www.wiserlabz.com collaborative effort to promote Novell and Open Source solutions Laurent Comte wrote: I was very

Access Denied when starting tomcat

2002-03-27 Thread James Rowe
Hello. I am having difficulty getting apache tomcat to work despite having followed appropriate instructions. When I start tomcat with Startup.bat (in Windows 98) an MSDOS window appears stating that it has set CATALINA_BASE, CATALINA_HOME, CATALINA_TMPDIR, and JAVA_HOME to the directories

AW: Tomcat, Webapp, Apache and mod_ssl, Protocol is switching

2002-03-27 Thread Schulze Christian
No mod_dir does not work, because mod_webapp first finds a match for /myapp , further processing of all /myapp/... is from now on not been done by apache. I also tried to manipulate with the Alias directive (like it is used for /icons/) but did not work either; probably the same reason as with

RE: Please Ignore

2002-03-27 Thread isaco
ROTFLMAO Now that's original g -Original Message- From: Paul Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 27, 2002 9:35 AM To: Tomcat Users List Subject: Please Ignore CUNT PISS TWAT FUCK BASTARD KNOB FANNY GIT PRICK WANKER BUGGER cunt piss twat fuck bastard knob fanny git

AW: Tomcat, Webapp, Apache and mod_ssl, Protocol is switching

2002-03-27 Thread Ralph Einfeldt
I see only following chances: - switch to mod_jk. - find and fix the bug in tomcat. - enter this problem in bugzilla and hope that a tomcat developer finds a solution. - write your own code to implement the 'welcome file' and disable the tomcat component. -Ursprüngliche Nachricht-

Re: getting server host and port

2002-03-27 Thread Bernhard Wraase
I am trying to write code that gets the host and port of the running tomcat server. Anyone know how to do this? In any good servlet book you will find information about: javax.servlet.http.HttpServletRequest.getServerName javax.servlet.http.HttpServletRequest.getServerPort -- Regards

Http Sessions and Browsers

2002-03-27 Thread Paul Kofon
Hi all, I know that a session can be killed by calling session.invalidate() in a jsp page. However, I'm not sure what happens when the browser is closed before the session is killed. Does the server (Tomcat, this time) still hold references to objects that had been created or are they

Re: Please Ignore

2002-03-27 Thread todd tredeau
Maybe you could ask if somebody knows who is in charge of the list and e-mail him/her. isaco wrote: ROTFLMAO Now that's original g -Original Message- From: Paul Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 27, 2002 9:35 AM To: Tomcat Users List Subject: Please Ignore CUNT

RE: Please Ignore

2002-03-27 Thread Paul Brown
i've done that several times + used the traditional (documented) mechanisms ovr the last 6 weeks with no luck. hence this desperate measure. -Original Message- From: todd tredeau [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 27, 2002 3:58 PM To: Tomcat Users List Subject: Re: Please

RE: Http Sessions and Browsers

2002-03-27 Thread Cato, Christopher
They are killed at session expiry. The browser does not tell the server that it exits so any and all objects are left hanging until the session expires. The session lifetime can be configured. I think default is 30 minutes? /Christopher Cato -Original Message- From: Paul Kofon

RE: Please Ignore

2002-03-27 Thread Stuart Stephen
alternatively you could email [EMAIL PROTECTED] using the email address that you have registered with -Original Message- From: Paul Brown [mailto:[EMAIL PROTECTED]] Sent: 27 March 2002 16:01 To: Tomcat Users List Subject: RE: Please Ignore i've done that several times + used the

Re: Basic authentication and Tomcat servlets

2002-03-27 Thread Jeff Larsen
If 'b' is not protected, then Apache will neither ask for authorization nor include authorization info in the request headers when a document in 'b' is requested. One thing you could try is to use a symbolic link to 'b' from 'a' so that /htdocs/a/b points to /htdocs/b. Then a request for

RE: Http Sessions and Browsers

2002-03-27 Thread Laurent Comte
All the informations bind to the session are destroyed when the session goes invalid. The session goes invalid when : 1/ You explicitly invalid it (session.invalidate()) 2/ or the session expires on the server, after a certain amount of time of inactivity (15 mns for example) from the client

Re: Please Ignore

2002-03-27 Thread todd tredeau
I got a message saying something was quaranteened, so at some point, I assume someone will see this.. Is the problem that you get an error or something, that what, explain what happens when you e-mail to unsubscribe. I did not, there is some spottines in the e-mail lists, and for instance, I

strange error..

2002-03-27 Thread Shashank
Hi ! I have a servlet A, that extends an abstract class that extends another class. I checked out every piece of code executing is correct. but when I create an object of this class A, it gives trange error, java.lang.ClassCastException: [Ljava.lang.Object; at

RE: Who use Tomcat as a stand-alone server in production environment ?

2002-03-27 Thread Laurent Comte
Hmm hmm ... Not so hard, but look at the messages of this group ... ;-) For the configuration, I tried both on Windows and Linux, but I don't want to go in details for now ... But my question was : Who use Tomcat as a stand-alone server in a production environment ? L.C. -Message

RE: strange error..

2002-03-27 Thread Randy Layman
Am I correct that your servlet doesn't extend javax.servlet.Servlet or javax.servlet.http.HttpServlet? If so, that is your problem - servlets must extend Servlet or one of its subclasses. Randy -Original Message- From: Shashank [mailto:[EMAIL PROTECTED]] Sent:

RE: Who use Tomcat as a stand-alone server in production environment ?

2002-03-27 Thread Randy Layman
-Original Message- From: Laurent Comte [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 27, 2002 11:17 AM To: Tomcat Users List Subject: RE: Who use Tomcat as a stand-alone server in production environment ? Hmm hmm ... Not so hard, but look at the messages of this group

Reloading Web Applications without manager and without reloadable=true

2002-03-27 Thread Tarun Ramakrishna Elankath
Hello all, I had asked this question previously without anybody understanding. I need to be able to reload my web-application *without* setting the reloadable=true parameter in the context tag, when I *dont* have access to the manager web-application. Why? This is because my

RE: Who use Tomcat as a stand-alone server in production environment ?

2002-03-27 Thread Anthony Eden
If I do not need SSL then I use Tomcat standalone. If I need SSL I use Apache + OpenSSL Tomcat with mod_webapp. Both configurations work fine. Sincerely, Anthony Eden -Original Message- From: Laurent Comte [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 27, 2002 11:17 AM To:

RE: JSP compile error when switching JDK to 1.4.0

2002-03-27 Thread Ganey, Todd
Bingo!! While the only javac.exe on my machine is for jdk1.4.0 the tools.jar was out of date. After copying tools.jar over from the jdk1.4 to the common/lib folder things worked smoothly. Thank you!! One last question though. Why does TomCat copy the file over (during an install) from the

RE: Who use Tomcat as a stand-alone server in production environm ent ?

2002-03-27 Thread John Niven
-Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: 27 March 2002 15:40 To: 'Tomcat Users List' Subject: RE: Who use Tomcat as a stand-alone server in production environm ent ? -Original Message- From: Laurent Comte [mailto:[EMAIL PROTECTED]]

WARP connector and TomCat 4.0.1 - bug?

2002-03-27 Thread John Wadkin
All, A Servlet I look after uses Eteks PJA ToolKit for fonts. I tried accessing a HTML page generated by the Servlet that uses the fonts: HTTP/1.1 200 OK Date: Wed, 27 Mar 2002 16:39:53 GMT Server: Apache/1.3.22 (Unix) Content-Type: text/html Keep-Alive: timeout=15, max=97 Connection:

RE: Multiple users share java bean?

2002-03-27 Thread Dahnke, Eric
If I comment out the init() method in my servlet do I get an instance of it for each request? Do people commonly do this? I suspect that if you do this Eric, it won't compile... It compiles fine, and works fine too. But I haven't testing it in a multiuser environment yet. -- To unsubscribe:

RE: Tomcat 4.0.x and reloading of servlets without restarting server

2002-03-27 Thread faivre
Thanks Carlos. Has anyone got servlet reloading working on Linux? Thanks, Brian Original Message From: [EMAIL PROTECTED] To: [EMAIL PROTECTED], Subject: RE: Tomcat 4.0.x and reloading of servlets without restarting server Date: Wed, 27 Mar 2002 09:55:22 - Hi Brian, I have

RE: WARP connector and TomCat 4.0.1 - bug?

2002-03-27 Thread John Wadkin
Forgot to mention: Solaris 8 JDK 1.2 Apache 1.3 TomCat 4.0.1 Warp connector Thanks, John -Original Message- From: John Wadkin [mailto:[EMAIL PROTECTED]] Sent: 27 March 2002 16:53 To: Tomcat Users List (E-mail) Subject: WARP connector and TomCat 4.0.1 - bug? All, A Servlet I look

Can't Start Tomcat 4.0

2002-03-27 Thread Andy McVicker
I'm a Tomcat newbie and I need some advice on getting Tomcat 4 started. Can someone help with the info I've provided below??? TIA Andy I've installed on NT Workstation (sp5): Apache 1.3.23 Tomcat 4.0 JDK 1.3.1.02 Problem: 1. http://localhost:8080 returns page not found. 2. When I run the

session management

2002-03-27 Thread Michael
Hi! I want to create a directory in my file-system for every new session - that's easy! (there I want to store large files belonging to that session!) Now I would like to get rid of the directories of older timed-out sessions!!! . It would be enough, if every time, when I have to create

session-id

2002-03-27 Thread Michael
Hi! (tomcat 3.3.1) How can I create my own session-ids??? I want my session-id to be a 10 digit number ... or a 10 uppercase-character word ... thanks michi -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list:

RE: Multiple users share java bean?

2002-03-27 Thread camccuk
--- Dahnke, Eric [EMAIL PROTECTED] wrote: If I comment out the init() method in my servlet do I get an instance of it for each request? Do people commonly do this? I suspect that if you do this Eric, it won't compile... It compiles fine, and works fine too. But I haven't testing it

Tomcat Bug while using different paths?

2002-03-27 Thread Fabian Sommer
Hello everybody! I've posted this about 30 hours ago, but perhaps noone noticed it because of lot's of different interesting topics. But if someone has an idea why it could be normal behaviour of Tomcat 4.0.1 and 4.0.3, running on win98 and JSDK1.3, to work fine using the examples context and

RE: session-id

2002-03-27 Thread Cato, Christopher
Either alter the TomCat source code or implement your own session-id's. I use a combination of userid, sessionid and current time in msecs to create a unique ID that I know is rather unlikely to be repeated. I use that ID for mapping entries in databases. The code I use is: // generate

Re: Please Ignore

2002-03-27 Thread Andrei POSTOLACHE
Well, if you have that much trouble doing this just firewall the mail server, or add a rule in procmail or whatever does the same in windows. It might solve the proble quicker. CUNT PISS TWAT FUCK BASTARD KNOB FANNY GIT PRICK WANKER BUGGER cunt piss twat fuck bastard knob fanny git prick

  1   2   >