session invalidate

2001-09-06 Thread BillWorker 2i Development Team
Hi, I have a login page which authenticates the user and sets an attribute in session using sessioin.setAttribute(). Then in all my projected pages I have included a checkLogin page with an include directive. checkLogin checks if the attribute is sent in the session. When I log out, I

Re: using a central repository for servlets

2001-09-06 Thread echaiguer abderrahim
That's exactly what I am look for. Abde At 08:31 PM 9/5/2001 -0300, Joao Carlos wrote: I've searched in many many many places an answer for this before asking. There are some answers, but it didn't get clear for me. I'm using JServ for a long time, and i'm trying, for a long time

RE: COMPAQ V300

2001-09-06 Thread Joe Sutherland (UKI)
Sorry Aravind... I should have stated that it was RH7.1 specific to the COMPAQ V300, as I have installed RH6.2 without any problems at all onto the same machine. I'm about to got through the install again on a different V300, and I'll note all component versions and see where the difference

Re: No one answering my question (security realted problem)

2001-09-06 Thread Anand B N
Sukhwinder, I've faced this problem before. It's got something to do with where your JAR's are placed in the classpath. If the class throwing this exception is somewhere inside tomcat's internal classes (webserver.jar) then move it to a place other than the default /lib folder and inclde it

Newbie - Mod_jk Config Questions w/ 2 Tomcats

2001-09-06 Thread Joel Fowler
I am attempting to configure two Tomcat (3.2.3) servers. One each for production and development environments. Because they support different requirements, I would like to keep them as isolated as possible. However, they will need to share the same Apache (1.3.19) web server. I plan to

To maintain jsp files session in a cacheWeb...

2001-09-06 Thread Lessault Jean-Luc
Hi, I'm working on CacheWeb and although I keep the main program(servlet) session(with HTTPsession object or cookies), I can't maintain jsp sessions passed in URL, and more precisly bean sessions associated to these jsp files. I would like to know if someone know how to solve this problem.

Error page for basic authentication

2001-09-06 Thread Harris, Darren
This question has been asked a couple of times but with no satisfactory answer. I'm running tomcat 3.2.3 and using basic authentication. How do I redirect to an error page if the user fails to authenticate? Currently a blank page is displayed. I have tried putting an error-page entry for 403

Antwort: Multiple Tomcat Instances

2001-09-06 Thread Stefan . Raschke
Hi If you need a custom config you can not use *auto for obvious reasons (it will be overwritten everytime tomcat starts) Copy it and include your copy. Of course you must do subsequent changes to the config yourself. (contexts, ...) Additionally you have to tell apache which workers to use

Tomcat 3.3b2 and mod_jk

2001-09-06 Thread Mark Muffett
I'm trying to get Apache to work with Tomcat 3.3b2. Apache is working and Tomcat works on its own (so a request through 8080 always works). My problem is that jsp pages requested through port 80 always come straight from Apache (so the jsp code is not processed) - so a request for

RE: context path with subdirectories in Tomcat 3.3 beta 2

2001-09-06 Thread Larry Isaacs
Thanks for finding this. I will investigate. In the meantime, please file a bug report in Bugzilla so we can track it. Bugzilla is found at http://nagoya.apache.org/bugzilla/. Thanks. Larry -Original Message- From: John Paul Lorenti [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

optimal config for tomcat

2001-09-06 Thread Stefan . Raschke
Hi there I know this question is a bit general. but I am very interested in which Sun Hotspot jvm options you are using to start up tomcat. (like -server -Xincgc ...) And what impact they had/have on performance. I am trying to tune garbage collection and performance and am a bit lost

RE: Multiple Tomcat Instances

2001-09-06 Thread Larry Isaacs
What you are trying to do isn't quite supported by Tomcat 3.2.x. The name of the auto-generated config file is not configurable, so the second Tomcat instance steps on the first's. I would recommend renaming the config file after starting each instance of Tomcat. Whenever a context is added or

Apache / mod_jk / Tomcat with Hardware SSL box?

2001-09-06 Thread Mike Roberts
Hi, My company currently use Apache / mod_ssl / mod_jk / Tomcat to support SSL in our application My SysAdmin department would like to switch our SSL handling to a dedicated hardware solution (eg http://www.intel.com/network/idc/products/accel_7115.htm) to take the SSL load off of our

RE: Apache + Tomcat Virtual Host not loading web.xml

2001-09-06 Thread Larry Isaacs
I don't think you have a servlet mapping until you add a servlet-mapping entry to your web.xml. I could be wrong, but I don't believe the Servlet spec guarantees you can access the servlet by name with just a servlet-name. That nitpick aside, I assume you are using Tomcat 3.2.x. Neither mod_jk

HANDLER THREAD PROBLEM

2001-09-06 Thread Juan Andres Sanin Pineda
Hi. I startup tomcat and every thing es ok. but when I try to access http://host:8007 in the host console view the follow IOException: HANDLER THREAD PROBLEM: java.io.IOException: Stream broken java.io.IOException: Stream broken at

RE: HANDLER THREAD PROBLEM

2001-09-06 Thread Martin van den Bemt
Your are doing a request to the port that talks to apache and tomcat talk to.. That is not a protocol like http, it is the ajp protocol.. You have to do a request to http://host or http://host:8080. Mvgr, Martin -Original Message- From: Juan Andres Sanin Pineda [mailto:[EMAIL

RE: Tomcat 3.3b2 and mod_jk

2001-09-06 Thread Larry Isaacs
Hi Mark, I think things are misconfigured. For the URL http://sota/index0.jsp, note that sota is all lowercase. I assume that Apache will use your VirtualHost sota to serve it. This virtual host is not connected to Tomat in any way. Thus, the JSP pages are coming straight out of DocumentRoot

The Problem

2001-09-06 Thread Ron Nicoletti Jr.
I've completed my installation of jakarta-tomcat-3.2.3 on windows 2000 running IIS, and ISA Server. The positives ... Tomcat starts and creates log files IIS is showing a green up arrow on isapi_redirect.dll The Negatives ... When I run a test on the link

TRaX Transform Throwable Exception

2001-09-06 Thread Evgeniy Strokin
HI I have big XML (24 kB) and I try to make transformation to HTML. And I get: javax.xml.transform.TransformerException: TRaX Transform Throwable But if XML not so big everything well. What this exception means? Thanks Jenya ---

RE: TRaX Transform Throwable Exception

2001-09-06 Thread Martin van den Bemt
Maybe it's better you ask the creators of the javax.xml package.. or step through the source (source is provided as far as I know..) Mvgr, Martin -Original Message- From: Evgeniy Strokin [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 06, 2001 4:55 PM To: Tomcat-User@Jakarta.

Re: using a central repository for servlets

2001-09-06 Thread Denis Haskin
Joao Carlos wrote: I simply want to migrate to tomcat using this kind of configuration. Many servlets have links to others servlets (written in code) using /servlets/any_servlet, so that's impossible to me to create a context and access the servlets using /context/servlet Is there

Re: Multiple Tomcat Instances

2001-09-06 Thread Denis Haskin
Abhijat Thakur wrote: I need to run multiple instances of Tomcat on Apache. As mentioned in documentation i have the two server.xml files specifying two different ports. Tomcat starts fine with the two server.xml files. I might be wrong when it comes to changes in Apache configuration that

charset Problem

2001-09-06 Thread Frank Lawlor
I was having a problem in that I could see Japanese text on my development system, but when I put the app on the main server, I could no longer see the Japanese text, but others could. I am using IE 5.5 browser. I finally tracked it down to the fact that the JSP compiler was generating

mac question from yesterday

2001-09-06 Thread Thomas Cherry
was the mac question posted yesterday ever answered?

Re: TC4.0b7 Apache webapp mapping problem

2001-09-06 Thread Pier Fumagalli
Jim Handwerk [EMAIL PROTECTED] wrote: I'm sure this is out there somewhere, but I'll be a monkey's uncle if I can find it. Is there a way to connect Apache 1.3 to TC4 so that particular web app will be default rather than an index.html. I currently have in my httpd.conf LoadModule

How download file from servlet?

2001-09-06 Thread Evgeniy Strokin
HI I trying make servlet for downloading of files. When I use: FileInputStream fl=new FileInputStream(dir); byte b[]=new byte[4096]; int len=0; ServletOutputStream souts=_response.getOutputStream(); while(len!=-1){ len=fl.read(b);

Re: mod_webapp build problem (Related to earlier mapping problemquestion)

2001-09-06 Thread Pier Fumagalli
Jim Handwerk [EMAIL PROTECTED] wrote: I managed to find an earlier missive in the archives about the problem I was having and Pier responded that there was a patch for the source. Whether this works or not, I'm still trying to find out. I can't seem to build the module with the instructions

Re: Another issue with tc4.0-b7 webapp and Apache 1.3.20 accessfiles in another location

2001-09-06 Thread Pier Fumagalli
Peter Shankey [EMAIL PROTECTED] wrote: Solaris sparc 8 Tomcat 4.0 b7 Apache 1.3.20 webapp module 1.0 for tc4.0-b7 I am trying to use a location to install the web application (war) files other than $CATALINA_HOME. Currently I am working with the default files which are installed when the

struts or tomcat 3.2.1 bug?

2001-09-06 Thread juraj Lenharcik
does anyone knows about a bug in tomcat 3.2.1 with struts? i mean there was a message few weeks ago, but i cant find it again. can someone give me a tip? the problem is, that i have an application under resin 2.0.2 running and when i put it on tomcat 3.2.1 it doesnt run. i get an exception:

Re: HP and Compaq Merger makes Linux a huge winner

2001-09-06 Thread Pier Fumagalli
Nael Mohammad [EMAIL PROTECTED] wrote: http://www.businessweek.com/investor/content/sep2001/pi2001096_399.htm Quoting: HPUX (Hewlett-Packard's version) and Tru64 (Compaq's entry), Sun's Solaris, and IBM's AIX. Except for Solaris, all are slowly losing market share. No one thinks proprietary

Re: mac question from yesterday

2001-09-06 Thread Pier Fumagalli
Thomas Cherry [EMAIL PROTECTED] wrote: was the mac question posted yesterday ever answered? Errr... I didn't see any mac-related question... Pier (typing on a mac!)

Re: Another issue with tc4.0-b7 webapp and Apache 1.3.20 accessfiles in another location

2001-09-06 Thread Pier Fumagalli
Peter Shankey [EMAIL PROTECTED] wrote: Solaris sparc 8 Tomcat 4.0 b7 Apache 1.3.20 webapp module 1.0 for tc4.0-b7 I am trying to use a location to install the web application (war) files other than $CATALINA_HOME. Currently I am working with the default files which are installed when the

Re: How download file from servlet?

2001-09-06 Thread Craig R. McClanahan
On Thu, 6 Sep 2001, Evgeniy Strokin wrote: Date: Thu, 6 Sep 2001 11:43:56 -0400 From: Evgeniy Strokin [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Tomcat-User@Jakarta. Apache. Org [EMAIL PROTECTED] Subject: How download file from servlet? HI I trying make servlet for downloading of

Re: newbie question

2001-09-06 Thread echaiguer abderrahim
Hi Craig I benefit you answer that mail to mention that I really find the doc for Tomcat confusing and really easy to follow. Compare to Jserv this is just a massive task you know. Jumping to the Tomacat world is full time job that why I have to postpone my migration. Just a constructive

Fallbacks for load-balanced mod_jk workers

2001-09-06 Thread Scott Jones
Hello, I am setting up a set of boxes as follows. There are two machines running Apache 1.3.19 and then there are three machines running tomcat 3.2.3. I have a worker linking each of the apache machines to each tomcat server (for a total of 6 tomcat instances). What I'm wondering is say for

Re: Tomcat 3.3b2 and mod_jk

2001-09-06 Thread Mark Muffett
Larry Thanks your your comments, but it gets worse and worse... I've tried to leave everything as auto-generated as possible. With an apps-sota.xml file like: Server Host name=sota Context path=/Sota docBase=webapps/Sota / /Host Host name=sota.silly.domain.net

RE: How download file from servlet?

2001-09-06 Thread Martin van den Bemt
There is already a _response.getWriter() or getOutputStream() before your code snippet Mvgr, Martin -Original Message- From: Evgeniy Strokin [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 06, 2001 5:44 PM To: Tomcat-User@Jakarta. Apache. Org Subject: How download file

Re: how to connect tomcat with apache running on different m/c

2001-09-06 Thread Scott Jones
You need to set up server.xml on the machine that will be running tomcat so that it'll be listening on whatever port. For example: Connector className=org.apache.tomcat.service.PoolTcpConnector Parameter name=handler value=org.apache.tomcat.service.connector.Ajp13ConnectionHandler/\

Re: struts or tomcat 3.2.1 bug?

2001-09-06 Thread Craig R. McClanahan
On Thu, 6 Sep 2001, juraj Lenharcik wrote: Date: Thu, 6 Sep 2001 17:36:36 +0200 From: juraj Lenharcik [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: struts or tomcat 3.2.1 bug? does anyone knows about a bug in tomcat 3.2.1 with struts? i mean there was a

Re: browsing web pages served by Tomcat 3.2.3 using a MACINTOSH ?

2001-09-06 Thread Pier Fumagalli
Henry Yeh [EMAIL PROTECTED] wrote: has anyone accessed webpages served by tomcat, using IE or Netscape ? I tried to access a simple JSP page served by tomcat 3.2.3 and in IE, I got back the page without images, and on Netscape I got the actual JSP file ! any ideas ? Never had a problem

Re: newbie question

2001-09-06 Thread Craig R. McClanahan
On Thu, 6 Sep 2001, echaiguer abderrahim wrote: Date: Thu, 06 Sep 2001 18:01:24 +0200 From: echaiguer abderrahim [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: echaiguer abderrahim [EMAIL PROTECTED] Subject: Re: newbie question Hi Craig I benefit you answer

Re: Fallbacks for load-balanced mod_jk workers

2001-09-06 Thread Simon Oldeboershuis
Hi Scott, if you are using apache you can do something like ErrorDocument 500 http://www.reliable-server.com/serverDown/message.html If any errors occurs with the connectors, the html page is shown or another failsafe tomcat ;-) I never tested it with more than one worker, but it should

Re: Fallbacks for load-balanced mod_jk workers

2001-09-06 Thread David Cassidy
What you might find the easiest is to use apache's ErrorDocument 500 url command very useful. If tomcat is down apache generates a 500 error. Apache can then intercept that and use a page ( static HTML/CGI/Other URL) to generate a 'we've gone walkies for a bit - back soon' type message David

Re: Tomcat 3.3b2 and mod_jk

2001-09-06 Thread Mark Muffett
Larry Thanks your your comments, but it gets worse and worse... I've tried to leave everything as auto-generated as possible. With an apps-sota.xml file like: Server Host name=sota Context path=/Sota docBase=webapps/Sota / /Host Host name=sota.silly.domain.net

RE: Tomcat 3.3b2 and mod_jk

2001-09-06 Thread Larry Isaacs
Mark, Sorry I overlooked a detail. Out of habbit, I included a context path for both contexts, /Sota. This meant that the correct URL would have been http://sota/Sota/index0.jsp. Instead, you want the Sota web application served as the root context for the two virtual hosts. For this, change

AW: struts or tomcat 3.2.1 bug?

2001-09-06 Thread juraj Lenharcik
hi craig, i couldn`t find a new exception message in logs. the situation is: the jsp is: logic:present name=successMessage centerh2 bean:message key=content.success//h2/centerbr table width=100% border=1 logic:iterate id=data name=content type=java.lang.Object

getting values from web.xml

2001-09-06 Thread BBui
Hi all, I need to get the values of the attributes in Tomcat's web.xml but I do not want to use servlet or javax.servlet.servletcontext. Can anyone tell me how to do this? Thanks, Baoha.

Re: HP and Compaq Merger makes Linux a huge winner

2001-09-06 Thread Tim O'Neil
At 08:46 AM 9/6/2001, you wrote: Nael Mohammad [EMAIL PROTECTED] wrote: http://www.businessweek.com/investor/content/sep2001/pi2001096_399.htm Quoting: HPUX (Hewlett-Packard's version) and Tru64 (Compaq's entry), Sun's Solaris, and IBM's AIX. Except for Solaris, all are slowly losing market

java.lang.SecurityException: sealing violation - jBuilder4

2001-09-06 Thread Raimee Stevens
I have been using jBuilder to develope servlets since JServ through Tomcat 3.2 and now with Catalina. This problem has never come up before ;) It seems that I am having some classpath issues. My jBuilder required libs include: Catalina libs (all jars under catalina home), a DB2 lib (jdbc

worker.properties swallows my first worker (mod_jk)

2001-09-06 Thread Hans Schmid
Hello, This is about mod_jk in Tomcat 3.3b1 on Solaris with Apache 1.3.19 It seems to me that the first worker found in the worker.list always gets created as ajp12 on port 8007 regardless what i configure. The following worker.list entry worker.list=worker.list=ajp12-01, ajp12-02, ajp13-01,

optimal SUN JVM config

2001-09-06 Thread Stefan . Raschke
Hi there the subject of my posting was a bit inacurate ;( I know this question is a bit general. but I am very interested in which Sun Hotspot jvm options you are using to start up tomcat. (like -server -Xincgc ...) And what impact they had/have on performance. I am trying to tune

non tomcat related question: Servlets

2001-09-06 Thread A.L.
I have a problem which I have asked in several forums and have received no response. Basically i have some code which needs to be debugged, but after spending hours and hours I am unable to figure out what is causing the problem. If anyone has some time to briefly look over my code, I will send

does tomcat have the cajones?

2001-09-06 Thread alex reuter
Hello Everyone, I have a general question about tomcat's cajones. What does everyone think about using tomcat as a mission critical servelet container? What version is best? What are its limitations? Performance issues? What kind of stability can be expected? We are currently using a

RE: worker.properties swallows my first worker (mod_jk)

2001-09-06 Thread Larry Isaacs
Hi Hans, The answers to your questions are: 1.) Why gets this hardcoded worker on port 8007 created? Don't know, I will investigate. 2.) Is this a Bug I shall report? Yes, and please attache the workers.properties in question. Thanks. Larry -Original Message- From: Hans

Re: optimal SUN JVM config

2001-09-06 Thread Bo Xu
[EMAIL PROTECTED] wrote: Hi there the subject of my posting was a bit inacurate ;( I know this question is a bit general. but I am very interested in which Sun Hotspot jvm options you are using to start up tomcat. (like -server -Xincgc ...) And what impact they had/have on

Re: mac question from yesterday

2001-09-06 Thread Thomas Cherry
somebody ask a question about images not showing up under a few mac browsers, and I wanted to know if this person solved the problem. It could have been two days ago, but I really thought that it was yesterday. - Original Message - From: Pier Fumagalli [EMAIL PROTECTED] To: [EMAIL

RE: Apache + Tomcat Virtual Host not loading web.xml

2001-09-06 Thread Neil Aggarwal
Larry: The JkMount is in the apache httpd.conf file, but the web.xml should be read by tomcat when it starts up. Apache is not even in the picture yet. I think the problem is that tomcat is either: 1. Not processing the web.xml. 2. Not finding the setup servlet. I dont think this has anything

Re: java.lang.SecurityException: sealing violation - jBuilder4

2001-09-06 Thread Raimee Stevens
Catalina's Classpath: D:\tomcat\jakarta-tomcat-4.0-b7\webapps\genNLV\WEB-INF\classes; D:\tomcat\jakarta-tomcat-4.0-b7\bin\bootstrap.jar; D:\tomcat\jakarta-tomcat-4.0-b7\server\lib\catalina.jar; D:\tomcat\jakarta-tomcat-4.0-b7\server\lib\warp.jar;

RE: Apache + Tomcat Virtual Host not loading web.xml

2001-09-06 Thread Larry Isaacs
Hi Niel, Sorry I didn't pickup that this was a load on startup problem. Cutting an pasting your settings into Tomcat 3.3's examples webapp reveals why web.xml is not being read (WebXmlReader has a validate parameter which defaults to true). A syntax error exists at:

I admit it -- I'm too lazy to read the documentation

2001-09-06 Thread Brent Hughes
I have the thing running... It only works on localhost:8080 though... I need to get rid of this 8080 thing. If you guys could point me to the right section of the docs it would be a big help. Thanks, Brent

Newbie question

2001-09-06 Thread Brown, Matthew A.
Hi- I'm new to tomcat- I've got jakarta-ant installed- and I've got tomcat working. I want to rebuild tomcat so that it supports SSL. I've got all of the SSL stuff needed-(per the how to configure SSL document) I just don't know how to rebuild the instance easily. Thanks in advance for any help

Tomcat 4, mod_webapp extension mapping

2001-09-06 Thread Giuliano Carlini
Hi, Under Tomcat 3.2 I can do a JkMount /*.xml to forward all - and only - requests for xml files to Tomcat. How can I do this with Tomcat 4.0? Thanks, Giuliano

How to get jk_nt_service to notice failed startup of my service?

2001-09-06 Thread Rida Ligurs
I've been using jk_nt_service successfully for some time now, but I've noticed that even if my servlet's init() throws a ServletException, the service still appears to have started successfully in the Services Manager. What do I have to do to get startup failure to be properly reflected in the

Re: Tomcat 4, mod_webapp extension mapping

2001-09-06 Thread Craig R. McClanahan
On Thu, 6 Sep 2001, Giuliano Carlini wrote: Date: Thu, 06 Sep 2001 12:08:28 -0700 From: Giuliano Carlini [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Tomcat 4, mod_webapp extension mapping Hi, Under Tomcat 3.2 I can do a JkMount /*.xml to forward all -

RE: I admit it -- I'm too lazy to read the documentation

2001-09-06 Thread Brent Hughes
I was just kidding I'm not really that lazy. I just thought someone would respond faster if I said that. I actually already tried to change the one in server.xml to port 80 before I sent the email. That was probably pretty stupid but I thought it might work anyway. A full text search of the conf

Re: I admit it -- I'm too lazy to read the documentation

2001-09-06 Thread Charles Webber
Depends what you're trying to do. If you just want Tomcat to work as web/servlet/jsp server, then you can change the port in server.xml in your conf directory and restart Tomcat. Tomcat is capable of serving static html as well as servlets and jsps. However, most people want this to work with a

RE: I admit it -- I'm too lazy to read the documentation

2001-09-06 Thread Curtis Dougherty
You have an additional file to change to make TOMCAT work on any port lower than 1024... -Original Message- From: Brent Hughes [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 06, 2001 8:40 AM To: [EMAIL PROTECTED] Subject: RE: I admit it -- I'm too lazy to read the documentation I

Question from a relatively new user: Minimizing the installation footprintof Tomcat

2001-09-06 Thread Anthony T Matsushita
Hi, I'm working on an embedded system using Linux as the OS. My group is currently evaluating technologies to use as a front end to our configuration software and would like a Web front-end. We're evaluating JSP versus Perl / CGI (maybe embPerl). I was wondering how to minimize Tomcat's

JNDIRealm working, but, I have a few problems

2001-09-06 Thread Jonathan Eric Miller
First off, I want to thank Craig for writing up those JNDIRealm instructions. Those worked great. That's exactly the information that I was looking for. I have JNDIRealm working using both clear-text and digest passwords. However, there are a few problems that need to be resolved before I will

RE: I admit it -- I'm too lazy to read the documentation

2001-09-06 Thread Cory Powers
Don't forget that you need to be root to open ports below 1024 for listening on Linux. -Original Message- From: Curtis Dougherty [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 06, 2001 4:39 PM To: '[EMAIL PROTECTED]' Subject: RE: I admit it -- I'm too lazy to read the documentation

Re: No one answering my question (security realted problem)

2001-09-06 Thread Sukhwinder Singh
It's unclear to me why you're recompiling tomcat. Why not just use a binary distribution? I've never compiled it from source... dwh Hello, I have also downloaded binary version of tomcat 3.2.3 but even that doesn't start. SS

Re: JNDIRealm working, but, I have a few problems

2001-09-06 Thread Craig R. McClanahan
On Thu, 6 Sep 2001, Jonathan Eric Miller wrote: Date: Thu, 6 Sep 2001 15:42:52 -0500 From: Jonathan Eric Miller [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Tomcat User List [EMAIL PROTECTED] Subject: JNDIRealm working, but, I have a few problems First off, I want to thank Craig

Re: non tomcat related question: Servlets

2001-09-06 Thread Dmitri Colebatch
sure - send it over, I'll have a little look. On Thu, 6 Sep 2001, A.L. wrote: I have a problem which I have asked in several forums and have received no response. Basically i have some code which needs to be debugged, but after spending hours and hours I am unable to figure out what is

Image file not found - why not ?

2001-09-06 Thread James Adams
I have a JSP which tries to load an image which is referenced by a URI which is set in the request by a servlet. img src=%= request.getAttribute(imageURL) % alt=IMAGE NOT FOUND Unfortunately this has never worked because Tomcat can never find the image. Perhaps I am using a bad URI ?

isapi_redirect problem (tc 3.2.3 / IIS5.0/ W2kpro)

2001-09-06 Thread Reynir Hübner
hi, I´m haveing the strangest problem. I´ve now tried to install the isapi_redirect 2 times, and I always end up with the same problem. Everything seems to be ok, I get the green arrow, I get the logfile (see below), and it almost works. I can call the tomcat with port 8080 all the time, but

Re: JNDIRealm working, but, I have a few problems

2001-09-06 Thread Jonathan Eric Miller
- Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: Tomcat User List [EMAIL PROTECTED] Sent: Thursday, September 06, 2001 4:45 PM Subject: Re: JNDIRealm working, but, I have a few problems On Thu, 6 Sep 2001, Jonathan Eric Miller wrote: Date: Thu, 6 Sep 2001

Multiple Tomcat Instances

2001-09-06 Thread Abhijat Thakur
Hi, I am trying to configure multiple(2) instances of tomcat with apache. For this i have to modify the server.xml file. Now i have made two server.xml files (server1.xml and server2.xml). For server1.xml file in the connectors i have HttpConnectionHandler listening on port 8080 and the

Re: optimal SUN JVM config

2001-09-06 Thread Denis Haskin
[EMAIL PROTECTED] wrote: I know this question is a bit general. but I am very interested in which Sun Hotspot jvm options you are using to start up tomcat. (like -server -Xincgc ...) And what impact they had/have on performance. I am trying to tune garbage collection and

Re: does tomcat have the cajones?

2001-09-06 Thread Denis Haskin
alex reuter wrote: Hello Everyone, I have a general question about tomcat's cajones. Er... I think you mean cojones. A cajon is a kind of percussion instrument. But we know what you mean grin... Okay, back on topic.

Re: New nt_service

2001-09-06 Thread Tim O'Neil
Can you sign those before you send em like that?

Re: I admit it -- I'm too lazy to read the documentation

2001-09-06 Thread Tim O'Neil
Or hire a consultant at $100 an hour to do it for you. At 11:38 PM 9/6/2001, you wrote: Since you are lazy, why stop with reading at all, just grep the config files for 8080 and hope it's the right one. - Original Message - From: Brent Hughes [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: HP and Compaq Merger makes Linux a huge winner

2001-09-06 Thread Pier Fumagalli
Tim O'Neil [EMAIL PROTECTED] wrote: At 08:46 AM 9/6/2001, you wrote: Nael Mohammad [EMAIL PROTECTED] wrote: http://www.businessweek.com/investor/content/sep2001/pi2001096_399.htm Quoting: HPUX (Hewlett-Packard's version) and Tru64 (Compaq's entry), Sun's Solaris, and IBM's AIX. Except

Re: New nt_service

2001-09-06 Thread Pier Fumagalli
Tim O'Neil [EMAIL PROTECTED] wrote: Can you sign those before you send em like that? There's nothing bad in sending a C file and an HTML zipped... C'mon :) Let's not get paranoid, at least he didn't send an executable... (BTW, Michael, next time, a patch to the current code will be way

Re: Tomcat 4, mod_webapp extension mapping

2001-09-06 Thread Pier Fumagalli
Giuliano Carlini [EMAIL PROTECTED] wrote: Hi, Under Tomcat 3.2 I can do a JkMount /*.xml to forward all - and only - requests for xml files to Tomcat. How can I do this with Tomcat 4.0? This will be done automatically for you by the WebApp module in its next release (Sunday, probably)

Re: Tomcat 4, mod_webapp extension mapping

2001-09-06 Thread Pier Fumagalli
Craig R. McClanahan [EMAIL PROTECTED] wrote: The all part is easy -- the only part is more interesting. When you are using mod_webapp, the current code forwards *all* requests under the specified directory name to Tomcat. However, the design goal is that the connector will look at the

Re: mac question from yesterday

2001-09-06 Thread Pier Fumagalli
Thomas Cherry [EMAIL PROTECTED] wrote: somebody ask a question about images not showing up under a few mac browsers, and I wanted to know if this person solved the problem. It could have been two days ago, but I really thought that it was yesterday. And I replied... Never had the problem

Re: Tomcat 4, mod_webapp extension mapping

2001-09-06 Thread Giuliano Carlini
Thank you. g At 02:09 AM 9/7/01 +0100, you wrote: Giuliano Carlini [EMAIL PROTECTED] wrote: Hi, Under Tomcat 3.2 I can do a JkMount /*.xml to forward all - and only - requests for xml files to Tomcat. How can I do this with Tomcat 4.0? This will be done automatically for you by the

Multiple Instances of Tomcat

2001-09-06 Thread Abhijat Thakur
I am trying to configure multiple instances of tomcat under apache. I have server1.xml(port 8007) and server2.xml(port 8009) files and everytime i start tomcat with any of these files i rename the mod_jk.conf-auto file to mod_jk.conf1-auto and mod_jk.conf2-auto. I have then included

Re: does tomcat have the cajones?

2001-09-06 Thread Rick Mann
on 9/6/01 11:24 AM, Denis Haskin at [EMAIL PROTECTED] wrote: Er... I think you mean cojones. A cajon is a kind of percussion instrument. Actually, a cajon is a drawer. Caja is box, so cajon could be a big box (colloquial). :-)

Re: using a central repository for servlets

2001-09-06 Thread Jonathan Eric Miller
Basically, if you are using Tomcat 4, you just have to copy your servlets to CATALINA_HOME$/webapps/ROOT/WEB-INF/classes. I created a symlink under CATALINA_HOME$ named servlets that is linked to webapps/ROOT/WEB-INF/classes. So, when I copy my servlets over I just copy them to

Re: No one answering my question (security realted problem)

2001-09-06 Thread Jonathan Eric Miller
Completely clear your CLASSPATH. Then, install a fresh copy of Tomcat. Then, try to access some of the sample servlets. If that doesn't work, you might want to give Tomcat 4 a try. Tomcat 4 is due out in mid-September. Tomcat 4 doesn't use CLASSPATH at all, so, maybe that'll fix your problem.

Re: Apache / mod_jk / Tomcat with Hardware SSL box?

2001-09-06 Thread Jonathan Eric Miller
One thing that you might want to look into assuming you haven't already bought new hardware is that I think that you can get SSL hardware accelerator cards rather than a separate box to do it? I don't know much about it. I just know that I heard something about this where I work. They were

Re: mac question from yesterday

2001-09-06 Thread Jonathan Eric Miller
Are you sure it only happens on a Mac? Maybe you don't have the image files stored in the correct location? Jon - Original Message - From: Henry Yeh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 06, 2001 1:03 PM Subject: RE: mac question from yesterday no it

Re: java.lang.SecurityException: sealing violation - jBuilder4

2001-09-06 Thread Jonathan Eric Miller
Tomcat 4 doesn't use the CLASSPATH variable. So, all the .jar files that aren't in the jakarta-tomcat directory will be ignored AFAIK. I did notice one thing that looks odd also. servlet.jar is normally found in common\lib, not server\lib. Not sure if that would make a difference. Jon -

Re: mac question from yesterday

2001-09-06 Thread Jonathan Eric Miller
Are you sure it only happens on a Mac? Maybe you don't have the image files stored in the correct location? Jon - Original Message - From: Henry Yeh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 06, 2001 1:03 PM Subject: RE: mac question from yesterday no it

Re: I admit it -- I'm too lazy to read the documentation

2001-09-06 Thread Jonathan Eric Miller
You're kidding, right? If you changed all the 8080's in server.xml to 80, that should have done it. You remembered to restart the server, right? Jon - Original Message - From: Curtis Dougherty [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 06, 2001 3:38 PM Subject:

Re: Newbie question

2001-09-06 Thread Jonathan Eric Miller
If you are using Tomcat 4, check out the following link. You don't actually need to build Tomcat from the source code (if that's what you are trying to do) in order to get SSL to work. It's just a matter of running a keytool command and then uncommenting a few lines of code in server.xml. This

Re: New nt_service

2001-09-06 Thread Jonathan Eric Miller
Are you sure it wasn't really a .c.exe file and Explorer didn't just hide the extension. ;-) Jon - Original Message - From: Pier Fumagalli [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 06, 2001 8:09 PM Subject: Re: New nt_service Tim O'Neil [EMAIL PROTECTED]

Re: Question from a relatively new user: Minimizing the installation footprint of Tomcat

2001-09-06 Thread Jonathan Eric Miller
If you write servlets instead of JSPs I would assume that you can get away with only using the JRE instead of the full JDK. I've never tried it myself though. I see that RUNNING.TXT says to download the JDK though. That could be because they're assuming that you're setting up a development

Re: Intermittent UnsatisfiedLinkError

2001-09-06 Thread Jonathan Eric Miller
John, I don't know if your JNI calls are in separate .jar files or in your servlets themselves, but, if they are in separate .jar files, I found that you can put those .jar files in CATALINA_HOME$/lib rather than in CATALINA_HOME$/webapps/ROOT/WEB-INF/lib. When you do this, the .jar files will

  1   2   >