non ascii characters in URL

2001-10-19 Thread Haresh Gujarathi
I am using tomcat 3.2.1. I have a url as follows http://emantra/familytree/test/testfrm.jsp?name=öäÖÄ&address=öäÖÄ When the JSP page starts processing; I call request.getParameter("name"). This returns empty string I call request.getParameter("address"). This returns null string . ( meaning "add

Re: Debugging in Tomcat 4

2001-10-19 Thread Micael Padraig Og mac Grene
Why don't you build a logger? That is simple to do and can give you whatever you want. Every coder should have a few in his or her toolkit anyway. If you don't want to build one, there are oodles on the market and laying around for free. Don't know what kind of code you are writing, but it sho

Debugging in Tomcat 4

2001-10-19 Thread Dr. Evil
This is very painful. The log() facility is great... in classes which have the appropriate servlet packages imported. However, if I am using other classes which don't import those packages, then I don't have log(). System.out.println() doesn't display anything to console or any logs. Running

RE: TomCat 4.0 first time user

2001-10-19 Thread Philippe Khalife
Your systems seems to be running out of environment space, to allocate more Edit the C:\CONFIG.SYS and add this line: SHELL=C:\COMMAND.COM /E:4096 /P Now Restart Your System -Original Message- From: Amjad Salameh [mailto:[EMAIL PROTECTED]] Sent: October 19, 2001 6:25 PM To: [EMAIL P

RE: SingleThreadModel only giving 1 thread

2001-10-19 Thread Richard Troy
> That's incredibly frustrating as there are very valid cases where you need > to use the SingleThread model and still support more than 1 user. ...After reading my other post on this subject, please reply. If my other post didn't nail it, I want to know. I may have overlooked something, and I'd

Re: SingleThreadModel only giving 1 thread

2001-10-19 Thread Richard Troy
> > I'm using Tomcat 4.0 and have a servlet that implements SingleThreadModel. > > In every other app server I've tried (WebSphere & WebLogic) multiple > > instances of this servlet are created and handle concurrent requests. > > > > However, in Tomcat it only creates one instance of the servlet

I figured it out (was Re: Java datatypes question: the Set)

2001-10-19 Thread Dr. Evil
HashSet is what I want...

Java datatypes question: the Set

2001-10-19 Thread Dr. Evil
In the particular class that I'm working on, it would be extremely handy to have an unordered collection of unique objects (strings) which can grow as necessary. This sounds exactly like the Set class. However, Set is an abstract class, so I can't instantiate it. Are there any non-abstract clas

Re: SingleThreadModel only giving 1 thread

2001-10-19 Thread Remy Maucherat
> Edward Ivanovic at [EMAIL PROTECTED] wrote: > > > That's incredibly frustrating as there are very valid cases where you need > > to use the SingleThread model and still support more than 1 user. The > > SingleThreadModel is a necessary API - I don't think nothing horrible about > > it. As for

Re: SingleThreadModel only giving 1 thread

2001-10-19 Thread Pier Fumagalli
Edward Ivanovic at [EMAIL PROTECTED] wrote: > That's incredibly frustrating as there are very valid cases where you need > to use the SingleThread model and still support more than 1 user. The > SingleThreadModel is a necessary API - I don't think nothing horrible about > it. As for thread safe

RE: JDBC Realm/logout-problem with Netscape/Mozilla - Cookie needed?

2001-10-19 Thread Ignacio J. Ortega
> By the way: I have to enable cookies when using JDB Realm, > url-rewriting does not work. Is this normal? > You have to enable cookies because you use form login authentication in 3.2.3.. 3.2.3 does not have noCokies sessions implemented for the login form authentication.. You should go to

[FAQ] jGuru FAQ Update

2001-10-19 Thread Alex Chaffee
jGuru maintains FAQs and Forums on Servlets, JSP, and Tomcat (as well as many other Java topics). Here is an automated update on recent postings to Tomcat-related FAQs. Please direct flames and feedback to [EMAIL PROTECTED] . - Alex

Re: Tomcat 4.0.1 not loading dynamically generated classes from /webapp/WEB-INF/classes at runtime

2001-10-19 Thread Remy Maucherat
> That makes sense, I actually first try to load the class, and if it fails I > then generate class and try loading again. Basically I dont want to have to > generate all the time because the overhead is so high. > > Is this something you will fix in 4.0.2? As I said, I thought I had fixed it alr

RE: Tomcat 4.0.1 not loading dynamically generated classes from /webapp/WEB-INF/classes at runtime

2001-10-19 Thread Matt Small
That makes sense, I actually first try to load the class, and if it fails I then generate class and try loading again. Basically I dont want to have to generate all the time because the overhead is so high. Is this something you will fix in 4.0.2? Matt -Original Message- From: Remy Mauc

Re: Tomcat 4.0.1 not loading dynamically generated classes from /webapp/WEB-INF/classes at runtime

2001-10-19 Thread Remy Maucherat
> I just upgraded from Tomcat 3.3 to 4.0.1 and it looks like there has been a > behavior change in the Classloaders that is breaking me. > > At runtime I dynamically generate, compile and then load classes. I compile > the classes into the /webapp/WEB-INF/classes directory so that I dont have > t

Tomcat 4.0.1 not loading dynamically generated classes from /webapp/WEB-INF/classes at runtime

2001-10-19 Thread Matt Small
I just upgraded from Tomcat 3.3 to 4.0.1 and it looks like there has been a behavior change in the Classloaders that is breaking me. At runtime I dynamically generate, compile and then load classes. I compile the classes into the /webapp/WEB-INF/classes directory so that I dont have to worry ab

Can the isapi_redirect.dll be used for Tomcat 4.0?

2001-10-19 Thread Bigelow, Mark
If I change to point to the correct libraries in the new structure, can the old DLL be used?

RE: How to figure out which program is using port 8080

2001-10-19 Thread Josh Knowles
Try typing netstat at a dos prompt. ~josh -Original Message- From: Ylan Segal [mailto:[EMAIL PROTECTED]] Sent: Friday, October 19, 2001 4:14 PM To: [EMAIL PROTECTED] Subject: RE: How to figure out which program is using port 8080 How about stopping all services, and starting each one m

RE: How to figure out which program is using port 8080

2001-10-19 Thread Ylan Segal
How about stopping all services, and starting each one manually and checking after each service starts? Tedious work... Ylan. > -Original Message- > From: k savvy [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 19, 2001 4:49 PM > To: [EMAIL PROTECTED] > Subject: How to figure out whic

JDBC Realm/logout-problem with Netscape/Mozilla - Cookie needed?

2001-10-19 Thread tw . richter
Hi, I am running Tomcat 3.2.3 under Linux and (for test purposes) Windows NT. My application uses JDBC-Realm and form-based login. Everything works ok for IE, Opera and Konqueror (except a strange delay): I log in with user/password, work and then use a logout procedure as follows: (...) publ

How to figure out which program is using port 8080

2001-10-19 Thread k savvy
Hi, guys, Is there a way to check which program is running on port 8080? I have a system running tomcat4.0 with windows 2000 server. After I start tomcat, it always says the address is being used. When I changed to a different port number, it is running fine. I can use another port number, b

RE: SingleThreadModel only giving 1 thread

2001-10-19 Thread Edward Ivanovic
That's incredibly frustrating as there are very valid cases where you need to use the SingleThread model and still support more than 1 user. The SingleThreadModel is a necessary API - I don't think nothing horrible about it. As for thread safety, that's something programmers need to learn. But

Re: SingleThreadModel only giving 1 thread

2001-10-19 Thread Pae Choi
Craig, What does the "bazillion" mean? Would you explain in number? :-) Pae > > >On Fri, 19 Oct 2001, Edward Ivanovic wrote: > >> Date: Fri, 19 Oct 2001 17:31:03 -0400 >> From: Edward Ivanovic <[EMAIL PROTECTED]> >> Reply-To: [EMAIL PROTECTED] >> To: [EMAIL PROTECTED] >> Subject: SingleThreadM

RE: TomCat 4.0 first time user

2001-10-19 Thread Amjad Salameh
I have windows 95. I can't get Tomcat to start. this is what i am geting: C:\jakarta-tomcat-4.0\bin>startup Out of environment space Using CATALINA_BASE: .. Using CATALINA_HOME: .. Using CLASSPATH: Using JAVA_HOME: C:\jdk1.3.1_01 Bad command or file name C:\jakarta-tomcat-4.0\bin> --- "Miao

RE: how to change Tomcat default page

2001-10-19 Thread Miao, Franco CAWS:EX
thanks Edward! Franco -Original Message- From: Edward Ivanovic [mailto:[EMAIL PROTECTED]] Sent: Friday, October 19, 2001 2:54 PM To: [EMAIL PROTECTED] Subject: RE: how to change Tomcat default page Web.xml "Default Welcome File List" section -Original Message- From: Miao, Fra

Re: SingleThreadModel only giving 1 thread

2001-10-19 Thread Craig R. McClanahan
On Fri, 19 Oct 2001, Edward Ivanovic wrote: > Date: Fri, 19 Oct 2001 17:31:03 -0400 > From: Edward Ivanovic <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: SingleThreadModel only giving 1 thread > > I'm using Tomcat 4.0 and have a servlet that implements Sin

RE: TomCat 4.0 first time user

2001-10-19 Thread Miao, Franco CAWS:EX
start Tomat in service manager if in NT. Franco -Original Message- From: Amjad Salameh [mailto:[EMAIL PROTECTED]] Sent: Friday, October 19, 2001 3:15 PM To: [EMAIL PROTECTED] Subject: TomCat 4.0 first time user Hi all, I am first time user of Tomcat. I just did two things. first, i I

TomCat 4.0 first time user

2001-10-19 Thread Amjad Salameh
Hi all, I am first time user of Tomcat. I just did two things. first, i Installed jdk1.3.1_01 in my C:\jdk1.3.1_01 directory and 2nd thing, i installed jakarta-tomcat-4.0 in C:\jakarta-tomcat-4.0 directory. but i have a problem. i can't start the Tomcat. i need to know how to set paths or classp

Re: IIS - virtual directory issue w/Tomcat

2001-10-19 Thread Michael Risch
I think your app and your virtual directory have to match, or you have to set up a virtual dir in Tomcat where javatest points to examples, and your uriworkermap.props file has a /javatest entry. Here's why: Isapi_redirect.dll is passing judgement on /javatest. It doesn't care what IIS has a

Re: TomCat and IIS

2001-10-19 Thread Michael Risch
I just solved this very problem with help from the list, and have been told I am now the official answerer on this problem ;) Did you both a) add to the ISAPI dialog in internet service manager and b) add isapi_redirect.dll in the registry under Filter DLL's? That is what the docs say, but i

RE: how to change Tomcat default page

2001-10-19 Thread Edward Ivanovic
Web.xml "Default Welcome File List" section -Original Message- From: Miao, Franco CAWS:EX [mailto:[EMAIL PROTECTED]] Sent: Friday, October 19, 2001 5:33 PM To: '[EMAIL PROTECTED]' Subject: how to change Tomcat default page Hi Guys, how to change default page, for example from index.ht

how to change Tomcat default page

2001-10-19 Thread Miao, Franco CAWS:EX
Hi Guys, how to change default page, for example from index.html to default.jsp? in server.xml file or where? Thanks! Franco

SingleThreadModel only giving 1 thread

2001-10-19 Thread Edward Ivanovic
I'm using Tomcat 4.0 and have a servlet that implements SingleThreadModel. In every other app server I've tried (WebSphere & WebLogic) multiple instances of this servlet are created and handle concurrent requests. However, in Tomcat it only creates one instance of the servlet and other users must

Re: How to install Tomcat on MAC OS

2001-10-19 Thread Pier Fumagalli
Kiran Kumar K G at [EMAIL PROTECTED] wrote: > Hi, > > Can anybody tell me where can I get information ragarding installing > Tomcat on Mac OS. 9 or X ? Pier

How to install Tomcat on MAC OS

2001-10-19 Thread Kiran Kumar K G
Hi, Can anybody tell me where can I get information ragarding installing Tomcat on Mac OS. Kiran

IIS - virtual directory issue w/Tomcat

2001-10-19 Thread Todd Tyler
I've just installed Tomcat with the isapi_redirector for IIS, which is working great with the example jsp and servlet pages. I'm wanting to have IIS serve static content, having Tomcat serve only jsp and servlets. I've created a new IIS virtual directory called 'javatest' that points to my webapp

TomCat and IIS

2001-10-19 Thread ajfj
On the windows2000 server, the http://localhost/examples/jsp/index.html doesn´t work to IIS. The last line in the file C:\WINNT\system32\LogFiles\W3SVC1\ex011019.log is "2001-10-19 17:41:50 127.0.0.1 - 127.0.0.1 80 GET /jakarta/isapi_redirect.dll - 200 Mozilla/4.0+ (compatible;+MSIE+5.01;

Re: Reversed deployment configuration for mod_webapp...

2001-10-19 Thread Pier Fumagalli
jean-frederic clere at [EMAIL PROTECTED] wrote: >> Basically, if you're not careful enough, things are going to be screwed up, >> and you won't get what you want. > > - Sure I have tried to help several time in user list about this... You know what I mean :) >> One possible solution to the pro

Re: Apache with EAPI

2001-10-19 Thread Pier Fumagalli
Jean-Luc BEAUDET at [EMAIL PROTECTED] wrote: > Then i added a context in server.xml > > > debug="0" privileged="true"/> > > So the examples keep on runnin' OK and /cecile/my_servlet goes well > too. But nothing to do with my jsps Where did you add that declaration in server.xml

Re: Help with webapp module, Apache 1.3 and Tomcat 4.0

2001-10-19 Thread Pier Fumagalli
Craig Setera at [EMAIL PROTECTED] wrote: > Hoping someone can help me get this combination working correctly. > > I've downloaded the webapp module and Tomcat 4.0 RPMS and installed them on > my Redhat 7.0 Linux machine. The details of my install: > > Redhat 7.0 Linux > Apache 1.3.14 > mod_web

Re: apache 1.3.20 and .so files - problem persists.

2001-10-19 Thread Pier Fumagalli
Where did you get Apache 1.3.20? Was it compiled with -DEAPI? What about mod_webapp? Did you compile it or downloaded it from the distro site? Pier Brijesh Kumar at [EMAIL PROTECTED] wrote: > Resending again... please help. > > Brijesh. > > -Original Message- > From: Brijesh Ku

Re: TC4 apache1.3.20 mod_webapp - Errors

2001-10-19 Thread Pier Fumagalli
Kishor K at [EMAIL PROTECTED] wrote: > > hi, > > I have installed TC4.0.1 and Apache on Win NT. > Connected them using mod_webapp and Warp. > > Sometimes nothing comes and browser waits for the output. > But sometimes i am getting the following error. > ++ > Web

XML libraries

2001-10-19 Thread Joel P. Worrall
What libraries of Xerces are supposed to be used with Tomcat 4.0? I am getting the following exception. I assume it a library issue. It is keeping the JspServlet from starting... that's bad. java.lang.ClassCastException: org.apache.xerces.jaxp.DocumentBuilderFactoryImpl at javax.xml.pa

Re: WAR auto-deploy & context permissions

2001-10-19 Thread Pier Fumagalli
Carl Bacher at [EMAIL PROTECTED] wrote: > I'm trying to create contexts for the developers at my site by simply > posting the war file, eg. mycontext.war, in the webapps directory and > restarting tomcat, which creates and automatically extracts it to a > context directory named mycontext. > > I

Re: Security Question

2001-10-19 Thread Gerry Duhig
In server.xml, Context Manager, I have debug=0 and showDebugInfo=false. In the same file, all logging verbosity levels are set to "ERROR". These messages seem to be on stdout or sterr not a specific log file. Gerry - Original Message - From: "Darrell Porter" <[EMAIL PROTECTED]> To: <[E

WAR auto-deploy & context permissions

2001-10-19 Thread Carl Bacher
I'm trying to create contexts for the developers at my site by simply posting the war file, eg. mycontext.war, in the webapps directory and restarting tomcat, which creates and automatically extracts it to a context directory named mycontext. It works fine, but the permissions on the directories

Setting Cookies in Filters

2001-10-19 Thread pixel
I'm attempting to add a cookie to a user agent in a servlet filter. When a request comes in, i check the request and see if the cookie already exists. If it is not found, I generate a new cookie with a unique value and add it to the response object. What i'm finding is that the cookie's visi

RE: Tomcat uptime...

2001-10-19 Thread Chris Gross
Thanks everyone. I believe the error is caused by one of our components I just needed to make sure nobody else was encountering anything like it. -Original Message- From: Chris Gross [mailto:[EMAIL PROTECTED]] Sent: Friday, October 19, 2001 12:37 PM To: tomcatlist Subject: Tomcat upti

Heavy JServ configuration has to migrate to tomcat

2001-10-19 Thread mperreno
Here is my actual config in short: apache 1.3.12 with ApacheJServ ~140 virutal hosts 29 servlets zone 3 zones are mounted in httpd.conf (not from a tag) and they're accessible from every vhsot. some vhosts have one zone mounted, some have two Mounting points almost always consist of one dir (i.

Re: Win200 crashing with Tomcat 4

2001-10-19 Thread Barry White
That's one way to keep Windows from crashing! lol =) - Original Message - From: "Darrell Porter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 19, 2001 1:00 PM Subject: RE: Win200 crashing with Tomcat 4 > I had a Win2K server that was rebooting periodically for no app

deploying applications with similar names - problem

2001-10-19 Thread Gerry Duhig
I am using Tomcat embedded in JBoss: Versions: JBoss 2.2.2 Tomcat 3.2.2 I have two applications MyApp and MyAppWeb. I deploy both and all is well. I remove MyApp and MyAppWeb ceases to work. I have to redeploy it to make it work again. This becomes a problem when in normal use someone redeploy

RE: Tomcat uptime...

2001-10-19 Thread pero
our page (www.antaramusic.de) is using tomcat 3.2.1 and is up since february this year without even thinking of touching it :-). I agree with the others: poor coding and especially database-connection-stuff will cause parts of you app to stop working. If you use a connection-pool, try to find out

Re: I'm using Tomcat, do I also need Apache

2001-10-19 Thread Craig R. McClanahan
On Fri, 19 Oct 2001, Gerry Duhig wrote: > Date: Fri, 19 Oct 2001 18:06:32 +0100 > From: Gerry Duhig <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Re: I'm using Tomcat, do I also need Apache > > Can I ask a supplementary question please? > > We have a coupl

Re: Tomcat uptime...

2001-10-19 Thread Craig R. McClanahan
On Fri, 19 Oct 2001, Chris Gross wrote: > Date: Fri, 19 Oct 2001 12:37:22 -0400 > From: Chris Gross <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: tomcatlist <[EMAIL PROTECTED]> > Subject: Tomcat uptime... > > > How long do you guys go without restarting tomcat? I have a developer here

Re: To get back content from getRequestDispatcher()...

2001-10-19 Thread Craig R. McClanahan
On Fri, 19 Oct 2001, Lessault Jean-Luc wrote: > Date: Fri, 19 Oct 2001 16:03:50 +0200 > From: Lessault Jean-Luc <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> > Subject: To get back content from getRequestDispatcher()... > > > Hi! > > Is there

Re: [tyrex-dev] Tomcat 4.0 Tyrex configuration

2001-10-19 Thread William Au
Riad, Thanks for the info. I am using Tyrex with Tomcat 4.0. I do not see any Tyrex configuration file in the download of Tomcat 4.0. Where should this file be if I am to create one? Is there any documentation on how to use and configure Tyrex with Tomcat 4.0? Things seem to work but it is no

Re: Tomcat uptime...

2001-10-19 Thread Umar Syyid
Hi Chris, We have been running tomcat continuously for months and have had no issues whatsoever. We are running 3.2.2. I would think carefully about the reason for your errors it probably is not tomcat. -Umar. Chris Gross wrote: > > How long do you guys go without restarting tomcat? I have a

Re: Log Visitor's IP address?

2001-10-19 Thread Craig R. McClanahan
On Fri, 19 Oct 2001, Roy K. Mayr R. wrote: > Date: Fri, 19 Oct 2001 11:13:29 -0300 > From: Roy K. Mayr R. <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Re: Log Visitor's IP address? > > I Craig... > > In "localhost_access_log.-MM-DD.txt" I can find IP

Re: JDBC Realms

2001-10-19 Thread Craig R. McClanahan
On Fri, 19 Oct 2001, Mark Muffett wrote: > Date: Fri, 19 Oct 2001 13:27:54 +0100 > From: Mark Muffett <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: JDBC Realms > > In the standard server.xml for Tomcat 4, realms are defined at the > level. > > Is it possi

Re: I'm using Tomcat, do I also need Apache

2001-10-19 Thread Gerry Duhig
Can I ask a supplementary question please? We have a couple of applications that are a few html and JSP pages and a couple of servlets. Packing the whole lot up in ear files and deploying under JBoss-Tomcat is really nice and simple. Obviously then we are not using Apache because Tomcat is servin

Re: Réf. : I'm using Tomcat, do I also need Apache

2001-10-19 Thread Craig R. McClanahan
On Fri, 19 Oct 2001 [EMAIL PROTECTED] wrote: > Date: Fri, 19 Oct 2001 13:02:38 +0200 > From: [EMAIL PROTECTED] > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Réf. : I'm using Tomcat, do I also need Apache > > > Tomcat is used to serve servlets and JSPs. It can also serve stati

RE: Win200 crashing with Tomcat 4

2001-10-19 Thread Darrell Porter
I had a Win2K server that was rebooting periodically for no apparent reason. As it turns out, the problem was that the server had Automatic Recovery turned on in the BIOS (Compaq, HP and Dell servers have this feature) and disabling this feature stopped the inexplicable reboots. Check it out. D

RE: Logging from a servlet in Tomcat

2001-10-19 Thread Craig R. McClanahan
On Fri, 19 Oct 2001, Arnaud Héritier wrote: > Date: Fri, 19 Oct 2001 10:55:49 +0200 > From: Arnaud Héritier <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED], > "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> > To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> > Subject: RE: Logging from a servlet in

RE: Security Question

2001-10-19 Thread Darrell Porter
What is your debug level in the context? Darrell -Original Message- From: Gerry Duhig [mailto:[EMAIL PROTECTED]] Sent: Friday, October 19, 2001 9:34 AM To: [EMAIL PROTECTED] Subject: Fw: Security Question I am using Tomcat with JBoss and JBoss is handling security. Everything works fi

RE: Tomcat uptime...

2001-10-19 Thread Darrell Porter
I have 8 Tomcat 3.2.3 servers running on Win2K and reboot them approximately every 60 days due to scheduled maintenance (blowing the dust out, etc). I would suggest you examine the logs and find out why the 500 errors are being generated - often caused by database disconnects, poor coding practic

RE: Tomcat uptime...

2001-10-19 Thread Dan Silcox
We only bounce our server when we do a new deployment which so far has been in 1 to 3 month intervals -Original Message- From: Chris Gross [mailto:[EMAIL PROTECTED]] Sent: Friday, October 19, 2001 12:37 PM To: tomcatlist Subject: Tomcat uptime... How long do you guys go without restart

RE: Tomcat uptime...

2001-10-19 Thread Randy Layman
On one system with a moderate user load (10K requests a day or so) the system stays up as long as the underlying machine - about 30 days. On a small system we only restart Tomcat when we perform a software update, before the last update that was probably about 90 days. We never restart

Re: Logging from a servlet in Tomcat

2001-10-19 Thread Craig R. McClanahan
On 19 Oct 2001, Dr. Evil wrote: > Date: 19 Oct 2001 08:29:44 - > From: Dr. Evil <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Logging from a servlet in Tomcat > > > I have a question: It would be extremely useful for a servlet to be > able to record de

Re: Win200 crashing with Tomcat 4

2001-10-19 Thread Craig R. McClanahan
On Fri, 19 Oct 2001, Pae Choi wrote: > Date: Fri, 19 Oct 2001 01:44:13 -0700 > From: Pae Choi <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Re: Win200 crashing with Tomcat 4 > > This is real scary if Janek's story is true. Could the TC dev. team > confirm

Tomcat uptime...

2001-10-19 Thread Chris Gross
How long do you guys go without restarting tomcat? I have a developer here telling me that tomcat should be restarted every day or so. We have been getting error code 500s and he is saying that is because we need to restart tomcat?? We are running 3.2.3. -chris

Fw: Security Question

2001-10-19 Thread Gerry Duhig
I am using Tomcat with JBoss and JBoss is handling security. Everything works fine and each time a secured component is accessed I see two lines in the logs: User: name is authenticated User: name is authorized There are now thousands of these lines! How do I get rid of them? There are so many

Re: Custom Realm and Authenticator

2001-10-19 Thread Craig R. McClanahan
On Thu, 18 Oct 2001, Zoltan Grose wrote: > Date: Thu, 18 Oct 2001 23:52:01 -0700 > From: Zoltan Grose <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Custom Realm and Authenticator > > I've been working on a custom realm and have that working rather well > b

Re: Broken pipe message in tomcat.log

2001-10-19 Thread felix
Not sure if this is related or not. I'm getting broken pipe: [Wed Oct 17 08:56:01 2001] [error] [client 216.135.0.25] File does not exist: /home/httpd/html/unsub/ Hi, > > I'm using Tomcat 3.2 and I get the message: > > Context log: path="/rpm" Broken pipe /rpm/servlet/rpm.Login > Context log:

Re: AW: j_security_check

2001-10-19 Thread Craig R. McClanahan
On Fri, 19 Oct 2001, storck wrote: > Date: Fri, 19 Oct 2001 08:49:18 +0200 > From: storck <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED], [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: AW: j_security_check > > I have read in a mailing-list that it is not possible to access the > login.

Re: MOD_WEBAPP & Gzip'ed or Object Streams, Error: Invalid WARPpacket type for body

2001-10-19 Thread Pier Fumagalli
Philippe Khalife at [EMAIL PROTECTED] wrote: > > This is what I'm running. > > TC4, > Apache1.3.22 > Mod_webapp > > I'm having the same problem on Solaris, Linux, and Win2000 > > I have Servlet that produces output that is either HTML and browser bound or > to communicate with an Applet using

Re: regd classloader

2001-10-19 Thread Craig R. McClanahan
On Fri, 19 Oct 2001, simon wrote: > Date: Fri, 19 Oct 2001 09:16:26 +0900 > From: simon <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Re: regd classloader > > And would it be right to say: > > - Original Message - > From: "Craig R. McClanahan" <[EM

RE: How to use mod_jk between Tomcat 3.2.3 and Apache 1.3.22 under AIX 4.3.3

2001-10-19 Thread Ylan Segal
You can just download md_jk in binary form from the tomcat distribution, there should be a version there for eapi and no_eapi. Choose the appropiate one (I use eapi since my apache was compiled with mod_ssl built in, but don't know what you need). You can find the files at: http://jakarta.apache.

RE: Service for Tomcat3.2.3

2001-10-19 Thread Ylan Segal
I had the same problem days ago, and it was answered on the list. Edit your wrapper.properties file (usually in TOMCAT_HOME/conf) and ad -Xrs option to the last line, like this: . wrapper.cmd_line=$(wrapper.javabin) -Xrs -classpath $(wrapper.class_path) $(wrapper.startup_class) -config $(wrap

Getting a decent apxs under AIX5.1L

2001-10-19 Thread Bob . Draper
Hi all, I'm trying to get a decent apxs under AIX5.1L so's I can build mod_jk. When I run the basic Apache configure to build the first Makefile, I get the following error :- cd ..; gcc -DAIX=1 -U__STR__ -DAIX_BIND_PROCESSOR -DUSE_HSREGEX -DUSE_EXPAT -I. /lib/expat-lite `./apaci` -lm -o hel

MOD_WEBAPP & Gzip'ed or Object Streams, Error: Invalid WARP packet type for body

2001-10-19 Thread Philippe Khalife
This is what I'm running. TC4, Apache1.3.22 Mod_webapp I'm having the same problem on Solaris, Linux, and Win2000 I have Servlet that produces output that is either HTML and browser bound or to communicate with an Applet using Object input/output streams and it works fine using a gzip'd stream

Setting an APACHE VHOST to work with TOMCAT

2001-10-19 Thread Gustavo Lima
Hi All, I have an APACHE 1.3.14 with lots of vitual hosts using name virtual host anda the same IP. I have TOMCAT 3.2.3 with java 1.3 working fine in standalone mode and APACHE working with mod_jk. My problem is when I try to use APACHE to call jsp. I have an archive named xyzw.war tha

Service for Tomcat3.2.3

2001-10-19 Thread Tarun Agrawal
Hi I'm currently running jk_nt_service.exe for making Tomcat as a service. But as soon as a particular user logs out, Tomcat service automatically gets killed. Is it suppose to behave this way or am I doing something wrong? In Services, I made it "System Account" and Deselected "Allow service to

Re: Problems compiling mod_webapp on AIX

2001-10-19 Thread John Easton
So even though I've compiled using gcc, you think apxs is calling 'cc'? That could certainly explain why it breaks, we've found our version of IBM's compiler to be extremely flaky. How did you get it to compile without apxs? Nikola Milutinovic wrote: > Pier Fumagalli wrote: > > > This looks li

mod_jk between Tomcat 3.2.3 and Apache 1.3.22 under AIX 4.3.3 and maybe mod_webapp solution

2001-10-19 Thread Arnaud Héritier
Hi all !!! Reading old post from the list I found the answer of my problem in a post of Charles Epaillard which had a similar problem with mod_jserv. http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg19958.html So thanks a lot Charles. To all of us which had a similar problem with th

Re: Log Visitor's IP address?

2001-10-19 Thread Roy K. Mayr R.
I Craig... In "localhost_access_log.-MM-DD.txt" I can find IP address of proxy (many times). How I can get real IP address ?? Roy - Original Message - From: "Craig R. McClanahan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 17, 2001 4:19 PM Subject: Re:

RE: Problems compiling mod_webapp on AIX

2001-10-19 Thread Arnaud Héritier
Is anyone know this error with ld on AIX 4.3.3 : ld: 0711-244 ERROR: No csects or exported symbols have been saved. How can I resolve it ?? > -Message d'origine- > De: Nikola Milutinovic [SMTP:[EMAIL PROTECTED]] > Date: vendredi 19 octobre 2001 14:53 > À:[EMAIL PROTECTED] > Objet:

Re: Win200 crashing with Tomcat 4

2001-10-19 Thread pixel
I've noticed that several people are successfully using Tomcat with W2k and NT. We are slowly moving Tomcat 4 into our production environment. Currently, I am testing Tomcat in stand-alone mode. 1. Are you using Tomcat in stand-alone mode? If so, are you having any performance issues? 2. If yo

To get back content from getRequestDispatcher()...

2001-10-19 Thread Lessault Jean-Luc
Hi! Is there any way to get back the content from : getServletContext().getRequestDispatcher(/filename.jsp).forward(); (or include()) or to read results who appears in a browser. Thanks to all.

Re[2]: Win200 crashing with Tomcat 4

2001-10-19 Thread Jonathan Pierce
You may want to check the event viewer. Perhaps you have a hardware issue (i.e. Bad Memory Chip, Failing Disk) You also may want to check your file system with scandisk. Win2000 should not crash even if one application crashes. I'm using Tomcat4 on several Win2K servers in production that never c

Apache and Tomcat problem

2001-10-19 Thread The Duke
I have apache and tomcat 4.0 running. This works fine. But when I want to execute a servlet they both hang. The servlet is called in the with request.getContextPath() + /myServlet/*jsvr If only tomcat is up everything works fine. I think the problem is that the servlet isn't found. How can I

RE: WebApp: Error 500 (File: pr_warp.c Line: 434) -- bugzilla crossref

2001-10-19 Thread Geoff Howard
By the way, I believe this problem is related to a bug listed at bugzilla - http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3160 which was (I believe incorrectly) classified resolved invalid probably because the explanation is not very clear. I contacted the original poster of that bug and foun

Apache with EAPI

2001-10-19 Thread Jean-Luc BEAUDET
Hi all, Well the first question is not directly connected with Tomcat, but rather Apache 1.3.20 I'm runnin' under Solaris 8 on a sun4u box/server. i ftped the sources of Apache 1.3.20 and tried to compile such this way: #!/bin/sh # Installation de Apache 1.3.20 # Declaration des options

'Missing optional package Extension' problem

2001-10-19 Thread Alberto Turchetto
Hi, I'm using TOMCAT 4. I'm trying to run the http://www.wedgetail.com/jcsi/2.1.1/examples/JCSI-2.1.1-Examples-onlineCA.zi p example. This example is made to sign up user certificates in a CA context (developing a PKI). It is made of some servlets and html pages. The java files use security pack

Re: Problems compiling mod_webapp on AIX

2001-10-19 Thread Pier Fumagalli
Nikola Milutinovic at [EMAIL PROTECTED] wrote: > Pier Fumagalli wrote: > >> This looks like big troubles with your current compiler and linker rather >> than APXS, I really have no whatsoever clue... >> >> I'm working to see how to build the WebApp module without APXS, as a >> statically linked

Re: Beans howto?

2001-10-19 Thread Shiv Kumar MN
Hello, >> >> What's preferred? - Using JSP, Servlets and Beans together or just Servlets? >> It is a tough question to answer, each one us have our own reasons/justifications to use a particular technology/language. I wanted to clarify one point here, that is it is NOT required to have any of HT

Re: mod_webapp.so problems

2001-10-19 Thread Pier Fumagalli
Chris Huisman at [EMAIL PROTECTED] wrote: > Hello, > > I am having difficulties getting mod_webapp.so to work. After adding > LoadModule, and AddModule to the config file, and running apachectl > configtest I get the following results: > > Syntax error on line 237 of /usr/local/etc/apache/http

How to use mod_jk between Tomcat 3.2.3 and Apache 1.3.22 under AIX 4.3.3

2001-10-19 Thread Arnaud Héritier
Hi all! I've a problem concerning the use of mod_jk under AIX 4.3.3. I posted a mail on the list yesterday and Adam F told me to get the mod_jk.so for this plateform here : http://users.aber.ac.uk/aff9/tomcat/tomcat-3.2/aix/4.3.3/RS6000-ppc/ I did it but when I launch Apache I have the followi

Re: mod_webapp.so problems

2001-10-19 Thread Chris Gokey
Chris Huisman wrote: > Hello, > > I am having difficulties getting mod_webapp.so to work. After adding > LoadModule, and AddModule to the config file, and running apachectl > configtest I get the following results: > > Syntax error on line 237 of /usr/local/etc/apache/httpd.conf: > Cannot load

RE: Tomcat slow to shutdown on Solaris

2001-10-19 Thread Kemp Randy-W18971
Some questions for you: Are you running Solaris Sparc or Intel? What version of Solaris are you running? What JDK version and from what company are you running? What version of Tomcat are you running? How many processes are you running on your machine? What is your hardware platform (r

Using PoolMan with Tomcat 3.2.1

2001-10-19 Thread Barney Hamish
Has anyone out there been able to get PoolMan 2.0.4 to work with Tomcat 3.2.1 realm based authenitcation? I'm currently using PoolMan 2.0.4 with Tomcat 3.2.1. The problem arises when I try to use the PoolMan driver with the JDBC Realms. The PoolMan driver requires one to register the driver by c

  1   2   >