RE: mod_jk.log errors

2003-05-27 Thread Marco Laponder
OK, let's take a step back and answer a few questions: 1. what module is being loaded by Apache? This is done using the LoadModule directive. Is it mod_jk.so, mod_jk2.so, or both? It is mod_jk.so it is in the mod_jk.conf which is included from the httpd.conf. The mod_jk.conf was

Re: [ot] Re: Tomcat and Weblogic Integration

2003-05-27 Thread John Turner
As already pointed out, Weblogic != Tomcat. Tomcat does not do J2EE. Comparing the two gets you nowhere. People should use what works, and making assumptions or judgements about product quality based on whether something costs money or not is foolish. The proof of that is everywhere. John

System cannot find the path specified !

2003-05-27 Thread DominskiS
Hello Tomcat People, Trying to get started using Tomcat. I did: 1) C:\ set PATH = j2sdk1.4.0_03 2) C:\ set PATH = %JAVA_HOME%\bin;%PATH% 3) C:\ set JDBC_HOME = C:\oracle\jdbc\lib 4) C:\ CATALINA_HOME\bin\startup.bin The error message says: system cannot find the path specified Your

RE: Stopping caching in tomcat

2003-05-27 Thread pete . storey
Surely a querystring has no bearing on a URL mapping? I will add some logging though to see. I have solved the problem with a workaround by putting in META HTTP-EQUIV tags in the header. After looking at MSDN I have added a subtely different tag of expires=-1 instead of expires=0 and it

Re: System cannot find the path specified !

2003-05-27 Thread John Turner
Try startup.bat. There is no startup.bin. John On Tue, 27 May 2003 11:56:30 EDT, [EMAIL PROTECTED] wrote: Hello Tomcat People, Trying to get started using Tomcat. I did: 1) C:\ set PATH = j2sdk1.4.0_03 2) C:\ set PATH = %JAVA_HOME%\bin;%PATH% 3) C:\ set JDBC_HOME = C:\oracle\jdbc\lib 4) C:\

RE: System cannot find the path specified !

2003-05-27 Thread George Sexton
Assuming CATALINA_HOME has already been set, then 4 should be: 4) C:\ %CATALINA_HOME%\bin\startup.bin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 9:57 AM To: [EMAIL PROTECTED] Subject: System cannot find the path specified ! Hello

Re: mod_jk.log errors

2003-05-27 Thread John Turner
Your server.xml file looks OK. Does Tomcat work by itself on port 8080? Let's deal with that first. You should be able to independently reach both http://localhost (Apache) and http://locahost:8080 (Tomcat). Remember that you don't need Apache if you don't want it...Tomcat works just fine

RE: Is servlet chaining possible using Tomcat

2003-05-27 Thread Schwartz, David (CHR)
what is servlet chaining? -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 11:40 AM To: Tomcat Users List Subject: RE: Is servlet chaining possible using Tomcat Howdy, The real question is, is servlet chaining part of the Servlet

RE: Is servlet chaining possible using Tomcat

2003-05-27 Thread Shapira, Yoav
Howdy, See example: http://www.java-conf.gr.jp/wg_bof/servlet/docs/980914/naka/KMCAppendix2. html It relies on the deprecated (with no replacement, for good reasons) ServletContext#getServlet(String) method. Yoav Shapira Millennium ChemInformatics -Original Message- From: Schwartz,

Re: Tomcat - JDBC - MS SQL Driver Recommendations? (was: Tomcat / JDBC / MSSQL / Connection lost and won't reconnect)

2003-05-27 Thread pete . storey
We use iNet software's Sprinta 2000 driver and find it excellent. It is high performance and provides considerably more features than the MS driver. It is not very high cost (a few hundred dollars for a site license IIRC) and is both fully type 4 compliant and small. Their whole range of

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
Assuming CATALINA_HOME has already been set, then 4 should be: At the command prompt I did: C:\ set CATALINA_HOME = C:\jakarta-tomcat-5-bin-20030526 then I did : C:\ CATALINA_HOME\bin\startup.bat and I also tried: C:\ %CATALINA_HONE%\bin\startup.bat the error message both times was: system

Re: System cannot find the path specified !

2003-05-27 Thread Ben Souther
Try setting the env variable without spaces: set CATALINA_HOME=C:\jakarta-tomcat-5-bin-20030526 Then test it: echo %CATALINA_HOME% It will print the value to the command window. Then test it for accuracy: cd %CATALINA_HOME% That should put you in the catalina directory. On Tuesday 27 May 2003

RE: Is servlet chaining possible using Tomcat

2003-05-27 Thread Kannan Sundararajan
Here is the link which can explain about servlet chaining http://info.borland.com/techpubs/books/appserver/appserver40/web/servlets/se rvlet_chains.html -Original Message- From: Schwartz, David (CHR) [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 12:16 PM To: 'Tomcat Users List'

Proper way to deal with serialization of session attribute with Loggerattribute

2003-05-27 Thread Karr, David
I'm using JDK 1.4.1, and Tomcat 4.1.24. I was seeing a strange situation where some cactus/ant tests of mine would succeed on one run, and then fail on the next, and alternate in that pattern continuously. After looking carefully at the Tomcat logs, I discovered that a class that is instantiated

Re: Proper way to deal with serialization of session attribute withLogger attribute

2003-05-27 Thread Tom Oinn
Make the logger static? Effectively the same as you're creating it from the class name anyway, and avoids attempts to serialize it as it's not attached to an object of any kind. Tom Karr, David wrote: I'm using JDK 1.4.1, and Tomcat 4.1.24. I was seeing a strange situation where some

Re: Tomcat - JDBC - MS SQL Driver Recommendations? (was: Tomcat / JDBC / MS SQL / Connection lost and won't reconnect)

2003-05-27 Thread Jason Bainbridge
On Tue, 27 May 2003 23:13, Paul \(BRI\) wrote: had posted this question about reconnection problems with MS's JDBC driver. While it turned out that no one had the same issue on this, I wondered what drivers are best for Tomcat - SQL Server. Are there other suitable free drivers? We've

RE: Is this possible?

2003-05-27 Thread Kannan Sundararajan
Nope it is not possible -Original Message- From: Rohit Peyyeti [mailto:[EMAIL PROTECTED] Sent: Monday, May 26, 2003 3:31 AM To: Tomcat Users List Subject: Is this possible? Hello: Is this scenario possible? I want to run tomcat 3.1, tomcat 4.1 and apache 1.3 on the same machine and

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
Try setting the env variable without spaces: set CATALINA_HOME=C:\jakarta-tomcat-5-bin-20030526 Thank you very much By taking out the spaces when I did C:\set CATALINA_HOME=C:\jakarta-tamcat-5-bin-20030526 and C:\cd %CATALINA_HOME% I got: C:\jakarta-tomcat-5-bin-20030526 But now

RE: Proper way to deal with serialization of session attribute with Logger attribute

2003-05-27 Thread Shapira, Yoav
Howdy, It's dangerous to stick class objects in a session object as attributes, precisely for these serializable type problems. The transient approach should be fine. I would skip the checking if its null or not in every accessor method. The static initialization is still reliable for

Re: Proper way to deal with serialization of session attribute with Logger attribute

2003-05-27 Thread Jacob Kjome
Normally, loggers should be created as class static variable which are, effectively, transient already. Why would you want instance loggers anyway? Loggers are thread safe. Just make it static. You can deal with creating a new logger in the readObject() when the object is deserialized.

Re: System cannot find the path specified !

2003-05-27 Thread Jacob Kjome
um you are cd'ing to a file, not a directory. Of course it can't find the path specified. If you are currently in CATALINA_HOME, type... bin\startup.bat Jake At 01:27 PM 5/27/2003 -0400, you wrote: Try setting the env variable without spaces: set

JAAS Realm on windows NT

2003-05-27 Thread Philip G. Baruc
Can some one give me an example of how to configure a JAASRealm on windows NT. In particular i'm looking for what the realm entry in server.xml would look like, what the login config file would like, and what the web.xml file would look like. I'm using Tomcat 4.1 and jsdk 1.4.1. Thanks, Philip

SendMailServlet

2003-05-27 Thread Mark Irvine LCGI
Hi, I recently installed Tomcat 4.1.24 along side IIS5.0 (W2K). All of the examples work fine with the exception of the SendMailServlet. I have already downloeaded the Jave Mail API and installed it. I have also tried to run the samples provided with the Java Mail API - they all work fine.

RE: Proper way to deal with serialization of session attribute withLogger attribute

2003-05-27 Thread Karr, David
-Original Message- From: Karr, David I'm using JDK 1.4.1, and Tomcat 4.1.24. I was seeing a strange situation where some cactus/ant tests of mine would succeed on one run, and then fail on the next, and alternate in that pattern continuously. After looking carefully at the

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
um you are cd'ing to a file, not a directory. Of course it can't find the path specified. If you are currently in CATALINA_HOME, type... bin\startup.bat Jake i am at: C:\jakarta-tomcat-5-bin-20030526 _ so I did: C:\jakarta-tomcat-5-bin-20030526bin\startup.bat the error message is the

RE: SendMailServlet

2003-05-27 Thread Shapira, Yoav
Howdy, Where did you install the JavaMail jar? Yoav Shapira Millennium ChemInformatics -Original Message- From: Mark Irvine LCGI [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 1:44 PM To: [EMAIL PROTECTED] Subject: SendMailServlet Hi, I recently installed Tomcat 4.1.24 along

Re: System cannot find the path specified !

2003-05-27 Thread Jason Bainbridge
On Wed, 28 May 2003 01:46, [EMAIL PROTECTED] wrote: i am at: C:\jakarta-tomcat-5-bin-20030526 Do a DIR from there you should have bin, common,conf, logs, server, shared,temp,webapps,work If not did you extract the Zip using the directory option (can't remember what WinZip calls it)? If so

Re: SendMailServlet

2003-05-27 Thread streeper
The NoClassDefFoundError is the java file not found error. It's case sensitive. At 06:43 PM 5/27/2003 +0100, you wrote: Hi, I recently installed Tomcat 4.1.24 along side IIS5.0 (W2K). All of the examples work fine with the exception of the SendMailServlet. I have already downloeaded the Jave

[half-offtopic servlet/db layers / log4j

2003-05-27 Thread Emerson Cargnin
I have a doubt regarding use of log4j and layers. eg: I have a DAO class that uses jdbc to get data from db. When a error happen, it calls logger.error, and throws a new exception (DAOException, for exemple), which is catch by the servlet, that in the same way calls for looger.error and

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
On Wed, 28 May 2003 01:46, [EMAIL PROTECTED] wrote: i am at: C:\jakarta-tomcat-5-bin-20030526 Do a DIR from there you should have bin, common,conf, logs, server, shared,temp,webapps,work If not did you extract the Zip using the directory option (can't remember what WinZip calls it)? I did

Re: Tomcat - JDBC - MS SQL Driver Recommendations? (was: Tomcat / JDBC / MS SQL / Connection lost and won't reconnect)

2003-05-27 Thread John Turner
Hah! Cool...I knew that was out there, I just could never remember the name of the darn thing. Thanks for the refresher! John On Wed, 28 May 2003 01:14:05 +0800, Jason Bainbridge [EMAIL PROTECTED] wrote: On Tue, 27 May 2003 23:13, Paul \(BRI\) wrote: had posted this question about

RE: Running Jakarta-Tomcat-3.3.1a as a service

2003-05-27 Thread Larry Isaacs
See: http://jakarta.apache.org/tomcat/tomcat-3.3-doc/NT-Service-howto.html Also see the note at the bottom of: http://jakarta.apache.org/builds/jakarta-tomcat/release/v3.3.1a/bin/win32/i386/ If using a relatively current Sun JDK, you can address this by including at least -Xrs in the

Re: Is this possible?

2003-05-27 Thread John Turner
You are incorrect. It is most certainly possible, and several (many) people have environments like this, both devel and production. I do. John On Tue, 27 May 2003 13:24:49 -0400, Kannan Sundararajan [EMAIL PROTECTED] wrote: Nope it is not possible -Original Message- From: Rohit

Re: System cannot find the path specified !

2003-05-27 Thread John Turner
Better yet: - CD to C:\ - type DIR /S STARTUP.BAT - tell us what the results are (the location of startup.bat) John On Wed, 28 May 2003 01:55:22 +0800, Jason Bainbridge [EMAIL PROTECTED] wrote: On Wed, 28 May 2003 01:46, [EMAIL PROTECTED] wrote: i am at: C:\jakarta-tomcat-5-bin-20030526 Do

RE: SendMailServlet

2003-05-27 Thread Shapira, Yoav
Howdy, The NoClassDefFoundError is the java file not found error. It's case sensitive. This is rapidly climbing up the charts as the most misunderstood Java error. NoClassDefFoundError is not the same as ClassNotFoundException. NoClassDefFoundError does NOT typically indicate a file not found.

Re: System cannot find the path specified !

2003-05-27 Thread John Turner
Start over with a fresh copy (fresh download) of Tomcat. I don't know of a Tomcat distribution that is 61 MB...that's huge. John On Tue, 27 May 2003 14:10:08 EDT, [EMAIL PROTECTED] wrote: On Wed, 28 May 2003 01:46, [EMAIL PROTECTED] wrote: i am at: C:\jakarta-tomcat-5-bin-20030526 Do a DIR

CharConversionException

2003-05-27 Thread Shapira, Yoav
Howdy, Has anyone been seeing java.io.CharConversionException: isHexDigit at org.apache.tomcat.util.buf.UDecoder.convert(UDecoder.java:124) at org.apache.tomcat.util.buf.UDecoder.convert(UDecoder.java:87) at org.apache.tomcat.util.http.Parameters.processParameters(Parameters.java :408) ?

Re: System cannot find the path specified !

2003-05-27 Thread Jason Bainbridge
On Wed, 28 May 2003 02:10, [EMAIL PROTECTED] wrote:   I did extract it. The problem might be that I stopped the download of Tomcat   halfway through and then restarted it. I have 2 copies of Tomcat. One with 9 Meg and one with 61 Meg. 61mb??? Are you sure that isn't the JDK? the

Re: Running tomcat from CD-ROM

2003-05-27 Thread Wolfgang Egger
Servus Sriram, Am Dienstag, 27. Mai 2003 12:00 schrieb Sriram N: Some questions: 1. If your project is browser based, how automatic do you plan to make the solution ? Will the user have to type in the URL ? (I don't know if Un*x has anything like Windows' Internet Shortcuts). As automatic

Re: System cannot find the path specified !

2003-05-27 Thread Jason Bainbridge
On Wed, 28 May 2003 02:20, John Turner wrote: type DIR /S STARTUP.BAT That brings back warm and fuzzy memories from the pre windows 3.1 days, it's amazing all the cool things DOS can do that I've forgotten, that one will come in handy, thanks for reminding me. :) Cheers, -- Jason Bainbridge

Re: Proper way to deal with serialization of session attribute with Logger attribute

2003-05-27 Thread Micael
At 12:31 PM 5/27/03 -0500, you wrote: Normally, loggers should be created as class static variable which are, effectively, transient already. Why would you want instance loggers anyway? Loggers are thread safe. Just make it static. You can deal with creating a new logger in the

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
Better yet: - CD to C:\ - type DIR /S STARTUP.BAT - tell us what the results are (the location of startup.bat) John I did cd C:\ then I said C:\dir /s startup.bat response was Volume in drive C has no label volune serial number is 3E28-A856 Directory of

Re: System cannot find the path specified !

2003-05-27 Thread Jason Bainbridge
On Wed, 28 May 2003 02:31, [EMAIL PROTECTED] wrote: Directory of C:\Jakarta-tomcat-5-bin-20030526\jakarta-tomcat-5\dist\bin forgot about that dist sub directory... You either need to amend your catalina home to be C:\Jakarta-tomcat-5-bin-20030526\jakarta-tomcat-5\dist or move the contents of

Re: CharConversionException

2003-05-27 Thread Andre E. Bar'yudin
On Tue, May 27, 2003 at 02:24:50PM -0400, Shapira, Yoav wrote: Howdy, Has anyone been seeing java.io.CharConversionException: isHexDigit at org.apache.tomcat.util.buf.UDecoder.convert(UDecoder.java:124) at org.apache.tomcat.util.buf.UDecoder.convert(UDecoder.java:87) at

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
Start over with a fresh copy (fresh download) of Tomcat. I don't know of a Tomcat distribution that is 61 MB...that's huge. John I have one Tomcat that says 25 Meg, 61 Meg on disk the other copy says: 9 Meg Can't I just delete one from the Windows Explorer ? It will take a

RE: CharConversionException

2003-05-27 Thread Shapira, Yoav
Howdy, Don't you have an access log? For tomcat or apache, if you use JK Coyote connector? In case of GET method you can locate the offending request... I do have an access log, in the combined pattern. These access logs are very large, however, as I get thousands of requests per hour on

RE: Is Tomcat a standalone Web Server also?

2003-05-27 Thread Kannan Sundararajan
Yes, just change to port 8080 to 80 .. it looks better.. -Original Message- From: Agarwal, Naresh [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 2:36 AM To: [EMAIL PROTECTED] Subject: Is Tomcat a standalone Web Server also? Hi Can I use Tomcat as a standalone WebServer?

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
forgot about that dist sub directory... You either need to amend your catalina home to be C:\Jakarta-tomcat-5-bin-20030526\jakarta-tomcat-5\dist or move the contents of that directory up a level to C:\Jakarta-tomcat-5-bin-20030526\jakarta-tomcat-5 and discard the dist directory. Regards, --

RE: SendMailServlet

2003-05-27 Thread Mark Irvine LCGI
Hi, The JavaMail was installed in a folder called javamail-1.3 in the C drive. The CLASSPATH was updated appropiately. Mark -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: 27 May 2003 18:54 To: Tomcat Users List Subject: RE: SendMailServlet Howdy, Where did

4.0.4 to 4.1.24 Upgrade problems

2003-05-27 Thread Shannon Scott
Hello, I tried to upgrade to the latest and greatest tomcat version today ( 4.1.24 ), but whenever I try to run my index.jsp, I get the following error. An error occurred at line: 2 in the jsp file: /index.jsp Generated servlet error: [javac] Since fork is true, ignoring compiler setting.

RE: SendMailServlet

2003-05-27 Thread Shapira, Yoav
Howdy, What CLASSPATH? You should put the mail.jar (and activation.jar file required by JavaMail) into the WEB-INF/lib directory of the webapp that needs the mail API. Yoav Shapira Millennium ChemInformatics -Original Message- From: Mark Irvine LCGI [mailto:[EMAIL PROTECTED] Sent:

RE: 4.0.4 to 4.1.24 Upgrade problems

2003-05-27 Thread Shapira, Yoav
Howdy, Is your bean in a package? Yoav Shapira Millennium ChemInformatics -Original Message- From: Shannon Scott [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 3:08 PM To: Tomcat Users List Subject: 4.0.4 to 4.1.24 Upgrade problems Hello, I tried to upgrade to the latest and

Oracle Type 4 Driver

2003-05-27 Thread Schwartz, David (CHR)
Can anyone recomend a type 4 driver for oracle 8.1.7? I'm running Tomcat 4.1.24 Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: 4.0.4 to 4.1.24 Upgrade problems

2003-05-27 Thread Shannon Scott
Hello, No. Does it have to be? Thank You Much. Shannon - Original Message - From: Shapira, Yoav [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 3:09 PM Subject: RE: 4.0.4 to 4.1.24 Upgrade problems Howdy, Is your bean in a package? Yoav Shapira

RE: SendMailServlet

2003-05-27 Thread Mark Irvine LCGI
Hi, Many thanks for your reply. This did change the error message to: ENCOUNTERED EXCEPTION: java.lang.NoClassDefFoundError: javax/mail/Session java.lang.NoClassDefFoundError: javax/mail/Session at org.apache.naming.factory.MailSessionFactory$1.run(MailSessionFactory.ja va:163)

Re: System cannot find the path specified !

2003-05-27 Thread John Turner
OK, we're going around in circles. If CATALINA_HOME = C:\Jakarta-tomcat-5-bin-20030526\jakarta-tomcat- 5\dist, then the CORRECT COMMAND is: %CATALINA_HOME%\bin\startup.bat Note the %, note the lack of dist because its already included in the value of CATALINA_HOME. John On Tue, 27 May 2003

RE: 4.0.4 to 4.1.24 Upgrade problems

2003-05-27 Thread Shapira, Yoav
Howdy, Yes. See http://tomcatfaq.sourceforge.net/classnotfound.html for more details and the relevant thread from this list. Yoav Shapira Millennium ChemInformatics -Original Message- From: Shannon Scott [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 3:12 PM To: Tomcat Users

Re: Oracle Type 4 Driver

2003-05-27 Thread Jason Bainbridge
On Wed, 28 May 2003 03:10, Schwartz, David (CHR) wrote: Can anyone recomend a type 4 driver for oracle 8.1.7? I'm running Tomcat 4.1.24 Isn't Oracle's own JDBC Thin Driver type 4? I'm fairly sure it is, it gets installed with the Oracle client, something likew classes12.zip and

Re: 4.0.4 to 4.1.24 Upgrade problems

2003-05-27 Thread John Turner
There are two separate errors here... To resolve the first one, you will need to put JAVA_HOME/bin in your PATH. For JAVA_HOME, use the value of JAVA_HOME, not the variable itself. To resolve the second error, I think Yoav has already replied. John On Tue, 27 May 2003 15:07:38 -0400, Shannon

RE: SendMailServlet

2003-05-27 Thread Shapira, Yoav
Howdy, Many thanks for your reply. This did change the error message to: ENCOUNTERED EXCEPTION: java.lang.NoClassDefFoundError: javax/mail/Session java.lang.NoClassDefFoundError: javax/mail/Session Ah, now we're getting somewhere. You have multiple copies of the JavaMail API of different

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
OK, we're going around in circles. If CATALINA_HOME = C:\Jakarta-tomcat-5-bin-20030526\jakarta-tomcat- 5\dist, then the CORRECT COMMAND is: %CATALINA_HOME%\bin\startup.bat Note the %, note the lack of dist because its already included in the value of CATALINA_HOME. John Thank you very much

Re: System cannot find the path specified !

2003-05-27 Thread Jason Bainbridge
On Wed, 28 May 2003 03:22, [EMAIL PROTECTED] wrote: I did C:\ %CATALINA_HOME%\bin\startup.bat and still get system cannot find the path specified Lets try this the easy way... Find the file in Windows Explorer either by searching for it or navigating into the right directory and just double

Re: CharConversionException

2003-05-27 Thread Andre E. Bar'yudin
On Tue, May 27, 2003 at 02:46:38PM -0400, Shapira, Yoav wrote: Howdy, Don't you have an access log? For tomcat or apache, if you use JK Coyote connector? In case of GET method you can locate the offending request... I do have an access log, in the combined pattern. These access logs

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
Lets try this the easy way... Find the file in Windows Explorer either by searching for it or navigating into the right directory and just double click on it. Hopefully that will work. :) Also can you do a: set CATALINA_HOME and let us know what it returns? When I go to windows explorer I

RE: CharConversionException

2003-05-27 Thread Shapira, Yoav
Howdy, No timestamping is bad... is increasing the debug level of the connector an option for you? I suppose I could try that. Heopfully the exception will come up again after I do. My wild guess is that there could be a mismatch between the request declared (or assumed by tomcat/defined in

Re: System cannot find the path specified !

2003-05-27 Thread John Turner
startup in the bin directory On Tue, 27 May 2003 15:43:36 EDT, [EMAIL PROTECTED] wrote: Lets try this the easy way... Find the file in Windows Explorer either by searching for it or navigating into the right directory and just double click on it. Hopefully that will work. :) Also can you do

RE: Oracle Type 4 Driver

2003-05-27 Thread Schwartz, David (CHR)
thanks. got it. can you point me to a simple example of using it in servlet with basic select statement (to help get started)? thanks -Original Message- From: Jason Bainbridge [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 3:16 PM To: Tomcat Users List Subject: Re: Oracle Type 4

Problem with Message Archives?

2003-05-27 Thread Kevin Andryc
Hi, I was wondering if anyone has problems obtaining archived messages when performing a search? I have tried several times but have received a 403: Forbidden message on every message I have received back from the search. Thanks, Kevin

Re: System cannot find the path specified !

2003-05-27 Thread Jason Bainbridge
On Wed, 28 May 2003 03:43, [EMAIL PROTECTED] wrote: CATALINA_HOME=C:\set CATALINA_HOME=C:\jakarta-tomcat-5-bin-20030526\jakarta-tomcat-5\dist CATALINA_HOME  =   C:\jakarta-tomcat-5-bin-20030526 Maybe the problem is that when I created a new one I still had the first one. I'd say you have a

Jboss to parse exsisting tomcat server.xml ...

2003-05-27 Thread graghupathy
Hi, Can any one tell me ( or give me ) an example of how to make jboss parse my existing tomcat server.xml file ??? jboss 3.0.X and tomcat 4.1.18. ( windows / linux ) Thanks Regards Guru :-) - To

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
startup in the bin directory Thank you for your assistance. It is appreciated ! I double clicked on the 'startup file in the bin directory the error message said: The JAVA_HOME environment variable is not defined. the environment variable is needed to run this program using CATALINA_BASE

RE: SendMailServlet

2003-05-27 Thread Mark Irvine LCGI
Hi, Thank you very much for your help - It Works!!! However I'm still a little confused. Before moving the mail.jar and activation.jar files to the common\lib folder, they were in the examples\WEB-INF\lib (I had to create the lib folder). I checked the entire tomcat directory and there was

Re: Oracle Type 4 Driver

2003-05-27 Thread Jason Bainbridge
On Wed, 28 May 2003 03:50, Schwartz, David (CHR) wrote: thanks. got it. can you point me to a simple example of using it in servlet with basic select statement (to help get started)? A quick google turned up: http://www.classicity.com/oracle/htdocs/forums/ClsyForumID124/7.html You would be

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
Easiest way to fix it is to Right click on My Computer, Properties, Advanced tab, Environment Variables button, then find CATALINA_HOME in the top User Variables box, delete it, then find it in the System Variables box and make sure it points to the full path of the dist directory. I did not

Re: System cannot find the path specified !

2003-05-27 Thread Jason Bainbridge
On Wed, 28 May 2003 03:56, [EMAIL PROTECTED] wrote: The JAVA_HOME environment variable is not defined. the environment variable is needed to run this program Have you got a JDK installed? If not you need one... Then you need to create an environment variable JAVA_HOME similar to CATALINA_HOME

Re: CharConversionException

2003-05-27 Thread Andre E. Bar'yudin
On Tue, May 27, 2003 at 03:43:25PM -0400, Shapira, Yoav wrote: Howdy, No timestamping is bad... is increasing the debug level of the connector an option for you? I suppose I could try that. Heopfully the exception will come up again after I do. My wild guess is that there could be

Re: System cannot find the path specified !

2003-05-27 Thread John Turner
Ugh. For setting JAVA_HOME, see my HOWTO: http://www.johnturner.com/howto/winxp- howto.html For setting CATALINA_HOME, see my HOWTO: http://www.johnturner.com/howto/winxp-howto.html You need both. Once both are set, reboot, then try starting Tomcat again. John On Tue, 27 May 2003 16:03:15

RES: Oracle Type 4 Driver

2003-05-27 Thread Jose Euclides da Silva Junior - DATAPREVRJ
I am using the thin(?) client 8.17 with TomCat 4.1.18 and CPDS ( connection pool ). No problem yet. Euclides. -Mensagem original- De: Schwartz, David (CHR) [mailto:[EMAIL PROTECTED] Enviada em: terça-feira, 27 de maio de 2003 16:10 Para: 'Tomcat Users List' Assunto: Oracle Type 4 Driver

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
John, Your web site is a great help. I am taking time to study there now Thanks very much ! Stan Ugh. For setting JAVA_HOME, see my HOWTO: http://www.johnturner.com/howto/winxp- howto.html For setting CATALINA_HOME, see my HOWTO: http://www.johnturner.com/howto/winxp-howto.html

Re: System cannot find the path specified !

2003-05-27 Thread DominskiS
On Wed, 28 May 2003 03:56, [EMAIL PROTECTED] wrote: The JAVA_HOME environment variable is not defined. the environment variable is needed to run this program Have you got a JDK installed? If not you need one... I have j2sdk1.4.0_03 At the command prompt I did C:\JAVA_HOME=C:\j2sdk1.4.0_03

Re: Firebird|Tomcat java.sql.SQLException: Cannot load JDBC driver class 'null'

2003-05-27 Thread Rob Casteen
Thank you Chong for your reply, Perhaps I need to clarify, I have downloaded the FirebirdSQL-1.0.0 (Jaybird) driver and am following the directions in the FAQ file, with modifications to the connection url for the fact that I am on a windows system. As far as the type 4 driver that is included

RE: Firebird|Tomcat java.sql.SQLException: Cannot load JDBC dri ver class 'null'

2003-05-27 Thread graghupathy
if it ias zip file then rename it to jar and put it into common lib directory of tomcat :) -Original Message- From: Rob Casteen [mailto:[EMAIL PROTECTED] Sent: 27 May 2003 21:59 To: Tomcat Users List Subject: Re: Firebird|Tomcat java.sql.SQLException: Cannot load JDBC dri ver class

RE: System cannot find the path specified !

2003-05-27 Thread Longley, Andrew
I'm sure you're past this, but the first line (line 1) is not correct. You need to set PATH=c:\j2sdk1.4.0_03 or whatever. (you are missing the c:) Andrew -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 10:57 AM To: [EMAIL PROTECTED]

is it a good practice?

2003-05-27 Thread Jose Euclides da Silva Junior - DATAPREVRJ
I am using the package CPDS ( connection pooling ) into my init() method of my servlet, which is called from an initial jsp form.Is it really a good practice, since i am building a small system. Regards, Euclides. - To

Re: Firebird|Tomcat java.sql.SQLException: Cannot load JDBC driver class 'null'

2003-05-27 Thread Jason Bainbridge
On Sat, 24 May 2003 06:53, Rob Casteen wrote: You need this first: Resource name=jdbc/TestDB auth=Container type=javax.sql.DataSource/ ***Server.xml additions: ResourceParams name=TestDB Should be ResourceParams name=jdbc/TestDB

Address help

2003-05-27 Thread Christian Fredrickson
have a Tomcat server (v. 4) running on a Windows 2000 server. It has 2 NICs with separate IP addresses. It also runs IIS. I have set IIS to run on one address and Tomcat on another. I used the Server.xml file and set the connector tags with a address=x.x.x.x value in order to have it start on

Good practice with connection pooling

2003-05-27 Thread Jose Euclides da Silva Junior - DATAPREVRJ
I am using the package CPDS ( connection pooling ) into my init() method of my servlet, which is called from an initial jsp form.Is it really a good practice, since i am building a small system. Regards, Euclides. - To

Re: Is Tomcat a standalone Web Server also?

2003-05-27 Thread Hassan
Yes offcourse. Further, I think J2EE Server is all but Tomcat implementation ;) Hassan - Original Message - From: Agarwal, Naresh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 7:36 AM Subject: Is Tomcat a standalone Web Server also? Hi Can I use Tomcat as a

arrowhead asp server on win xp

2003-05-27 Thread streeper
Does anyone have the arrowhead asp server running on win xp? thanks, Bill Streeper --- [SMGazette.com E-mail is scanned for viruses by Declude Virus] [Visit us on the web at SMGazette.com] - To unsubscribe, e-mail: [EMAIL

servlet question

2003-05-27 Thread Paul Hsu
Hi, I try to forward a HTTP request from my servlet. I am using the following code. RequestDispatcher rd = getServletContext().getRequestDispatcher(direct); rd.forward(request, response); I have no problem with code, but I have one issue is how can I change the request

Re: servlet question

2003-05-27 Thread Emerson Cargnin
for what you want to change the request method. I usally call doGet from doPost, so i do everything in the get method Paul Hsu wrote: Hi, I try to forward a HTTP request from my servlet. I am using the following code. RequestDispatcher rd =

RES: servlet question

2003-05-27 Thread Jose Euclides da Silva Junior - DATAPREVRJ
try doGet() instead of doPost(). good luck. -Mensagem original- De: Paul Hsu [mailto:[EMAIL PROTECTED] Enviada em: terça-feira, 27 de maio de 2003 19:27 Para: [EMAIL PROTECTED] Assunto: servlet question Hi, I try to forward a HTTP request from my servlet. I am using the following code.

Re: Is servlet chaining possible using Tomcat

2003-05-27 Thread Hassan
Not sure if servlet chaining is still supported as that's now a deprecated practice. Use Servlet Collaboration to achieve the same. - Original Message - From: Bilal Ahmad [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 4:38 PM Subject: Is servlet chaining possible

Re: is it a good practice?

2003-05-27 Thread Emerson Cargnin
I use other connection pool framework, http://www.bitmechanic.com/. I have a ConnManager servlet, which uses a static Class to configure the pools (by the web.xml params). The others apps just call a static method in my class to get the connection. in this way i decouple the connection

Re: servlet question

2003-05-27 Thread Paul Hsu
Thank you for the help. I think you may misunderstand my question. My question is how can I forward the request to my next URL and change the method to 'GET' if the orignal request is using 'POST'. For example: test1.html call servlet1 by using POST method, but servlet1 need to forward to

RE: servlet question

2003-05-27 Thread Tam, Michael
Just a wild guess, how about servlet 1 doPost() call its own doGet() and redirect in the doGet body??? -Original Message- From: Paul Hsu [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 3:41 PM To: Tomcat Users List Subject: Re: servlet question Thank you for the help. I think you

Re: servlet question

2003-05-27 Thread Hassan
if your dispatched request is getting problems because of non compatible types of GET/Post methods at collaborating servlets then at the receiving end add a dummy method of (Get or Post), whichever is missing, and forward the processing to the actual method. For example: protected void

Re: servlet question

2003-05-27 Thread Paul Hsu
Actually my servlet try to forward a 'POST' request to a Flash program, but the Flash program cannot process 'POST', so I must forward the request to Flash with 'GET' method. That is my issue. - Original Message - From: Hassan [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]

Re: servlet question

2003-05-27 Thread Paul Hsu
My code is doing this way already, but it does not work.You think the method will change if I forward the POST request inside doGet(). - Original Message - From: Tam, Michael [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 3:44 PM Subject: RE:

Re: Problem with Message Archives?

2003-05-27 Thread Tim Funk
http://marc.theaimsgroup.com/ worked fine for me. -Tim Kevin Andryc wrote: Hi, I was wondering if anyone has problems obtaining archived messages when performing a search? I have tried several times but have received a 403: Forbidden message on every message I have received back from the

  1   2   >