RE: Help in URLEncoder.encode()

2003-01-27 Thread Reynir Hübner
Hi, I suspect this migth be a problem due to charset-type. If you where using jdk 1.4.x you would have a way of setting the charset type of the url-encoding. This means you can tell the URLEncoder to use UTF-8 for example or ISO-8859-1 charset. Sample : String encodedval=

RE: Help in URLEncoder.encode()

2003-01-27 Thread Daniel Brown
Santosh, This sounds like a character set problem. When the content is decoded, you need to make sure it's decoded using the character set used to encode it. Tomcat assumes ISO-8859-1 when decoding URL parameters. When you encode the data, use URLEncoder.encode(string, UTF-8), and decode it

Re: !!!HELP!!! how to execute an external .exe-file (+Parameters) that creates data-files I want to use later in my servlet

2003-01-21 Thread ningr
I met the same problems under linux, maybe you should put the data.exe in the directory $CATALINA_HOME/bin, and Process p = Runtime.getRuntime().exec( ./data.exe ); you can try it. - Original Message - From: Patrick Kosiol [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]

Re: !!!HELP!!! how to execute an external .exe-file (+Parameters)that creates data-files I want to use later in my servlet

2003-01-21 Thread Patrick Kosiol
Hi, that might be a problem because my data.exe needs access to some data-files placed in a special relative path from its. And this programm also creates other files (they were also placed relative to its position) and I must also be able to access these files through out the Tomcat

Re: !!!HELP!!! how to execute an external .exe-file (+Parameters)that creates data-files I want to use later in my servlet

2003-01-21 Thread Mr. Cristian Romanescu
here's a sample of code that would send an e-mail using mail command under Linux. I guess that the exe probably should be within your PATH As you can observe, cmd[0] is the name of the app cmd[1], cmd[2], .are command line arguments to the app private static void sendMail(String

Re: !!!HELP!!! how to execute an external .exe-file (+Parameters) that creates data-files I want to use later in my servlet

2003-01-21 Thread ningr
path, I hope the code is useful to you. - Original Message - From: Patrick Kosiol [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, January 21, 2003 10:16 PM Subject: Re: !!!HELP!!! how to execute an external .exe-file (+Parameters) that creates data-files I

RE: Help java.sql.SQLException: JZ006: Caught IOException.java.net.SocketException: Broke

2003-01-21 Thread Reynir Hübner
Well it's an exception thrown from the JDBC driver you are using. The error code is JZ006, I recommend you look it up in google.com. The first match I got was this one : http://webforums.sybase.com/nntp/nd41.nsf/85255e6f0052055e85255d7f005ed8bc/a2f5a11abbcec9a9376a775bd27d2bb2?OpenDocument

RE: Help With Tomcat Database Connection Configuration

2003-01-17 Thread Roberts, Eric
Hi, Your server.xml looks fine. If you specify the resource in server.xml there is no need to put it in web.xml (in fact this will more than likely cause problems). You should reference the datasource in your app as follows: ctx = new InitialContext(); Context envCtx = (Context)

RE: Help: Red Hat Apache-Tomcat

2003-01-16 Thread Turner, John
Apache modules can be Apache-version sensitive. There have been security updates to Apache since .40. RedHat should have .43 available as an RPM. If not, you should find one somewhere else. Upgrading Apache will take care of the compatibility issue. Regarding your question about

Re: Help: Red Hat Apache-Tomcat

2003-01-16 Thread Jim Wright
Hi, Turner, John wrote: Apache modules can be Apache-version sensitive. There have been security updates to Apache since .40. RedHat should have .43 available as an RPM. If not, you should find one somewhere else. Upgrading Apache will take care of the compatibility issue.

RE: help - Tomcat/Linux deployment

2003-01-13 Thread Shapira, Yoav
Howdy, I can't help much with DBCP, but I noticed your other thread was hijacked with a how did you get DBCP to work? ... question ;) I did want to comment on something else: Also, immediately after I start Tomcat on Linux I see a lot (26) of java processes running. As I understand, they are

RE: help - Tomcat/Linux deployment

2003-01-13 Thread Igor I. Tovstopyat-Nelip
Yoav, thanks a lot for your response. Let me describe my situation more clear as I see it now. It's definitely not DBCP, DBCP works fine. This morning again the server was running but it couldn't serve my request. This time I copied the exception which I will paste later. The number of threads

Re: help - tomcat/dbcp deployment

2003-01-12 Thread Igor I. Tovstopyat-Nelip
Well, to get DBCP working was not difficult at all. I just followed Tomcat how-to docs. And, as I learned from other people, it's being used on a production level. My Tomcat's version is 4.1.12. Thank you. Igor TN Hi, I developed a web-app consisting mostly of servlets and JSP, almost no

Re: help - tomcat/dbcp deployment

2003-01-12 Thread David Durst
Well, to get DBCP working was not difficult at all. I just followed Tomcat how-to docs. And, as I learned from other people, it's being used on a production level. My Tomcat's version is 4.1.12. Thank you. Igor TN I have been trying to get this damn thing working w/ postgres for about a

Re: help - tomcat/dbcp deployment

2003-01-12 Thread Paul Yunusov
On Sunday 12 January 2003 02:50 pm, David Durst wrote: Well, to get DBCP working was not difficult at all. I just followed Tomcat how-to docs. And, as I learned from other people, it's being used on a production level. My Tomcat's version is 4.1.12. Thank you. Igor TN I have been

Re: help - tomcat/dbcp deployment

2003-01-12 Thread Rasputin
* Paul Yunusov [EMAIL PROTECTED] [0127 19:27]: On Sunday 12 January 2003 02:50 pm, David Durst wrote: Well, to get DBCP working was not difficult at all. I just followed Tomcat how-to docs. And, as I learned from other people, it's being used on a production level. I have been trying

Re: Help me please.

2003-01-11 Thread Lajos Moczar
Wasin - When you say default directory, you mean $CATALINA_HOME/webapps/ROOT? Lajos Wasin Rujikietgumjorn wrote: Dear Whom It May Concern, I am a new user. Using tomcat 4.1.18. Right now I can access localhost (http://localhost:8080). But I can not access my JSP file(hello.jsp) in

RE: HELP, PLEASE! Tomcat creates too many threads!

2003-01-10 Thread Joao Filipe Placido
PROTECTED], 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: HELP, PLEASE! Tomcat creates too many threads! Hi, When using SingleThreadModel in the servlets, old tomcat threads never die, and new threads are created for each request, so I have to restart tomcat once in a while. I'm

RE: help conecting Tomcat with a As/400

2003-01-10 Thread Noel J. Bergman
PROTECTED]] Sent: Friday, January 10, 2003 13:16 To: Noel J. Bergman Subject: RE: help conecting Tomcat with a As/400 I have the JT400.jar in my TOMCAT_HOME/common/lib, i think that this is the JDBC driver that i need. I want to make the next stuff, I want to connect a JSP web page to my database

Re: help - tomcat/dbcp deployment

2003-01-10 Thread David Durst
Hi, I developed a web-app consisting mostly of servlets and JSP, almost no static content. The application uses mysql and obtains connections from a dbcp connection pool. Now I'm deploying it for production on Linux (RedHat 7.2) in a tomcat standalone configuration. (Almost no static

RE: Help with Tomcat 4.1 installation please?

2003-01-09 Thread Turner, John
Looks like you have something else on that port, probably Tomcat itself. Perhaps my Windows XP HOWTO can help (you can ignore the sections on Installing Apache and Installing JK) and just use the section on installing Tomcat. http://www.johnturner.com/howto John -Original Message-

RE: HELP, PLEASE! Tomcat creates too many threads!

2003-01-09 Thread Joao Filipe Placido
Placido -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: terça-feira, 7 de Janeiro de 2003 20:28 To: Tomcat Users List Subject: RE: HELP, PLEASE! Tomcat creates too many threads! On Tue, 7 Jan 2003, Denise Mangano wrote: Date: Tue, 7 Jan 2003 09

Re: Help with Tomcat 4.1 installation please?

2003-01-09 Thread Mark
Thank you Peng. You were correct. Tomcat was already running, having started automatically upon bootup. Now I will be unsubscribing from the list. Thanks again. Mark Steere [EMAIL PROTECTED] Are you installing tomcat from a exe ? If so you may have already started tomcat from the service,

RE: HELP, PLEASE! Tomcat creates too many threads!

2003-01-09 Thread Craig R. McClanahan
On Thu, 9 Jan 2003, Joao Filipe Placido wrote: Date: Thu, 9 Jan 2003 14:58:02 - From: Joao Filipe Placido [EMAIL PROTECTED] To: 'Craig R. McClanahan' [EMAIL PROTECTED], 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: HELP, PLEASE! Tomcat creates too many threads! Hi, When

RE: Help Please! Q: Perl Compatible Regular Expressions and urimapping

2003-01-09 Thread Noel J. Bergman
Why don't you give each student their own webapp? It would be pretty easy to setup. In the webapps/ directory, each student would have a student.xml file, which defines the Context element, e.g., Context path=/studentName docBase=studentName debug=0 reloadable=true crossContext=false /

Re: Help with Tomcat 4.1 installation please?

2003-01-08 Thread Peng Tuck Kwok
Are you installing tomcat from a exe ? If so you may have already started tomcat from the service, in this case it is already started, you can test by going to port 8080 on your own machine using the web browser. If you prefer to run from a batch file, either stop the current service and

RE: Help with Tomcat on HP-UX 10.20

2003-01-07 Thread John Clark
with the TOMCAT_OPTS setting. I have established a connection and will start testing my application. Thanks once again for all the help. John -Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED]] Sent: 04 January 2003 08:04 To: [EMAIL PROTECTED] Subject: Re: Help with Tomcat on HP-UX 10.20

RE: HELP, PLEASE! Tomcat creates too many threads!

2003-01-07 Thread Denise Mangano
I am curious about the same thing. My app isn't fully up and operational yet so I do not know for sure if I suffer from the same problem, but I have noticed that while doing some testing new threads are getting started, and it usually takes a restart to get rid of them. I've seen this question

RE: HELP, PLEASE! Tomcat creates too many threads!

2003-01-07 Thread Venkat Reddy Valluri
Can you try with IBM JVM, as it works well on linux in cae of performance as well as memory usage -Original Message- From: Denise Mangano [mailto:[EMAIL PROTECTED]] Sent: Tue 1/7/2003 9:31 AM To: 'Tomcat Users List' Cc: Subject:RE: HELP, PLEASE! Tomcat creates too

RE: HELP, PLEASE! Tomcat creates too many threads!

2003-01-07 Thread rsequeira
: Subject: RE: HELP, PLEASE! Tomcat creates too many 01/07/03 08:31 AM threads! Please

Re: HELP with catalina.policy

2003-01-07 Thread Jeanfrancois Arcand
Arthur Chan wrote: Hi. I use j2sdk1.4.0 + Apache2 + Tomcat4.0.4 + mod_jk My applets access tomcat servlets to query an Ora9i database. Most of the client W98, NT4 and W-XP can access my applet to query the servlets with the exception of 2. One client uses java 1.3.1_03 and when he tries to use

Re: HELP with catalina.policy

2003-01-07 Thread achana
Hi Jeanfrancois Arcand Is this a firewall problem from their end ??? Yes, It could be a firewall problem. IMO, It is more a privilege issue with NT. Have you try with Administrator privilege? Also, double check that your usesr have the proper java.security file with their JRE. Sorry to

Re: HELP with catalina.policy

2003-01-07 Thread achana
Hi Jeanfrancois Arcand Is this a firewall problem from their end ??? Yes, It could be a firewall problem. IMO, It is more a privilege issue with NT. Have you try with Administrator privilege? Also, double check that your usesr have the proper java.security file with their JRE. Sounding

RE: HELP, PLEASE! Tomcat creates too many threads!

2003-01-07 Thread Troy J. Kelley
Cool. This is part of what I was looking for in my post. Thanks Craig. You rule. -Troy -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 3:28 PM To: Tomcat Users List Subject: RE: HELP, PLEASE! Tomcat creates too many threads

RE: HELP, PLEASE! Tomcat creates too many threads!

2003-01-07 Thread Turner, John
Fortunately, he's one of the benevolent kind. LOL John -Original Message- From: Troy J. Kelley [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 3:54 PM To: 'Tomcat Users List' Subject: RE: HELP, PLEASE! Tomcat creates too many threads! Cool. This is part of what I

RE: HELP, PLEASE! Tomcat creates too many threads!

2003-01-07 Thread Craig R. McClanahan
On Tue, 7 Jan 2003, Denise Mangano wrote: Date: Tue, 7 Jan 2003 09:31:01 -0500 From: Denise Mangano [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: HELP, PLEASE! Tomcat creates too many threads! I am curious about

RE: HELP PLEASE ON TOMCAT 4.x + APACHE 2.0.43 + mod_jk2-2.0.43.dll

2003-01-06 Thread Krishna_R . _Nagaraj
config_files.doc Description: MS-Word document -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Help with Tomcat on HP-UX 10.20

2003-01-03 Thread Jeanfrancois Arcand
John Clark wrote: I have spent some time looking at the FAQs, archives, etc. but cannot find the information I need, can anyone help. I have an intranet application (using JSP) that currently runs using Oracle 9i (Apache built in) on Linux and using Oracle 8 and Tomcat on NT/2000. I now want

RE: Help with Tomcat on HP-UX 10.20

2003-01-03 Thread John Clark
) at org.apache.tomcat.startup.Main.main(Main.java:140) Is this a config problem or version problem? Once again any help will be much appreciated. John Clark -Original Message- From: Jeanfrancois Arcand [mailto:[EMAIL PROTECTED]] Sent: 03 January 2003 16:24 To: Tomcat Users List Subject: Re: Help

RE: Help with Tomcat on HP-UX 10.20 [RBS2003010300005612]

2003-01-03 Thread techassistance
Ahoy there! This is an automated response, to let you know that we have received your query and will answer your email as soon as possible. We know you'd like to get back to playing our state-of-the-art online games. We'd therefore like to assure you that we are determined to keep our service at

RE: HELP PLEASE ON TOMCAT 4.x + APACHE 2.0.43 + mod_jk2-2.0.43.dll

2003-01-03 Thread Turner, John
Those files have nothing to do with JK2. All of those files and settings are for JK. JK and JK2 are completely separate, and have different setup requirements on the Apache side. The Listener tags you listed in server.xml will only generate JK configuration information, they serve no purpose

Re: Help with Tomcat on HP-UX 10.20

2003-01-03 Thread Bill Barker
any help will be much appreciated. John Clark -Original Message- From: Jeanfrancois Arcand [mailto:[EMAIL PROTECTED]] Sent: 03 January 2003 16:24 To: Tomcat Users List Subject: Re: Help with Tomcat on HP-UX 10.20 John Clark wrote: I have spent some time looking at the FAQs, archi

RE: Help Apache 1.3.26 + tomcat 4.0.6

2002-12-24 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
Rahul, My first suggestion will be stop apache stop tomcat wait 60 seconds start tomcat wait 60 secs then verify that application works using port 8080 start apache try it through apache If that does not work I enclose an example on how I configure mod_webapp make sure that your path in the

RE: help with DataSourceRealm in 4.1.17

2002-12-20 Thread Roberts, Eric
Hi, Try just jdbc/db. HTH -Original Message- From: Kevin HaleBoyes [mailto:[EMAIL PROTECTED]] Sent: Donnerstag, 19. Dezember 2002 20:05 To: [EMAIL PROTECTED] Subject: help with DataSourceRealm in 4.1.17 I've been using JDBCRealm successfully in my application but jumped on the

RE: help with DataSourceRealm in 4.1.17

2002-12-20 Thread Kevin HaleBoyes
--- Roberts, Eric [EMAIL PROTECTED] wrote: Hi, Try just jdbc/db. Yeah, I've tried every combination that I can - jdbc/Db, /jdbc/Db, env/jdbc/Db, /env/jdbc/Db, etc. up to java:comp/env/jdbc/Db. None work. Again, I think it is a timing issue where the Realm is initialized before the JNDI

RE: help with DataSourceRealm in 4.1.17

2002-12-20 Thread Roberts, Eric
Yes - I always put my context defs in server.xml - I just find it more reliable! -Original Message- From: Kevin HaleBoyes [mailto:[EMAIL PROTECTED]] Sent: Freitag, 20. Dezember 2002 13:41 To: Tomcat Users List Subject: RE: help with DataSourceRealm in 4.1.17 --- Roberts, Eric [EMAIL

Re: help with DataSourceRealm in 4.1.17

2002-12-19 Thread Kevin HaleBoyes
Replying to my own email... I think I can see the problem but I'm no further ahead in solving it. It seems to be a timing issue. The realm is being configured before the Resource is added. In the localhost_cml_log.2002-12-19.txt file I can see the Realm error (NameNotFoundException) before the

RE: Help...appache...documentation

2002-12-18 Thread Turner, John
Check an Apache list. This is a Tomcat list. John -Original Message- From: puneet sachar [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18, 2002 2:19 AM To: Tomcat Users List Subject: Help...appache...documentation hi frds, i was going thru the Appache server and i found this

RE: Help...

2002-12-18 Thread puneet sachar
That i knw its tomcat list... juz want to knw yje meaning of tjis code Modules are defined as a collection of handlers by the Apache core.they implemented in C and run with in http serever process. the http server does not maintain state and thus can provide full failover capabilities

[OFF-TOPIC] RE: Help...

2002-12-18 Thread Turner, John
Subject: RE: Help... That i knw its tomcat list... juz want to knw yje meaning of tjis code Modules are defined as a collection of handlers by the Apache core.they implemented in C and run with in http serever process. the http server does not maintain state and thus can

Re: Help needed to run Tomcat 4.1.12

2002-12-18 Thread Paul Yunusov
On Wednesday 18 December 2002 06:27 pm, Ronin Quigley wrote: I am running Windows XP and have done the following: a.. Installed Jave SDK and set the path variable to stemRoot%\System32\Wbem;C:Java\bin; b.. Downloaded release version 4.1.12 of Tomcat c.. Set the variable JAVA HOME=C:\JAVA

RE: Help needed to run Tomcat 4.1.12

2002-12-18 Thread Turner, John
PROTECTED]] Sent: Wednesday, December 18, 2002 7:04 PM To: Tomcat Users List Subject: Re: Help needed to run Tomcat 4.1.12 On Wednesday 18 December 2002 06:27 pm, Ronin Quigley wrote: I am running Windows XP and have done the following: a.. Installed Jave SDK and set the path variable to stemRoot

Re: Help needed to run Tomcat 4.1.12

2002-12-18 Thread Paul Yunusov
- From: Paul Yunusov [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18, 2002 7:04 PM To: Tomcat Users List Subject: Re: Help needed to run Tomcat 4.1.12 On Wednesday 18 December 2002 06:27 pm, Ronin Quigley wrote: I am running Windows XP and have done the following

RE: Help needed to run Tomcat 4.1.12

2002-12-18 Thread Turner, John
Thanks. I couldn't remember the equivalent of $CATALINA_HOME on Windows. LOL John -Original Message- From: Paul Yunusov [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18, 2002 7:35 PM To: Tomcat Users List Subject: Re: Help needed to run Tomcat 4.1.12 On Wednesday 18 December

Re: Help needed in Tomcat4.0.3

2002-12-17 Thread Praveen Wicliff
Use the Tomcat manager (how to is there on the site) with the list command. It will print out all the contexts with the number sessions for each of them. Praveen Wicliff - Original Message - From: Santosh Kulkarni [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, December 17, 2002

RE: Help: Simple example to use tomcat 4.1.12 / Apache 1.3 and mo d_jk ??

2002-12-17 Thread Ming Zhao
Hi, John Is there any HOWTO for win2k? Similar to that for RH? For my setup and configure of Apache, Tomcat and JK2 on win2k, it seems that Apache and Tomcat can work well seperately. But it cannot work to open jsp file with Apache to acivate Tomcat to deal with. And I got the message on the

RE: Help: Simple example to use tomcat 4.1.12 / Apache 1.3 and mo d_jk ??

2002-12-17 Thread Turner, John
://pokey.wr.usgs.gov/pub/rsowders/Apache2_Jk2_TC4.1.x_JSDK1.4.x.zip John -Original Message- From: Ming Zhao [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 17, 2002 10:30 AM To: Tomcat Users List Subject: RE: Help: Simple example to use tomcat 4.1.12 / Apache 1.3 and mo d_jk

RE: Help: Errors in catalina.out

2002-12-16 Thread Shapira, Yoav
Howdy, Assuming you don't have too many web.xml files, why don't you simply go through yours (not tomcat's: tomcat's admin, manager, and other web.xml files are spec compliant) and verify the XML? Alternatively, comment out all the pieces, restart the server, make sure there are no errors. Then

RE: Help: Simple example to use tomcat 4.1.12 / Apache 1.3 and mod_jk ??

2002-12-16 Thread Turner, John
I don't think you can get any simpler than this: http://www.johnturner.com/howto The version numbers are irrelevant...the procedures are the same. Newer versions of Tomcat use one connector class to handle multiple protocols. That class is called CoyoteConnector and it talks JK, JK2, and HTTP

RE: help: logging j_username

2002-12-13 Thread Rob Cartier
ok .. I am interested any ideas how to implement it thanks in advance --Rob -Original Message- From: Noel J. Bergman [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 7:09 PM To: Tomcat Users List Subject: RE: help: logging j_username Is there a way besides using

RE: help: logging j_username

2002-12-13 Thread Noel J. Bergman
available off-list. --- Noel -Original Message- From: Rob Cartier [mailto:[EMAIL PROTECTED]] Sent: Friday, December 13, 2002 7:14 To: 'Noel J. Bergman'; 'Tomcat Users List' Subject: RE: help: logging j_username ok .. I am interested any ideas how to implement it thanks in advance

RE: Help: Upgrading to 4.1.12 frrom 4.0.1

2002-12-12 Thread Iqbal, Shamsudeen M
In Tomcat 4.1.x, the ./conf/web.xml has the following lines commented to prevent some security breach, servlet-mapping servlet-nameinvoker/servlet-name url-pattern/servlet/*/url-pattern /servlet-mapping Thus, your application will not start in Tomcat 4.1.x. To resolve

RE: help: logging j_username

2002-12-12 Thread Noel J. Bergman
Is there a way besides using session cookies to log invalid logon attempts from a form based logon jsp Have you considered a session bean? --- Noel -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Help: Upgrading from 4.0.2 to 4.1.12

2002-12-10 Thread Larry Meadors
I just went from 4.0.6 to 4.1.12, and found two things that may make your life easier. 1) All my logging went into files instead of to the console. 2) 4.1 seems much fussier with stuff. For example, I had a reference to a tld that did not exist in my web.xml, so an app that worked great in 4.0

RE: Help with using mod_jk2

2002-12-09 Thread Robert L Sowders
' [EMAIL PROTECTED] cc: Subject:RE: Help with using mod_jk2 There is some less knowledge-assuming documentation here: http://www.johnturner.com/howto/apache-tomcat-howto.html But I've yet to find nor receive reference to any trully complete documentation. Your best bet

RE: Help : Tomcat freeze ramdomly

2002-12-09 Thread Cox, Charlie
3.2.1 is rather old. you may want to try 3.3(or at least 3.2.4) to see if the problem goes away. You should be able to try this without changing your code. did you set the max concurrent connections(I forget the actual param name) in server.xml? do you have any errors in the logs? Charlie

RE: Help with using mod_jk2 continued

2002-12-09 Thread Theodore A. Jencks
Hi Don, You’re the first response I've got. I'm using Redhat 8.0 and the software will sucessfully build under Redhat 8.0. I haven't gotten it working yet but I believe this is a configuration mistake on my part and not a build problem. If you do indeed get this working please let me know

Re: Help : Tomcat freeze ramdomly

2002-12-09 Thread Bill Barker
Patricio Vera S. [EMAIL PROTECTED] wrote in message 011101c29fbb$007c1db0$9d0464a4@PVERAS">news:011101c29fbb$007c1db0$9d0464a4@PVERAS... Hi, I have tomcat 3.2.1 in a debian linux distribution in production environment. My servlet implement the SingleThreadModelInterface, when I

RE: Help with using mod_jk2

2002-12-08 Thread Madere, Colin
There is some less knowledge-assuming documentation here: http://www.johnturner.com/howto/apache-tomcat-howto.html But I've yet to find nor receive reference to any trully complete documentation. Your best bet is to see if you can make it work with the stuff that's around (and searching the

Re: Help accessing jakarta

2002-12-07 Thread Paul Campbell
Did you get any error messages in the logs ? Are your environment variables such as CATALINA_HOME still valid? At 08:22 PM 12/7/02 -0500, you wrote: Hi, i've recently installed Jakarta in linux. after the installation i've tried to access with localhost:8080 and that have worked good. i've

Re: Help accessing jakarta

2002-12-07 Thread Stephane Baribeau
: Saturday, December 07, 2002 3:32 PM Subject: Re: Help accessing jakarta Did you get any error messages in the logs ? Are your environment variables such as CATALINA_HOME still valid? At 08:22 PM 12/7/02 -0500, you wrote: Hi, i've recently installed Jakarta in linux. after the installation

Re: HELP!! Tomcat crashes on me!

2002-12-03 Thread Rasputin
* Steve R. Burrus [EMAIL PROTECTED] [1201 05:01]: Kwok, the so-called crash is like it just flat disappearing on me!!! I mean, it's like puff, like up in smoke so to speak!! Right, and it's given you an error that explains your server.xml is invalid. Since it seems to work out of the box for

RE: Help with auto-generating Apache config files for mod_jk

2002-12-03 Thread Turner, John
to you. John -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 5:01 PM To: 'Tomcat Users List' Subject: RE: Help with auto-generating Apache config files for mod_jk John wrote: You need two Listener tags, minimum. One at the Server

Re: help! authentication problem

2002-12-03 Thread Nathan Pitts
thanks a bunch, craigyou got me pointed in the right direction! working fine, now --nathan On Monday, December 2, 2002, at 07:39 PM, Craig R. McClanahan wrote: See below. On Mon, 2 Dec 2002, Nathan Pitts wrote: Date: Mon, 2 Dec 2002 19:08:42 -0600 From: Nathan Pitts [EMAIL

Re: HELP!! Tomcat crashes on me!

2002-12-03 Thread Steve R. Burrus
. :) * wrote:From: Rasputin [mailto: [EMAIL PROTECTED]]To: [EMAIL PROTECTED]: Tue, 3 Dec 2002 12:20:10 +Subject: Re: HELP!! Tomcat crashes on me!* Steve R. Burrus [1201 05:01]: Kwok, the so-called crash is like it just flat disappearing

RE: Help with jsp:includes

2002-12-03 Thread Noel J. Bergman
I have pages that have the posibility of having 1000+ jsp:include statements in them. Why? Not to be a smartass, but perhaps there are alternative solutions. --- Noel -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: HELP!! Tomcat crashes on me!

2002-12-02 Thread Bill Barker
In Tomcat's own (very verbose, but who said cats are quiet :) way, it's saying that there are errors in your Context declarations. In particular, the XML is not well-formed (e.g. your elements aren't properly nested). This is usually caused by forgetting a closing-tag, or writing Tag when you

RE: Help with auto-generating Apache config files for mod_jk

2002-12-02 Thread Turner, John
You need two Listener tags, minimum. One at the Server level in server.xml, and one at each Host level. John -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 10:58 AM To: 'Tomcat Users List' Subject: Help with auto-generating Apache

Re: Help with jsp:includes

2002-12-02 Thread rsequeira
1000+ includes in a single page isn't a good idea IMHO. And using jsp:include for all 1000+ includes just aggravates the situation. It would be a good idea to minimize the number of includes by maybe clubbing a few together into one file. Also if looking at static includes as opposed to dynamic

Re: HELP!! Tomcat crashes on me!

2002-12-02 Thread micael
Once again, and for the last time, please tell us everything you did after opening the zip (or whatever) file. There is not that much to do, and we can get you on the right path if you tell us whatever you did. If you won't bother to do that, I am putting you on iggy, Steve. At 10:28 PM

Re: HELP!! Tomcat crashes on me!

2002-12-02 Thread micael
So, you have a Context tag that is not closed. Close it. At 11:26 PM 12/1/2002 -0800, you wrote: Bill, I am about to go to bed, but I couldn't help but displaying the screen dump to u from executing the catalina run command: C:\jakarta-tomcat-4.1.12\bincatalina run Using CATALINA_BASE: ..

Re: HELP!! Tomcat crashes on me!

2002-12-02 Thread Steve R Burrus
Micael, before I refer to my problem w. Tomcat NOT starting the correct/right way for me, I MUST point out something about u (And I frankly don't care at all if this observation of you gets my emails in the future filtered out of your inbox or not!!) and that is that you are WAY TOO DAMNED ABRUPT

Re: HELP!! Tomcat crashes on me!

2002-12-02 Thread micael
I mean to close the tag. Did you misunderstand that? Do you want me to drag on the point? I really have absolutely no interest in insulting you and only am trying to help you. I am not ordering you anything. I just am not taking the time to be as chatty as you would like. Sorry. I am

Re: HELP!! Tomcat crashes on me!

2002-12-02 Thread micael
I have no idea what you did in the server.xml file. I don't know what I put the context path in the ROOT section recently to try to view a JSP in my web browser... could mean you were doing. The context tag is not for JSPs. I really don't know what to say. What I want to say I won't say

RE: HELP!! Tomcat crashes on me!

2002-12-02 Thread Turner, John
Burrus [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 3:59 PM To: Tomcat Users List Subject: Re: HELP!! Tomcat crashes on me! Micael, before I refer to my problem w. Tomcat NOT starting the correct/right way for me, I MUST point out something about u (And I frankly don't

RE: Help with auto-generating Apache config files for mod_jk

2002-12-02 Thread Wendy Smoak
John wrote: You need two Listener tags, minimum. One at the Server level in server.xml, and one at each Host level. Thanks! (It was in the documentation, I stopped reading too early.) I put in the other Listener tag under the Host tag, and it seems to be working. However, I am seeing

Re: help! authentication problem

2002-12-02 Thread Craig R. McClanahan
See below. On Mon, 2 Dec 2002, Nathan Pitts wrote: Date: Mon, 2 Dec 2002 19:08:42 -0600 From: Nathan Pitts [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: help! authentication problem I have a problem that hopefully someone has seen before

Re: HELP!! Tomcat crashes on me!

2002-12-01 Thread micael
The envirnomental variables probably are irrelevant, so long as you did not change the name of your directories, especially the one Tomcat is in. What you probably have is some problem with how you set up the web.xml, or a war or application in the TOMCAT_HOME/webapps directory. Since you

Re: HELP!! Tomcat crashes on me!

2002-12-01 Thread Jacob Kjome
Steve, again, you need to provide more info with your questions if you expect help from people. Tomcat is crashing on me with no more info is totally useless. What are the symptoms? What stacktraces do you see? Any info in the log files? Jake At 01:42 PM 12/1/2002 -0800, you wrote:

Re: HELP!! Tomcat crashes on me!

2002-12-01 Thread smurray
one thing I have learned about running Tomcat on Windows: It works great if I just unzip the bin download file and set the catalina_home environment variable manually. It has problems if I download the installation executable and install it via the installer. just something I have noticed...

Re: HELP!! Tomcat crashes on me!

2002-12-01 Thread Kwok Peng Tuck
Seems to be ok for me , both zip exe. What's the crash like, I mean what errors were displayed? [EMAIL PROTECTED] wrote: one thing I have learned about running Tomcat on Windows: It works great if I just unzip the bin download file and set the catalina_home environment variable manually.

Re: HELP!! Tomcat crashes on me!

2002-12-01 Thread Steve R. Burrus
Subject: Re: HELP!! Tomcat crashes on me! Seems to be ok for me , both zip exe. What's the crash like, I mean what errors were displayed? [EMAIL PROTECTED] wrote: one thing I have learned about running Tomcat on Windows: It works great if I just unzip the bin download file and set

Re: HELP!! Tomcat crashes on me!

2002-12-01 Thread Jacob Kjome
, 2002 6:04 PM Subject: Re: HELP!! Tomcat crashes on me! Seems to be ok for me , both zip exe. What's the crash like, I mean what errors were displayed? [EMAIL PROTECTED] wrote: one thing I have learned about running Tomcat on Windows: It works great if I just unzip the bin download file

Re: HELP!! Tomcat crashes on me!

2002-12-01 Thread Peng Tuck Kwok
settings?! - Original Message - From: Kwok Peng Tuck [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, December 01, 2002 6:04 PM Subject: Re: HELP!! Tomcat crashes on me! Seems to be ok for me , both zip

Re: HELP!! Tomcat crashes on me!

2002-12-01 Thread Steve R Burrus
Listen up, men, I just now got thru with trying/attempting to activate Tomcat on the command line, but WITHOUT SUCCESS!! In fact here, for your reading pleasure, is the DOS screen dump: Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\Documents and

Re: HELP!! Tomcat crashes on me!

2002-12-01 Thread Bill Barker
Despite claims to the contrary, what you want to run on the command line is: catalina run This will dump the error messages to your current consol window, instead of opening another window (that will go away). Steve R Burrus [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL

Re: HELP!! Tomcat crashes on me!

2002-12-01 Thread Steve R Burrus
Bill, I am about to go to bed, but I couldn't help but displaying the screen dump to u from executing the catalina run command: C:\jakarta-tomcat-4.1.12\bincatalina run Using CATALINA_BASE: .. Using CATALINA_HOME: .. Using CATALINA_TMPDIR: ..\temp Using JAVA_HOME: C:\j2sdk1.4.1_01\

Re: HELP!! Tomcat crashes on me!

2002-12-01 Thread Peng Tuck Kwok
Try a different JDK ? Sorry earlier on about asking you to use start.bat should have been catalina.bat I'm using j2sdk1.4.0_02 btw. Steve R Burrus wrote: Bill, I am about to go to bed, but I couldn't help but displaying the screen dump to u from executing the catalina run command:

RE: help for newbie?

2002-11-26 Thread Roberts, Eric
Jered, Do you have a web.xml file which describes and maps your servlet? This should be placed in $CATALINA_HOME/webapps/myapp/WEB-INF Have a look at the examples app for examples. Hope this helps. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Dienstag,

Re: help for newbie?

2002-11-26 Thread David Brown
[EMAIL PROTECTED] writes: Greetings to all. I am new to JSP and Tomcat - but trying diligently to learn quickly. I have what are most probably basic questions. I am using the latest, so I assume, Tomcat 4.1.12. I am attempting to create a Webapp and Servlet. I get the Tomcat 404

<    2   3   4   5   6   7   8   9   10   11   >