RE: How to optimize Tomcat SSL

2004-06-15 Thread Gabi
I write only to comment that you can support more connections if you serve pages through https BUT images from http. (You'll remember many https pages where the browser warms you something like this page contains insecure elements or something similar... from the old benchmarks Remy and I ran, 20

client disconnect

2004-06-15 Thread Dorel Vaida
Hi all. I would like to know if in Tomcat there is something like ignore-client-disconnect in resin. What I need, more specifically is to catch and handle the exception when a client (browser) disconnects during tomcat serving a request. It seems now that even if I close the browser I CAN STILL

RE: combine http and https

2004-06-15 Thread Mariano
The lines: keystoreFile=/./.../Tomcat's SSL File keystorePass= are absolutely necessary for connector on port 8443. Try to set this line with yours values and set connector on port 8443 like i put in previous message, It must work. Regards Mariano López -Mensaje original-

Re: Denial of Service support

2004-06-15 Thread deepak shripat mane
  Noo.. It is does not inbuilt support for DDOS for tomcat. For avoding DDOS attacks u required WebSos Architecture concept Deepak On Tue, 15 Jun 2004 sandeep arshanapally wrote : Hi, Does tomcat have any built-in support to avoid for DOS attacks? Thanks, Sandeep

RE: Memory Settings On Tomcat

2004-06-15 Thread Endre Stølsvik
On Mon, 14 Jun 2004, Woodchuck wrote: | Runtime.getRuntime().maxMemory() will get you the | maximum amount of memory for your jvm. Yeah, check out maxMem, freeMem and totalMem.. Are those something along the line of what you're looking for? Endre

RE: Memory Settings On Tomcat

2004-06-15 Thread Endre Stølsvik
On Tue, 15 Jun 2004, Endre Stølsvik wrote: | On Mon, 14 Jun 2004, Woodchuck wrote: | | | Runtime.getRuntime().maxMemory() will get you the | | maximum amount of memory for your jvm. | | Yeah, check out maxMem, freeMem and totalMem.. Are those something along | the line of what you're looking for?

RE: Is tomcat a suitable server for our application ?

2004-06-15 Thread STOCKHOLM, Raymond
Depends on your web application :-) First guess would be yes : you've got plenty of memory (don't forget to allocate it to tomcat), and nice processors. Second guess : Think about how much memory each user session needs (then multiple it by 3000 to see if you have enough), and then try to

Tomcat 5.0.24 won't start

2004-06-15 Thread jim rothstein
I've installed Tomcat before, but this time I'm stuck: RH 9 Tomcat 5.0.24 Sun jdk 1.4.2 The server seems to start but then I get this in catalina.out StandardServer.await: create[8005]: java.net.BindException: Cannot assign requested address There is nothing else running on 8005 or 8080; I

Gargage collection going crazy...

2004-06-15 Thread Krist van Besien
Hello all, After having run without any problems for at least a week java CPU usage for our Tomcat server went to 99%... Looking at what the garbage collector was doing I saw the following: (what follows is just a small extract from the log file...) AF[136804]: Allocation Failure. need 536

Re: mod_jk2 for RedHat

2004-06-15 Thread Elijah Epifanov
First of all, check the requirements of mod_jk2. I'm not sure, but I thought it requires Apache v2.0.43 min. Then, get jakarta-tomcat-connectors-jk2-2.0.x.src. cd ./jk/native2 ./configure --with-apache2=/usr/local/apache2 --with-apxs2=/usr/local/apache 2/bin/apxs cd ./server/apache2 make This

Re: Gargage collection going crazy...

2004-06-15 Thread Elijah Epifanov
what are your OS and Java versions? 100% true: If NetBSD 1.6.2 + Java 1.4, then you should fallback to Java 1.3.1. 99% true: If *BSD + Java 1.4, then -- - Original Message - From: Krist van Besien [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 12:41 PM

RE: Is tomcat a suitable server for our application ?

2004-06-15 Thread SH Solutions
Hi We are planning to host a web application which is estimated to have around 3000 concurrent users. We are using SQL Server 2000 as database and Struts 1.1 framework. ... Do you think that Tomcat is a suitable web server for our application? For 3000 connections you

Re: Tomcat 5.0.24 won't start

2004-06-15 Thread Giuseppe Briotti
IP or NIC interface problem, perhaps? G I've installed Tomcat before, but this time I'm stuck: RH 9 Tomcat 5.0.24 Sun jdk 1.4.2 The server seems to start but then I get this in catalina.out StandardServer.await: create[8005]: java.net.BindException: Cannot assign requested

Host Names Case sensitive ?

2004-06-15 Thread Francois JEANMOUGIN
Hi all, Using various tomcat versions, I found that Host definitions in tomcat are case sensitive. This is annoying. It does not follow RFC 2616 (HTTP1.1 definition, Host: header) and makes some wap terminals fall in finding some servers (they do not lower the domain name while writing the

JSP changes not reflected if class file is not deleted from work folder

2004-06-15 Thread Veera Sivakumar
Hi, I am using Tomcat 4.1.24. I have noticed that some times, Tomcat is unable to re-compile the changed JSP. I have to remove the JSP class file from work folder. Then it works. Is it a known problem in Tomcat?. Or I have to do some settings in any configuration file to avoid deletion

high server load

2004-06-15 Thread Jouko Johansson
Hi, I have experienced some problems while testing the tomcat 5.0.28 on linux. After the restart the tomcat is running without any problems. After 3 to 4 hours the server load starts to increase. Even though the server load is very high (30), the tomcat response time is very good. I assume that

Re: how to show System Unavailable page when Tomcat is down

2004-06-15 Thread Tim Funk
Type 3 drivers are better than type 1. (But that depends on the implementation) The JDBC-ODBC driver was *never* meant for production usage. I know little about IIS - but I would hope there is a button that can be clicked, or a tab in some property screen that would let you do the equivalent

Re: I'll kill JNDI

2004-06-15 Thread Adam Smith
I can confirm that postgresql works ok with DBCP. All of my persistent components call the same connection code, whatever the database. It is doing the following : public static Connection Connect(String resourcename) throws javax.naming.NamingException, java.sql.SQLException { Context

Form data validation

2004-06-15 Thread Keith Hankin
I am trying to do jsp form validation but cannot get a solution that works. The problem occurs because my jsp files are not in the same directory as my Servlets. If I have my ControllerServlet redirect the request, all of the jsp files are interpreted relative to the directory of the

RE: JNDI frustration

2004-06-15 Thread Benson Margulies
Yoav, I figured out what happened to me, but I'm not sure I understand your reply. I have a resource that must be one-per-process. It's unfortunate, but that's the case. So, I thought that the Global... resources was the place to define it. Perhaps this is obvious to everyone else, but I didn't

RE: How do I run servlets on the root directory of localhost?

2004-06-15 Thread Jarl Skogsholm
To get Tomcat to hit your servlet instead of the ROOT(welcome page), you have to trick Tomcat by changing the servlet mapping (web.xml) to index.jsp. Tomcat will send you automatically to your servlet assumming index.jsp is in your welcome file list.servlet-mapping

Re: Form data validation

2004-06-15 Thread Woodchuck
wrong mailing list to be asking this --- Keith Hankin [EMAIL PROTECTED] wrote: I am trying to do jsp form validation but cannot get a solution that works. The problem occurs because my jsp files are not in the same directory as my Servlets. If I have my ControllerServlet redirect the

RE: tomcat starting up?

2004-06-15 Thread Reid Peryam
Thanks Ariel. This is the info I gather using netstat. I don't even see port 8080 listed (which might not mean a thing I guess). netstat -a yields Proto Local Address Foreign AddressState TCPomega-device:epmap omega-device:0 LISTENING TCP

RE: How to optimize Tomcat SSL

2004-06-15 Thread Peter Lin
yup, you sure can if you're willing to subject the users to the annoying message. What some people do is get a dedicated image server and setup https on it. that way, you don't get the annoying warning and you don't impact the webserver doing the real work. peter Gabi [EMAIL PROTECTED]

New connection joining existing session

2004-06-15 Thread Tim Penhey
I have a web application that uses Java Web Start to do nice printing from the client machine. As a parameter to the web start application is an URL which the locally executed java app hits to get the data (normally in XML), which is most likely protected by a JDBCRealm which the user has

RE: high server load

2004-06-15 Thread Shapira, Yoav
Hi, It's kind of hard to help with a non-existent tomcat version ;) Do things improve if you set fork to true for your JSP servlet? Tomcat 4 and 5 have different memory models, different optimization, etc, so the performance characteristics for the same app under the same load will not be the

RE: how to show System Unavailable page when Tomcat is down

2004-06-15 Thread Shapira, Yoav
Hi, My take on it would be that tomcat restarts are fast, and so no such page is needed. If yours takes a long time to restart, you probably have extra applications or processing taking place on shutdown/startup. If you really do need to do a bunch of stuff on startup AND you must have this

RE: JNDI frustration

2004-06-15 Thread Shapira, Yoav
Hi, I don't remember what I recommended, but I'm glad it works for you, don't change what's working ;) Yoav Shapira Millennium Research Informatics -Original Message- From: Benson Margulies [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 8:12 AM To: Tomcat Users List Subject:

RE: java variables in mywebapp.xml

2004-06-15 Thread Shapira, Yoav
Hi, Nope, no variable parsing in web.xml. You can use ant filter tokens to set the appropriate value when copying web.xml to its destination diretory. Yoav Shapira Millennium Research Informatics -Original Message- From: Charles N. Harvey III [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: Memory Settings On Tomcat

2004-06-15 Thread Shapira, Yoav
Hi, You might also want to try .gc() (force Garbage Collection) - run freeMemory() right before and right after .gc(), print out the diff too. Man, I expect this error from novice posters, but not from you ;) System.gc is ONLY A SUGGESTION. The more recent the JVM, the more likely it is to be

RE: Tomcat 5.0.24 won't start

2004-06-15 Thread Shapira, Yoav
Hi, Or user permissions of some kind? How about port 8009? Yoav Shapira Millennium Research Informatics -Original Message- From: Giuseppe Briotti [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 5:37 AM To: [EMAIL PROTECTED] Subject: Re: Tomcat 5.0.24 won't start IP or NIC

data source problem

2004-06-15 Thread Guy Katz
hi; i have a wierd problem which i have encountered twice with hosting company, un my application, i have a datasource configured in my application scope (context scope). on a standalone tomcat everything is fine, i get the datasource and work with it. however, with two hosting companies, i had

Tomcat status

2004-06-15 Thread Hollerman Geralyn M
I have been looking for some information on the Tomcat status page in Tomcat 5 - can anyone tell me if information about how to read that page (past the obvious) is on-line somewhere? I must've missed it. The Tomcat docs talk about how it's a JMX proxy servlet, and a lot of the page is

Re: high server load

2004-06-15 Thread Jouko Johansson
Oops! The tomcat version is 5.0.25. :-[ I try to configure to fork. - Jouko Shapira, Yoav wrote: Hi, It's kind of hard to help with a non-existent tomcat version ;) Do things improve if you set fork to true for your JSP servlet? Tomcat 4 and 5 have different memory models, different

Server Specs

2004-06-15 Thread Carl Olivier
Greetings. I am hoping someone can give me a helping hand with my query. I a webserver running: Windows 2000 Server Tomcat 5.0.25 Apache 2.0.49 Mod_jk2 J2SDK 1.4.2_01 The server hosts about 80 websites (via name based virtualhosts) with Apache in front of TC for the SSL and static serving.

RE: Tomcat status

2004-06-15 Thread Shapira, Yoav
Hi, can anyone tell me if information about how to read that page (past the obvious) is on-line somewhere? I must've missed it. The Tomcat docs talk about how It's probably not documented as well as it could be. (Am I turning too diplomatic in my old age?) Anyways, most of the page IS

Re: Server Specs

2004-06-15 Thread Jeff Hoffmann
Carl Olivier wrote: Windows 2000 Server Tomcat 5.0.25 Apache 2.0.49 Mod_jk2 J2SDK 1.4.2_01 The sites use JDBC to a MS SQL 2000 server I just noticed that commons-dbcp-1.1 has a memory leak in it (http://issues.apache.org/bugzilla/show_bug.cgi?id=27465). I believe that's the version that

RE: Server Specs

2004-06-15 Thread Carl Olivier
Hi Jeff. Thanks for the response, but I am using the Type 4 JDBC driver for SQL 2000 from MS, not DBCP. Thansks though! Carl -Original Message- From: Jeff Hoffmann [mailto:[EMAIL PROTECTED] Sent: 15 June 2004 04:31 PM To: Tomcat Users List Subject: Re: Server Specs Carl Olivier

is it possible to bind something under the java:comp/env?

2004-06-15 Thread Guy Katz
hi; i am using tomcat 5.0.24 i want to bind an object into the java:comp/env programatically to tomcat initial context. is this possible. the exception i get: javax.naming.NamingException: Context is read only at org.apache.naming.NamingContext.checkWritable(NamingContext.java:947)

Re: java variables in mywebapp.xml

2004-06-15 Thread Charles N. Harvey III
Thanks Yaov, the Ant filter tokens was exactly what I needed. Charlie Shapira, Yoav said the following on 6/15/2004 9:10 AM: Hi, Nope, no variable parsing in web.xml. You can use ant filter tokens to set the appropriate value when copying web.xml to its destination diretory. Yoav Shapira

NEWBIE: Application configuration security question

2004-06-15 Thread jochs
Hello, I have a question regarding security on Tomcat. first, some background: I'm currently assisting in the deployment of a Xerox Docushare system. This implementation DocuShare runs on Tomcat (among other platforms.) The problem I've been having with this particular app/server setup is that

Re: tomcat starting up?

2004-06-15 Thread Hassan Schroeder
Reid Peryam wrote: The goal is to connect to an IP address in order to download a file. Dude, are you still on this snipe hunt? Like I said before I can't connect in IE and was told that I need to use Tomcat to get it. The person who told you this is watching you on a hidden camera right now,

Re: Failing due to Multiple browser windows sharing the same session

2004-06-15 Thread Adriano LoGreco
Richard, It is common for a browser to use the same session across multiple windows. The session is normally stored in a cookie which is available to all windows in the browser. This is not a problem with the browser but how your webapp handles session data. -- Adriano On 3-Jun-04, at 6:06

Client disconnect again

2004-06-15 Thread Dorel Vaida
I repost this in the hope that someone will see it and give me an answer... Hi all. I would like to know if in Tomcat there is something like ignore-client-disconnect in resin. What I need, more specifically is to catch and handle the exception when a client (browser) disconnects during tomcat

RE: Client disconnect again

2004-06-15 Thread Shapira, Yoav
Hi, No such setting exists, AFAIK, and I don't find the behavior unbelievable: there's no mandate by the servlet spec or HTTP protocol spec that you get an exception. It only says you MAY get an exception if the client disconnects. Yoav Shapira Millennium Research Informatics -Original

JAAS setup

2004-06-15 Thread Charles N. Harvey III
I'm not sure if this is the right place to ask this, so if someone can point me to a JAAS mailing list that would be great. If I put a jaas.config in my WEB-INF/classes/ directory, I have to have something that does System.setProperty( java.security.auth.login.config, jaasFile ); That's just

Why should we remove work folder if a JSP is modified?.

2004-06-15 Thread Veera Sivakumar
Hi, I am using Tomcat 4.1.24. I have noticed that some times, Tomcat is unable to re-compile the changed JSP. I have to remove the generated servlet class file from work folder. Then it works. Is it a known problem in Tomcat?. Or I have to do some settings in any configuration file to avoid

Apache, tomcat and ajp13

2004-06-15 Thread Sez
Hi people! I have a apache and tomcat working together. In worker2.properties i have [uri:/*] worker=ajp13:localhost:8009 It pass all connections to tomcat. Now, i want that some connections go to apache with php and others to tomcat. www.site.com/doc --apache and php www.site.com/* --

RE: New connection joining existing session

2004-06-15 Thread Tim Penhey
Answering my own question... Yes, just do the same as the url rewriting by adding ;jsessionid=${pageContext.session.id} to the end of the URL. Tim -Original Message- From: Tim Penhey [mailto:[EMAIL PROTECTED] Sent: 15 June 2004 13:55 To: Tomcat-User Subject: New connection joining

Re: I'll kill JNDI

2004-06-15 Thread Kunthar
Thank you for your answer, I've already done the same thing before i sent message to list. But i've found that i should point this configuration to the every context. When i open admin section and go to Service(Catalina) /Host / Context (/test) i saw that the defined jdbc connection in server.xml

RE: JNDI frustration

2004-06-15 Thread Benson Margulies
1) Would it be appropriate to bugzilla a request to clarify the documentation on the use of custom factories for resources in JNDI? The doc didn't turn out to be exactly incorrect, but I think that it is somewhat misleading, and could be improved by some explicit annotations. I expected to be

RE: Client disconnect again

2004-06-15 Thread Cox, Charlie
I have done this with a filter to capture the user aborting a download on a static file. try { chain.doFilter(req,resp); // Success post-processing } catch (IOException ioe) { // user cancelled download // Aborted post-processing } I am using 4.1.29(it has

Re: Server Specs

2004-06-15 Thread Woodchuck
--- Carl Olivier [EMAIL PROTECTED] wrote: Greetings. I am hoping someone can give me a helping hand with my query. I a webserver running: Windows 2000 Server Tomcat 5.0.25 Apache 2.0.49 Mod_jk2 J2SDK 1.4.2_01 I have NOT tried to use the fork compile setting in Tomcat (read

RE: Memory Settings On Tomcat

2004-06-15 Thread Endre Stølsvik
On Tue, 15 Jun 2004, Shapira, Yoav wrote: | | Hi, | | You might also want to try .gc() (force Garbage Collection) - run | freeMemory() right before and right after .gc(), print out the diff | too. | | Man, I expect this error from novice posters, but not from you ;) Oh, thanks..! ;) | System.gc

Re: Is tomcat a suitable server for our application ?

2004-06-15 Thread Justin Ruthenbeck
Can Tomcat handle 3000 concurrent sessions? Yes. The bottleneck will not be Tomcat, per se, but rather either hardware resources (memory on the heap) or database connections. What you really need to figure out is how *active* those 3000 users will be -- 3000 users actively querying

Foolish Java / Tomcat question

2004-06-15 Thread Jon Yeargers
asbestos underwear So I get the concept of the garbage collector.. at least in principal.. but what happens to all the memory that gets allocated for a tomcat session (by a single login) when that session closes or is timed out? is *everything* from that session decremented so it can be

RE: Foolish Java / Tomcat question

2004-06-15 Thread Shapira, Yoav
Hi, Per the Servlet Specification, when a session is destroyed all its attribute references are cleared. Then normal garbage collection rules apply: if there are no other references to these objects, they can be garbage collected, and you don't have to worry about it. If there are other

Re: Is tomcat a suitable server for our application ?

2004-06-15 Thread Peter Lin
I would like to add the following. Probably the biggest factor in webserver performance is the concurrent requests. 3000 concurrent users who request 1 page every 5 minutes doesn't mean anything and most likely won't generate much load. for the sake of illustrating the problem, say the

RE: JNDI frustration

2004-06-15 Thread Shapira, Yoav
Hi, Yes, that would be appropriate, especially if you attached your recommended enhanced text for the Bugzilla issue. Such documentation patches are always enthusiastically welcomed. Yoav Shapira Millennium Research Informatics -Original Message- From: Benson Margulies [mailto:[EMAIL

RE: Memory Settings On Tomcat

2004-06-15 Thread Shapira, Yoav
Hola, I know - but Sun's VMs surely seems to follow your suggestions! They might, and they might not, that's the point. Other VM implementations can choose to ignore System.gc(), or even Sun implementations on certain platforms (many J2ME installations ignore these calls). Well, 1.5beta2

Connecting Apache and Tomcat

2004-06-15 Thread Graeme
Evening all, I'm trying to connect tomcat to apache using redhat 9, freshly installed from CDs and have not been updated via the redhat network or anywhere else. I'm following a tutorial found at http://www.meritonlinesystems.com/docs/apache_tomcat_redhat.html . I have kept everything the

Tomcat deploy remote WAR via http

2004-06-15 Thread michael_simpson
I'm running Tomcat 5.0. I'm trying to deploy a remote WAR file to my tomcat using the ManagerServlet's html commands. Since the WAR file is not on the local disk of the tomat server, I'm sending it a callback http URL to download the WAR file but it is not working. (I'm trying to automate

Connecting to MS Access DB

2004-06-15 Thread Potti, Alvin A
Hello, I'm having trouble connecting to a plain vanilla database that runs on MS Access. I'm using a regular JDBC-ODBC driver to communicate between Tomcat and Access, and want to paste the results on a servlet. Well for some reason it cannot find the DB (driver not specified or data source

Please introduce a good Tomcat debug tool

2004-06-15 Thread Daxin Zuo
I currently run Tomcat 4.1.9 (without apache) to run JSP and ervlet. How to debug JSP and Servelt in TOMCAT? Thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

XSLT and web.xml

2004-06-15 Thread Worley Brent - bworle
If I have a custom tag defined on one of my pages, do I need to specify anything in web.xml for Tomcat (5.0.24)? Thanks, Brent ** The information contained in this communication is confidential, is intended only for the use of

RE: JNDI frustration

2004-06-15 Thread Benson Margulies
Yoav, I wrote up the material in bz 29584. However, I end up wondering if there is, after all, either a bug or a possible desirable feature here. The documentation in globalresources.html describing the purpose of GlobalMakingResources: You can declare the characteristics of the resource to be

is that your name?

2004-06-15 Thread tomcat-user
only encrypted! Norton AntiVirus Deleted1.txt Description: plain/text - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Please introduce a good Tomcat debug tool

2004-06-15 Thread Woodchuck
--- Daxin Zuo [EMAIL PROTECTED] wrote: I currently run Tomcat 4.1.9 (without apache) to run JSP and ervlet. How to debug JSP and Servelt in TOMCAT? Thanks. i use the eclipse IDE available at: http://www.eclipse.org it's great and it's FREE!!!

Connecting and updating the tomcat-users.xml database

2004-06-15 Thread Robert Harper
Is there a way, other than the administration page, to update and read the tomcat-users.xml database? I tried to use MemoryUsersDatabase but when the code runs, the JVM cannot load the class. Is there some other mechanism or an accepted way for a servlet to update the database without having to

RE: Connecting and updating the tomcat-users.xml database

2004-06-15 Thread Shapira, Yoav
Hi, Straight up file manipulation is one way, but the better way is in deed the MemoryUserDatabase(Factory) and its JMX operations. You can see how the admin webapp does it by looking at the relevant admin webapp code. Your code needs to be privileged and probably in common classloader in order

RE: Please introduce a good Tomcat debug tool

2004-06-15 Thread Michael Cardon
I use eclipse with the 'myeclipse' plug-in. see www.eclipse.org and www.myeclipseide.com -Original Message- From: Daxin Zuo [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 12:13 PM To: Tomcat Users List Subject: Please introduce a good Tomcat debug tool I currently run Tomcat

IllegalArgumentException in jsp:forward

2004-06-15 Thread Giri, Sandeep
Hi! The following code: jsp:forward page=myJsp.jsp / is throwing the following exception on tomcat 4.0 (perhaps): Included servlet error: 500 Location: /servlets/showClientSubmissions.jsp Error Location: /servlets/generaltemplate.jsp Internal Servlet Error: javax.servlet.ServletException

RE: Please introduce a good Tomcat debug tool

2004-06-15 Thread Randy
I really like intellij by jetbrains RP -Original Message- From: Daxin Zuo [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 2:13 PM To: Tomcat Users List Subject: Please introduce a good Tomcat debug tool I currently run Tomcat 4.1.9 (without apache) to run JSP and ervlet. How to

Unexpected server shutdown

2004-06-15 Thread Matt Swensson
Tomcat 5.0.24 Red Hat Enterprise plenty of RAM and cpu sometimes we start up and after anywhere from a minute or two to an hour or so, we get the following in the log. This comes after some requests or no requests at all. Is there a way to find out why it is shutting down? No command to

Re: Apache, tomcat and ajp13

2004-06-15 Thread Elijah Epifanov
Delete [uri:/*] section from your worker2.properties file, and use httpd.conf instead (I think it's more correct approach): ... LocationMatch (?!^/doc) JkUriSet worker ajp13:localhost:8009 /LocationMatch LocationMatch ^/doc php stuff /LocationMatch - Original Message

Re: Please introduce a good Tomcat debug tool

2004-06-15 Thread Emerson Cargnin
Please, let's not start a IDE flame war again... []s Emerson Randy wrote: I really like intellij by jetbrains RP -Original Message- From: Daxin Zuo [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 2:13 PM To: Tomcat Users List Subject: Please introduce a good Tomcat debug tool I

RE: How do I run servlets on the root directory of localhost?

2004-06-15 Thread carters2
I changed my web.xml file like you said buy changing the servlet mapping to this servlet-namewebMathematica/servlet-name url-pattern/index.html/url-pattern /servlet-mapping Home-file-list Home-file index.html /Home-file it is index.html because the webapp does not

configuring tomcat and apache on windows 2000

2004-06-15 Thread Ian Parfitt
greetings I'm trying to get tomcat running with apache on windows 2000. I used to work in UNIX a lot but have become lazy with Windows, so please excuse my questions, the first of which is why isn't there an option to download a windows version of apache with the tomcat servlet engine built

RE: CGIServlet -- tomcat

2004-06-15 Thread Mark Thomas
This was a bug. It has been fixed in CVS for TC4 and TC5. Mark -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Friday, May 21, 2004 7:15 PM To: 'Tomcat Users List' Subject: RE: CGIServlet -- tomcat Alex, I have been looking after the CGI servlet for the

RE: can CGI Servlet handle Perl taint checking?

2004-06-15 Thread Mark Thomas
-Original Message- From: Larry Levin [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 4:59 PM To: [EMAIL PROTECTED] Subject: can CGI Servlet handle Perl taint checking? Hi; I am trying to get Bugzilla to work with Tomcat and have run into a problem. The

Got servlet - cancel that last request

2004-06-15 Thread Ian Parfitt
It seems to be running now after all, sorry for any distractions. Ian Parfitt

Net Integrator Virus Alert

2004-06-15 Thread Virus Scanner
WARNING: a virus (probably I-Worm.NetSky.q) or suspicious attachment was detected and removed from the following message from [EMAIL PROTECTED] to [EMAIL PROTECTED] Some of the content may still be readable. ---BeginMessage--- Are you a spammer? (I found your email on a spammer website!?!)

Tomcat still ain't working with the Apache webserver

2004-06-15 Thread Ian Parfitt
Can open the http:/localhost/examples, but the SnoopServlet is giving HTTP Status 404. Also I'm not getting the configuration file Tomcat-Apache.conf showing up in the C:\jakarta-tomcat-4.1.30\conf directory. My verdict: Tomcat and Apache are not talking. Any ideas? Workers2.properties

Re: ANN: WADI-0.9 released

2004-06-15 Thread Jarl Skogsholm
If you have a product or service we might be interested in, start answering questions that demonstrate your willingness and expertise. You are welcome to include your company, product name, etc. at the bottom of every email. Otherwise no matter how 'relevant' your content may be, SPAM is

Re: Tomcat 5.0.24 won't start

2004-06-15 Thread jim rothstein
We reset the network parameters (ip etc.) and now Tomcat runs fine. I'm still a little puzzled. Thanks for your help. jim Shapira, Yoav wrote: Hi, Or user permissions of some kind? How about port 8009? Yoav Shapira Millennium Research Informatics -Original Message- From: Giuseppe

Configuring JNDI for tomcat

2004-06-15 Thread Russ Leong
Hi, I am trying to configure tomcat 5.025 on W2K to be accessible by other machines via JNDI. I have tried using the registry method but am getting Connection refused. And when I try to filesystem approach I get NameNotFoundException. I am new to both Tomcat and JNDI and hope to get some

Re: RE: Please introduce a good Tomcat debug tool

2004-06-15 Thread deepak shripat mane
 Hii.. You can use Eclipse or JBuilder with tomcat server for debugging and Tracing servlet and JSP Page or u can use third party tool for program Deepak On Wed, 16 Jun 2004 Michael Cardon wrote : I use eclipse with the 'myeclipse' plug-in. see www.eclipse.org and www.myeclipseide.com

Re: IllegalArgumentException in jsp:forward

2004-06-15 Thread deepak shripat mane
  Hii.. For forwarding JSP Page u must use following Syntax jsp:forward page=myJsp.jsp u can specify the list of parameters u can forwarded /jsp:forward Deepak On Wed, 16 Jun 2004 Giri,Sandeep wrote : Hi! The following code: jsp:forward page=myJsp.jsp / is throwing the following

Re: How do I run servlets on the root directory of localhost?

2004-06-15 Thread Jarl Skogsholm
I don't have a jsp file either, use the .jsp extension and make sure that file isn't there. It takes that mapping and goes to your servlet. On Tue, 15 Jun 2004 15:03:21 -0700, [EMAIL PROTECTED] wrote: I changed my web.xml file like you said buy changing the servlet mapping to this

BodyContentImpl problem

2004-06-15 Thread Barnett, Brian W.
I recently upgraded my development environment and now my jsp pages do not display. I get the following error: [ServletException in:/WEB-INF/jsp/AgentList.jsp] org.apache.jasper.runtime.BodyContentImpl.clearBody()V' I have no idea what to even try. Here are the changes I made to the dev

Re: Connecting to MS Access DB

2004-06-15 Thread deepak shripat mane
 Helloo Can u specified ur configaration setting abt MS-ACCESS in web.xml file. Please check it. Deepak On Wed, 16 Jun 2004 Potti,Alvin A wrote : Hello, I'm having trouble connecting to a plain vanilla database that runs on MS Access. I'm using a regular JDBC-ODBC driver to communicate

RE: Client disconnect again

2004-06-15 Thread Dorel Vaida
It's ok. Thanks. I just wanted to know if it's normal behavior so that I don't rely on the container throwing an exception. -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 5:07 PM To: Tomcat Users List Subject: RE: Client disconnect again