Re: Does tomcat 4.1.24 come with conf files?

2003-07-31 Thread Thomas Kellerer
The LE edition does contain the conf files as well (I have downloaded several versions, and all of them contain the conf files). The "light" in "Light Edition" refers to the included XML parsers, as they are not necessary when running Tomcat with JDK 1.4.x Thomas John Turner schrieb: No. Not

[ANN] Apache Tomcat 4.1.27 Stable released

2003-07-31 Thread Remy Maucherat
The Tomcat Team announces the immediate availability of Apache Tomcat 4.1.27 Stable. Among other bugfixes and improvements, Tomcat 4.1.27 includes security fixes for: - Improper recycling of SSL client certificates with Coyote JK 2 - Improper handling of invalid content lengths in requests, caus

Re: Clashing JNDI names? Maybe?

2003-07-31 Thread Anton Tagunov
Hello Andoni! A> A> A>driverClassName A>oracle.jdbc.driver.OracleDriver A> A> A>user A>live A> A> A>password A>*** A> A> A>driverName A>jdbc:oracle:thin:@troi.eurokom.ie:1521:ora9

Re: CiscoLB jk2 problem

2003-07-31 Thread Antonio Fiol Bonnín
When Apache detects Tomcat is down, it has already accepted the connection (it cannot refuse it anymore). Otherwise, how would Apache know that the request was to forward to Tomcat, if it hadn't accepted the connection, and received the request through it? --> That means: You simply cannot. Pr

Possible to start Tomcat but not deploy webapp?

2003-07-31 Thread MooBob42
Say I have three webapps - the manager webapp, webapp A and webapp B. Is it possible for me to configure Tomcat such that when I start it up, only the manager and webapp A come online? Webapp B should either be in an undeployed state or in the "stopped" state, as if I had stopped it with the manage

Re: Threading Question

2003-07-31 Thread Bill Barker
"Roggeveen, Brian P" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > I was wondering if it is safe to assume that when using the multithreaded > model, a single unique thread will handle each incoming request? In other > words, does the servlet container implement a thread

Re: Tomcat and Acces Control Lists

2003-07-31 Thread Bill Barker
You'll need to modify your web.xml file to add s. I'd suggest picking up a Servlet and/or Tomcat book (the wrox one seems to be popular on the list, but I've never read it). "Sandy Voellinger" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] I am fairly new to Tomcat and am trying to s

can we upload servlet and JSP webpage hosting site?

2003-07-31 Thread tommy stone
Hey,, Sorry to ask this simple question. Is there any good and free webpage hosting site. I think of making my web page on the web. May I know can we write our own JSP page and J servlet and upload to there? Can it run?? __ Do you Yahoo!? Yahoo! SiteBuilder -

Tomcat4.1.24 SSL and Verisign

2003-07-31 Thread Punam Mutha
Wanted you to route this problem to concerned person in Verisign. We are using following environment: Server: Tomcat 4.1.24 OS: Red Hat Linux 8.0 JDK : IBM 2.13 I have implemented following steps to use the global server id we have purchased: Using keytool generated a keystore and added an

OT: Download Servlet question

2003-07-31 Thread Atreya Basu
Hello, I have a slightly off topic question. I have a servlet returns a file to a client. It works for both MSIE and Mozilla but for Mozilla it adds, '.jsp' to the end of the filename. I set my headers: response.setContentType("application/octet-stream"); respons

Re: Hello Sir, Madam,Miss

2003-07-31 Thread shyam
Instead of adding the folder to the ROOT directory add ur directory (Book) to the webapps directory and make chanes to your server.xml like point ur context path to that directory. if everything goes well then http://localhost:8080/Book/AdminBook.jsp will show up. - Original Message - From

RE: Problem confinguring MySQL JNDI Datasource RH Linux 7.2

2003-07-31 Thread Don Ross
Scott, I tried your suggestion and I am still getting the same error. Below is the log from the context DBTest, which I setup to use the datasource. I tried another suggestion from following URL: http://www.java-internals.com/code/resourcefactory/readme.html which also defined the datasource

Possible to start Tomcat but not deploy webapp?

2003-07-31 Thread MooBob42
Say I have three webapps - the manager webapp, webapp A and webapp B. Is it possible for me to configure Tomcat such that when I start it up, only the manager and webapp A come online? Webapp B should either be in an undeployed state or in the "stopped" state, as if I had stopped it with the manage

Re: Unable to find a javac compiler

2003-07-31 Thread shyam
I also had the same problem. If you have installed tomcat as a service this problem comes. You need to have the JAVA_HOME variable set to your j2sdk1.4.1 directory in the environmental variables . Hope this helps you. - Original Message - From: "Bradberry, Rick" <[EMAIL PROTECTED]> To: <[E

How does RMI operation differ when inside Tomcat as opposed to outside?

2003-07-31 Thread Jeff Lowery
I'm doing a little test program that tests Java Webstart and RMI. I can download a webstart client application via Tomcat okay (using an Opera browser), but when the client launches, it fails to retrieve the "remote" object through RMI (actually, both are client and server are on localhost). I'm n

RE: Threading Question

2003-07-31 Thread mike jackson
You could do something like that, or you could just have the servlet pass that into the supporting code/beans. It'd be a lot cleaner and clearer design wise to just pass the information, either encapsulated into a new object or just the values you need. --mikej -=-- mike jackson [EMAIL PROTEC

Threading Question

2003-07-31 Thread Roggeveen, Brian P
Hello, I was wondering if it is safe to assume that when using the multithreaded model, a single unique thread will handle each incoming request? In other words, does the servlet container implement a thread per connection model or is there a way to specify this configuration? The reason I ask i

JNDI

2003-07-31 Thread David Browning
Under what circumstances might the JNDI service not run? I have 4.0.6 running under OS X and assumed that an InitialContext implementation instance was provided, 'out of the box'. But I get error messages from my java application indicating that there is no JNDI service running... What's the e

Re[2]: 500 Custom Error

2003-07-31 Thread Kenneth Brooks
We have a 2nd dev box that is 4.1.24 and QA will be 4.1.24 also. So that's why i was checking on all of this stuff before production. :) Thanks for the reply. Oh, btw. The 500 error page works under 4.1.24 just peachy. -ken Wednesday, July 30, 2003, 8:58:56 AM -\][/ SY> Howdy, >> Are

minProcessor = maxProcessor value (are threads released if not used for some time ?)

2003-07-31 Thread Rau NF
Hi - I have set both these values to 100. When I run Tomcat 4.1.24/Linux/JDK 1.4.2, I see that Tomcat does not create all the 100 threads. It is usually in the 40-70 range. Does this mean that Tomcat releases the thread (resources) if not used for some time ? How can I make it create all the 100 t

Address Resolving

2003-07-31 Thread Sekhmet
Hi there... I recently installed Tomcat 4.0 and I'm still new to this server, but I already read all the documentation that came with the server and still have a question: How can I make tomcat resolve different addresses to the same IP? I mean, if I enter www..com and

RE: What is that maximum file size tomcat can serve?

2003-07-31 Thread Robert Wray
Are you getting a java.lang.OutOfMemoryError ? If so, could you post the entire error? If not, in what manner is tomcat failing? At 09:34 AM 31/07/2003 -0400, you wrote: Howdy, This would almost definitely be an OS/JDK limit somewhere along the line. Tomcat will just stream the file, so its size

connection pooling and server.xml

2003-07-31 Thread Bill2
Hello, I am using Tomcat 4.0.4, MySQL Max 3.23.51 on Linux 7.2 and mysql-connector-java-3.0.8-stable-bin.jar. I got it to work in my development environment NetBeans 3.5, but when I put it on the production server by changing the server.xml file as instructed at: http://jakarta.apache.org/tomcat

Re: Suggestions ?

2003-07-31 Thread Mufaddal Khumri
Yes, thats a helpful function ... I was looking at : http://jakarta.apache.org/taglibs/doc/string-doc/string-1.0.1/index.html to see if i can find a good tag library to use ... havent found one that i could use yet. Am hoping that someone on the list has pointers to some standard function or tagl

RE: Suggestions ?

2003-07-31 Thread Steph Richardson
I assume any html type tags that may be included in the text, you would want rendered as visible HTML tags in the browser. So use a HTML encoding method. There doesn't seem to be a JRE standard for this, so something like this will do it : public static String HTMLEncode( String unenc )

Suggestions ?

2003-07-31 Thread Mufaddal Khumri
Hi, Am using tomcat 4.1.24. Have a XYZ.jsp with a form on it take data from the user. Once the user clicks submit the data is stored in the database and the data that the user entered is shown to him on ABC.jsp. The problem is that the user can enter anything in the text field and text area

Re: Using Tomcat and JBoss together

2003-07-31 Thread epyonne
Tomcat is a servlet container and JBoss is a full fledge J2EE/EJB container. Having said that, JBoss needs Tomcat (or Jetty) to be complete. Currently, I am using jboss-3.2.1_tomcat-4.1.24 bundle and it is great. I highly recommend you to use JBoss instead of Apache2. Hope this helps. - Or

Re: Unable to find a javac compiler

2003-07-31 Thread Reginald Oake
Hi. It sounds like when running Tomcat with Apache that your path variable is not being passed to the Jasper compiler (not sure what the solution is but I hope this is of some value). Thanx, Reg On Thu, 2003-07-31 at 13:42, Bradberry, Rick wrote: > Hi, > > Got a problem with Apache 2.0.47,

RE: Using Tomcat and JBoss together

2003-07-31 Thread mike jackson
If you're using a lot of static content or cgi-bins or aliased directories it still makes more sense to use apache front of tomcat/jetty (jboss). Apache servers static content faster, if the majority of your site is dynamic then it makes more sense to use tomcat/jetty. It also makes more sense to

Re: problem

2003-07-31 Thread John Turner
Glad you got it working. Have fun! John [EMAIL PROTECTED] wrote: I got it fixed. It was having problems with that directory -once it was deleted and put back it worked. Thanks! Bobbie -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 3:26 P

RE: problem

2003-07-31 Thread batristain
I got it fixed. It was having problems with that directory -once it was deleted and put back it worked. Thanks! Bobbie -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 3:26 PM To: 'Tomcat Users List' Subject: RE: problem My first question

RE: Hello Sir, Madam,Miss

2003-07-31 Thread Sudhir Movva
Post your web.xml and server.xml files. -Original Message- From: Felix gt [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 2:57 PM To: [EMAIL PROTECTED] Subject: Hello Sir, Madam,Miss Hello Sir, Madam, Miss Sorry because Disturb your time to reading my Email i have the Question A

Re: Tomcat4+Apache - Install trouble on Debian?

2003-07-31 Thread John Turner
There are a number of connectors in server.xml. All but two (CoyoteConnector on 8009 for AJP13 and CoyoteConnector on 8080 for HTTP) are disabled by default. John Gregory Guthrie wrote: At 03:36 PM 07/31/2003 -0400, John Turner wrote: They are not meant to go together. Best advice is not to

Re: Tomcat4+Apache - Install trouble on Debian?

2003-07-31 Thread Gregory Guthrie
At 03:36 PM 07/31/2003 -0400, John Turner wrote: They are not meant to go together. Best advice is not to use mod_webapp at all. It's old, no longer actively developed, and has some (in my opinion) serious limitations. You're better off with mod_jk or mod_jk2. -- Thanks, will convert. But th

Unable to find a javac compiler

2003-07-31 Thread Bradberry, Rick
Hi, Got a problem with Apache 2.0.47, Tomcat 4.1.18 and j2sdk 1.4.1.01. I've read through the archive and found some close to my problem, but not quit. My problem: I've installed Apache and Tomcat as standalone servers and they both work great. Now I'm trying to get them to talk to each o

Re: Tomcat4+Apache - Install trouble on Debian?

2003-07-31 Thread John Turner
They are not meant to go together. Best advice is not to use mod_webapp at all. It's old, no longer actively developed, and has some (in my opinion) serious limitations. You're better off with mod_jk or mod_jk2. http://jakarta.apache.org/tomcat/faq/connectors.html John Gregory Guthrie wrote

Re: problem

2003-07-31 Thread John Turner
Hi - If you're putting a folder called "AdWebster" in $CATALINA_HOME/webapps, you will want to add the following to server.xml: Add this within the Host block for "placeanad.classifiedmarketplace.net", so something like this: Then restart Tomcat. John [EMAIL PROTECTED] wrote:

RE: Tomcat and MySQL

2003-07-31 Thread Scott Stewart
Look closely at your URL - it is malformed. it should read: connectionURL="jdbc:mysql://localhost/authority?user=leeson&password=" Thanks, Scott Stewart -Original Message- From: engp0510 [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 11:48 AM To: [EMAIL PROTECTED] Subject:

Re: Tomcat and MySQL

2003-07-31 Thread John Turner
Should be "?user=leeson&password=" Also you need to make sure that user leeson has access privileges to MySQL from localhost. http://www.mysql.com/documentation/mysql/bychapter/manual_MySQL_Database_Administration.html#User_Account_Management John engp0510 wrote: Hi, I am using Tomcat 4.

Tomcat4+Apache - Install trouble on Debian?

2003-07-31 Thread Gregory Guthrie
Trying to use Apache 1.3 with Tomcat-4, 1) are mod_jk and mod-webapps mutually exclusive, or meant to go together. Documentation seems to say just to use one (or the other) as a connector. -- Without mod_jk, how does Apache know all the name mappings to divert to Tomcat? 2) Can one use eit

RE: problem

2003-07-31 Thread Scott Stewart
My first question to you would be, "What does your server.xml look like?". Thanks, Scott Stewart -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 2:18 PM To: [EMAIL PROTECTED] Subject: problem Why is this happening? http://placeanad.cla

Re: problem

2003-07-31 Thread John Turner
Most likely because in all of your other posts, it was "AdWebster", not "adwebster" (note case). Tomcat is case-sensitive. John [EMAIL PROTECTED] wrote: Why is this happening? http://placeanad.classifiedmarketplace.net:8080/adwebster Bobbie Atristain Internet Systems Administrator Media Genera

RE: problem

2003-07-31 Thread Moraes, Fabio
i guess you forgot to add the tag to conf/server.xml or maybe you didn't pointed /index.jsp to anything (a servlet or anything else). let me know if i'm wrong. thanks, --- Fabio Moraes [EMAIL PROTECTED] System Engineer Work Force Management System +55 21 3088 9548 -Original Message-

Tomcat and MySQL

2003-07-31 Thread engp0510
Hi, I am using Tomcat 4.0 and MySQL 4.0.14 on WIn2K Professional. In Server.XML of Tomcat, I use: In MySQL, I set all user must access database with password and grant user 'leeson' with all privileges. I can use leeson and password to log into MySQL. But when I start tomcat-standalone, there

problem

2003-07-31 Thread batristain
Why is this happening? http://placeanad.classifiedmarketplace.net:8080/adwebster Bobbie Atristain Internet Systems Administrator Media General, INC. 804.649.6156 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Hello Sir, Madam,Miss

2003-07-31 Thread Felix gt
Hello Sir, Madam, Miss Sorry because Disturb your time to reading my Email i have the Question About Setting the tomcat. my Question is i have Open new Folder in ROOT Folder call Book, in this Book Folder i have Copy all the JSP File in to this Folder. after i Finish Copy, i Type http://localhost

RE: Problem confinguring MySQL JNDI Datasource RH Linux 7.2

2003-07-31 Thread Geralyn M Hollerman
Scott Stewart wrote: > You certainly can define your MySQL JNDI Datasource within the > node in server.xml. This is how I have it set up > currently and everything works fine (I am running Tomcat 4.1.24). I sent > the following out the other day in response to a different thread, but it > appli

RE: ANT tasks for management console

2003-07-31 Thread Derek Mahar
Yoav: I tried what you suggest, but it still fails (see below). Are you sure that the Ant deploy task works under Windows? Ant output: U:\Derek\Project\BondTrader\BondOrderManager>ant deploy Buildfile: build.xml prepare: compile: deploy: BUILD FAILED file:U:/Derek/Project/BondTrader/Bo

RE: Problem confinguring MySQL JNDI Datasource RH Linux 7.2

2003-07-31 Thread Scott Stewart
OBTW, when you define your DataSource in this manner, you do not need the node in your context-specific web.xml files. Thanks, Scott Stewart [Manager, Software Development] [EMAIL PROTECTED] work: (407) 515-8656 cell : (407) 435-1036 fax : (407) 515-9001 ClearSky Mobile Media, Inc. 56 E.

RE: CiscoLB jk2 problem

2003-07-31 Thread Eric J. Pinnell
No, I think you mentioned that. :) -e On Thu, 31 Jul 2003, Angus Mezick wrote: > Dang, I forgot to mention that we have 6 machines set up like this (or > to be set up like this). > > > -Original Message- > > From: Eric J. Pinnell [mailto:[EMAIL PROTECTED] > > Sent: Thursday, July 31, 200

Re: Possible configuration error in JK2-Environment (Apache 2.0.46,Tomcat 4.1.18/24)

2003-07-31 Thread Eric J. Pinnell
heh. Sorry. Forget the first line in my workers2.properties. I got a little wild with my cut and paste. -e On Thu, 31 Jul 2003, Eric J. Pinnell wrote: > Hi, > > Here is a minimal JK2 config. This is a default config so you need to > change port 8009 below to port 9000 per your server.xml > >

RE: Problem confinguring MySQL JNDI Datasource RH Linux 7.2

2003-07-31 Thread Scott Stewart
You certainly can define your MySQL JNDI Datasource within the node in server.xml. This is how I have it set up currently and everything works fine (I am running Tomcat 4.1.24). I sent the following out the other day in response to a different thread, but it applies here as well: The global

Re: Possible configuration error in JK2-Environment (Apache 2.0.46,Tomcat 4.1.18/24)

2003-07-31 Thread Eric J. Pinnell
Hi, Here is a minimal JK2 config. This is a default config so you need to change port 8009 below to port 9000 per your server.xml workers2.properties: bash-2.05$ more workers2.properties [shm] file=${serverRoot}/logs/shm.file size=1048576 # socket channel [channel.socket:localhost:8009] port=8

RE: CiscoLB jk2 problem

2003-07-31 Thread Angus Mezick
Dang, I forgot to mention that we have 6 machines set up like this (or to be set up like this). > -Original Message- > From: Eric J. Pinnell [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 31, 2003 2:18 PM > To: Tomcat Users List > Subject: Re: CiscoLB jk2 problem > > > Hi, > > This i

Re: Problem confinguring MySQL JNDI Datasource RH Linux 7.2

2003-07-31 Thread Geralyn M Hollerman
[EMAIL PROTECTED] wrote: > I have followed instructions provided for configuring JNDI Datasource for MySQL > (http://jakarta.apache.org/tomcat/tomcat-4.1-doc/printer/jndi-datasource-examples-howto.html), > and am running into problem on RedHat Linux 7.2. > > Here is my configuration: > > RedHa

Re: CiscoLB jk2 problem

2003-07-31 Thread Eric J. Pinnell
Hi, This is why you want to spread your application across two or more tomcats. I'm not sure if you can tweak the behavior of the error because what you are getting is indeed a internal server error. If you are going to load balance you should try to load balance all the way down the stack. Try

Re: Help with mod_jk2 + Coyote connector + Apache 2 + TC 4.1.24

2003-07-31 Thread Eric J. Pinnell
> Someone can explain how analize data from a kill -3 ( thread dump ) . > I can see nothing rare. Google for this. You could write a book about this subject and I don't think this is the right place to do it. Basically it's used to see if threads are blocked or hanging on a piece of code. If y

CiscoLB jk2 problem

2003-07-31 Thread Angus Mezick
I need to let apache fail nicely when a tomcat instance has crashed, been stopped or is being restarted. Right now this is what happens through the jk2 connector: I stop apache:10061 - Connection refused I stop one tomcat webapp: HTTP Status 404 I stop the tomcat server: 500 Internal S

Re: Checking for invalidated session

2003-07-31 Thread Justin Ruthenbeck
At 08:31 AM 7/31/2003, you wrote: How can you check to see if a session has already been validated? i.e. if( !session.isInvalidated()) <-- what should go here? { session.invalidate(); } to prevent the following exception: "org.apache.jasper.JasperException: invalidate: Session already inva

RE: Using Tomcat and JBoss together

2003-07-31 Thread mike jackson
JBoss is fairly complete J2EE application server. Tomcat just does the Servlet/JSP portion of the the J2EE spec. You can get Jboss with either Jetty or Tomcat as the Servlet/JSP engine. Either should be able to be connected to Apache2 via mod_jk2 as they both support apj13. --mikej -=-- mik

Using Tomcat and JBoss together

2003-07-31 Thread P. Dwayne Miller
New to the world of Java... I'm confused as to why someone would want to run Tomcat and JBoss together. Don't they do the same thing? I just recently managed to get Apache 2 and Tomcat working with mod_jk2... and then my boss asks me to look into JBoss. I was expecting to find out how to get

Hypersonic as service via MBean like JBoss ?

2003-07-31 Thread Tester
hi, did anyone succeed in implementing such thing ? thx for comments, sabine - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Possible configuration error in JK2-Environment (Apache 2.0.46, Tomcat 4.1.18/24)

2003-07-31 Thread nospam
Hi, i get the order to configure a new webhost with apache as the exclusive connection. Behind the apache should be in furher future a tomcat farm on serveral servers. Therefor, i install (a) an blank ger- man linux-distribution (SuSE 8.2) with binaries for Apache 2.0.46 and Tomcat 4.1.

RE: ANT tasks for management console

2003-07-31 Thread Derek Mahar
By the way, Tomcat Manager can deploy the WAR file using the following URL: http://localhost:8080/manager/deploy?path=/bond&war=jar:file:/C:/bond.war!/ Derek -Original Message- From: Derek Mahar Sent: Thursday, July 31, 2003 12:42 PM To: 'Steph Richardson'; Tomcat Users List Subject: RE

Re: Help with mod_jk2 + Coyote connector + Apache 2 + TC 4.1.24

2003-07-31 Thread Mauricio Nuñez
Thanks. Yesterday i change thats setting from 1 to 0, assuming the persistence of the ajp13 protocol. I'll try your suggestion. I'll try with jvm bea jrockit also. 12 = 2 min. That's mean 2 min of inactivity? Someone can explain how analize data from a kill -3 ( thread dump ) . I can s

RE: ANT tasks for management console

2003-07-31 Thread Shapira, Yoav
Howdy, Probably a bad war file URL. Try file://c:/bond.war. Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Derek Mahar [mailto:[EMAIL PROTECTED] >Sent: Thursday, July 31, 2003 12:42 PM >To: Steph Richardson; Tomcat Users List >Subject: RE: ANT tasks for management c

Re: [OFF-TOPIC] RE: sendRedirect() / forward() from frame to topwindow

2003-07-31 Thread Rick Roberts
Thanks again :) -- *** * Rick Roberts* * Advanced Information Technologies, Inc. * *** - To unsubscribe, e-mail: [EMAIL PR

RE: ANT tasks for management console

2003-07-31 Thread Derek Mahar
Any idea why the following Ant deploy task is not working for me? Software configuration: Microsoft Windows XP [Version 5.1.2600] Java 2 SDK 1.4.2 Apache Ant version 1.5.2 compiled on May 30 2003 Tomcat 5.0.5 Alpha The WAR file bond.war is in C:\bond.war. Ant output: --- U:\Derek\P

[OFF-TOPIC] RE: sendRedirect() / forward() from frame to top window

2003-07-31 Thread Shapira, Yoav
Howdy, >Is there an HTML paramater (maybe META tag or something similar) that will >tell >the page to always be the _top frame? Or maybe a technique >that >I can use to force this page to always live in the top frame? Yes, frame-popping is pretty easy. A simple variant would be like: I'm n

RE: entity value for ? symbol

2003-07-31 Thread Shapira, Yoav
Howdy, Google is your friend: http://www.hclrss.demon.co.uk/demos/symbol.html (scroll down to Currency Symbols section) Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Shanta B [mailto:[EMAIL PROTECTED] >Sent: Thursday, July 31, 2003 12:31 PM >To: Tomcat Users List >S

Re: sendRedirect() / forward() from frame to top window

2003-07-31 Thread Rick Roberts
Thanks for reply Yoav. Is there an HTML paramater (maybe META tag or something similar) that will tell the page to always be the _top frame? Or maybe a technique that I can use to force this page to always live in the top frame? I realize I'm getting a little off topic now. So; appologies in

Re: Help with mod_jk2 + Coyote connector + Apache 2 + TC 4.1.24

2003-07-31 Thread Eric J. Pinnell
Hi, Try playing with the connectionTimout setting in your server.xml. By default it is set at 0. Try using 12. Also experiment with -1. I have found that the connector resets every once in a while with a 0. With 12 the connection doesn't reset but times out. I have heard that a -1 mea

RE: AdWebster not coming up on Tomcat

2003-07-31 Thread batristain
factory org.apache.catalina.users.MemoryUserDatabaseFactory pathname conf/tomcat-users.xml

entity value for ? symbol

2003-07-31 Thread Shanta B
Hi I would like to know the entity value or code for EUR sign.Whenever we enter EUR1 in our HTML side we are getting back €1 as a value.We are using ISO-88591 as a character set,I found that ISO-88591 does not support this character or i did not find this value.Where as i found & as a entity val

Tomcat4+Apache - Install trouble on Debian?

2003-07-31 Thread Gregory Guthrie
I'm having trouble with tomcat4+Apache(1.3) on Debian; I find that tomcat, and tomcat4, don't install properly from the regular stable apt-get packages. After much research on lists, FAQs, etc, there are lots of hints, do-it-yourself configurations, and other changes to try and conflicting reco

regional configuration not honored

2003-07-31 Thread Javier Muguruza
Hi, I have encountered a bad problem with tomcat5. I am using a the following environment: winXP, eclipse2.1.1, myeclipse2.5 and tomcat5.0.4. My XP is in spanish, but in the control panel I have my regional configuration settings to English(Usa), that is decimal symbol (.). It seems that when mycl

Re: AdWebster not coming up on Tomcat

2003-07-31 Thread John Turner
Your attachment didn't come through. Please just paste it into your message. John [EMAIL PROTECTED] wrote: Greetings John, I've attached a copy of my server.xml file. My ultimate goal is to get http://placeanad.classifiedmarketplace.net/Adwebster running with ssl. But I'm just trying to get

RE: sendRedirect() / forward() from frame to top window

2003-07-31 Thread Shapira, Yoav
Howdy, You can't with a pure server-side solution, as the server doesn't know anything about the frames, only your browser does. So you have to use JavaScript or another client-side approach to get the source from the server and copy it into the desired frame. Yoav Shapira Millennium ChemInforma

Re: Apache + Tomcat + mod_jk

2003-07-31 Thread John Turner
argh... Because you don't have a DocumentRoot. Please, please just try one thing for me: - copy mod_jk.conf to APACHE_HOME/conf - edit mod_jk.conf...in the correct VirtualHost block, add a line that says: DocumentRoot PATH_TO_YOUR_WEBAPP_HERE - change httpd.conf, change the Include line for m

RE: AdWebster not coming up on Tomcat

2003-07-31 Thread batristain
Greetings John, I've attached a copy of my server.xml file. My ultimate goal is to get http://placeanad.classifiedmarketplace.net/Adwebster running with ssl. But I'm just trying to get the port 80 version up first. Thanks, Bobbie -Original Message- From: John Turner [mailto:[EMAIL PROTE

sendRedirect() / forward() from frame to top window

2003-07-31 Thread Rick Roberts
How can I use sendRedirect() or forward() from a child frame and force the target to be the top or parent frame? Similar to Top Frame but using sendRedirect() or forward() Thanks -- *** * Rick Roberts* * Advanced Information Tech

Problem confinguring MySQL JNDI Datasource RH Linux 7.2

2003-07-31 Thread Don Ross
Hello, I have followed instructions provided for configuring JNDI Datasource for MySQL (http://jakarta.apache.org/tomcat/tomcat-4.1-doc/printer/jndi-datasource-examples-howto.html), and am running into problem on RedHat Linux 7.2. Here is my configuration: RedHat Linux 7.2 (kernel-2.4.7-10) To

Re: Apache + Tomcat + mod_jk

2003-07-31 Thread v.siguier
I am agree with you, only one location for all my application resources is better but my customer want to separate static resources from dynamic resources. You tell me that only JkMount directives indicate which serv files, or in my mod_jk.conf there is only : JkMount /geode/jsp/j_security_check

RE: Where does index.jsp come from

2003-07-31 Thread Mike Curwen
You need to look harder Andoni. It's index.jsp by default, unless you've changed it since installing Tomcat. > -Original Message- > From: Andoni [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 31, 2003 10:47 AM > To: Tomcat Users List > Subject: Re: Where does index.jsp come from >

RE: Checking for invalidated session

2003-07-31 Thread Tim Davidson
No that wont work, because if the session was null it would throw a nullpointerexception not a servletException with "the session is already invalidated" -Original Message- From: Moraes, Fabio [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 4:39 PM To: 'Tomcat Users List' Subject

JNDI Names Clashing

2003-07-31 Thread Andoni
Hello, Can JNDI names clash if they are in different HOST containers in the server.xml file? Thanks, Andoni. PS: they are for a database connection pool.

Re: Where does index.jsp come from

2003-07-31 Thread Andoni
That page is not an index.jsp. it is: /webapps/ROOT/index.html HTH. Andoni. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 31, 2003 3:35 PM Subject: Where does index.jsp come from > Greetings, > I set up Tomcat again but I'm seeing this p

Re: Apache + Tomcat + mod_jk

2003-07-31 Thread John Turner
Which server (Apache or Tomcat) actually serves the file has nothing to do with file location. Which server (Apache or Tomcat) actually serves the file is completely driven by the JkMount directives. JkMount is inclusive...that is, unless you define a JkMount for a particular URI, the file will be

RE: Checking for invalidated session

2003-07-31 Thread Moraes, Fabio
sorry. session = request.getSession( false ); if( session != null ) { session.invalidate(); } --- Fabio Moraes [EMAIL PROTECTED] System Engineer Work Force Management System +55 21 3088 9548 -Original Message- From: Moraes, Fabio [mailto:[EMAIL PROTECTED] Sent: Thursday,

RE: Checking for invalidated session

2003-07-31 Thread Moraes, Fabio
i guess this will work fine ... session = request.getSession( false ); if( session.isNew( ) ) { out.println( "new session" ); } someone let me know if i'm wrong. hugs, --- Fabio Moraes [EMAIL PROTECTED] System Engineer Work Force Management System +55 21 3088 9548 -Original

RE: ANT tasks for management console

2003-07-31 Thread Steph Richardson
Look for catalina-ant.jar - probably in $TOMCAT_HOME/server/lib. Copy it to your $ANT_HOME/lib. We use these in our build files - I included the XML fragments from our build files if they're useful ( obviously you need to define a bunch of props used in these examples ) :

Checking for invalidated session

2003-07-31 Thread Tim Davidson
Hi, How can you check to see if a session has already been validated? i.e. if( !session.isInvalidated()) <-- what should go here? { session.invalidate(); } to prevent the following exception: "org.apache.jasper.JasperException: invalidate: Session already invalidated" --

Re: Apache + Tomcat + mod_jk

2003-07-31 Thread v.siguier
I would like to put .html files under htdocs/geode, .js under htdocs/geode/javascript and all images under htdocs/geode/images. If the user want to access to a html file (http://host:port/geode/*.html), I want it to be served by Apache. If the user want to access to a servlet (http://host:port/ge

Help with mod_jk2 + Coyote connector + Apache 2 + TC 4.1.24

2003-07-31 Thread Mauricio Nuñez
Hi Someone can help me, please My configuration is the following: 1) load balancer ( Hardware ) 2) 2 Apache2 using mod_jk2 (RedHat 9) 3) 2 Tomcat4 listen at 8009 using Coyote Connector (RedHat 9) jdk sun 1.4.2 4) 1 Mysql server. (Redhat 7.2 , Mysql 4.0.13) Our monitor alerts about a 15s timeo

Re: Tomcat4, where is classpath set when run as service

2003-07-31 Thread Paul
FYI, i placed jar files in tomcat_home/shared/lib as per doc you cite below. This seemed to be effective, because i stopped getting the "package does not exist" error, and now get that generic "status 500 error - null pointer exception" - which i intrepret to mean that there is an internal error wi

Re: AdWebster not coming up on Tomcat

2003-07-31 Thread John Turner
Are you sure? 8080 is enabled by default, there would have been no need to enable it. How about posting your server.xml file? May I ask, what is your ultimate goal? What do you want to have working when all is said and done? John [EMAIL PROTECTED] wrote: The only thing I did was uncomment

RE: AdWebster not coming up on Tomcat

2003-07-31 Thread batristain
The only thing I did was uncomment the connector lines for 8080. Everything else was left the same. In the web.xml I also uncommented the line about the invoker servlet. That's it -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 10:59 AM To:

Re: AdWebster not coming up on Tomcat

2003-07-31 Thread John Turner
Hi - Post your server.xml, or explain exactly what you changed from a default Tomcat installation. John [EMAIL PROTECTED] wrote: Hi, I can't figure out why my AdWebster isn't working. http://placeanad.classifiedmarketplace.net:8080/AdWebster/index.jsp that is what happens although the default

Re: Apache + Tomcat + mod_jk

2003-07-31 Thread John Turner
DocumentRoot "C:/jakarta-tomcat-4-1-24/webapps/geode" You will need to copy the mod_jk.conf file to some other location and modify it manually. Change your Include line in httpd.conf to reflect the new location. I like to put mine in the Apache conf directory. I'm not sure what you mean exact

AdWebster not coming up on Tomcat

2003-07-31 Thread batristain
Hi, I can't figure out why my AdWebster isn't working. http://placeanad.classifiedmarketplace.net:8080/AdWebster/index.jsp that is what happens although the default tomcat page still works for http://placeanad.classifiedmarketplace.net:8080 Any ideas? Thanks, Bobbie Bobbie Atristain Internet Sys

  1   2   >