Tomcat 5.0.27 Win2k sp4, service.bat JVM Options

2004-08-18 Thread Gary Hirschhorn
I made the following changes to customize service.bat for 5.0.27 running under Windows XP 1) To allow allow compilation of JSPs, changed PR_CLASSPATH to include J2SDK tools.jar: Before: set PR_CLASSPATH=%CATALINA_HOME%\bin\bootstrap.jar After: set

Tomcat 5.0.27 Win2k sp4, service.bat JVM Options

2004-08-09 Thread B Poisson
Hello, I am running Tomcat 5.0.27 on a Windows 2000 sp4 machine as a service. It appears as though the JVM settings that I am trying to use are not being recognized by the system, variables such as -Xms512m or -Xmx512m. Here is what I have tried: 1. Configure Tomcat program that installs with

Tomcat as Win2k service

2004-08-04 Thread Java Techie
Hi, I am using Tomcat5 on win2k Professional. I want to use it as a windows service. Please help. Thanks. Yogesh __ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail

Re: Tomcat as Win2k service

2004-08-04 Thread Emerson Cargnin
I use the same way, just chosse this option when installing through the .exe installer. Java Techie wrote: Hi, I am using Tomcat5 on win2k Professional. I want to use it as a windows service. Please help. Thanks. Yogesh __ Do you Yahoo!? Yahoo! Mail -

RE: [tomcat] Tomcat as Win2k service

2004-08-04 Thread Ernesto Echeverría
. To: Tomcat Users List Subject: [tomcat] Tomcat as Win2k service Hi, I am using Tomcat5 on win2k Professional. I want to use it as a windows service. Please help. Thanks. Yogesh __ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers

RE: Tomcat as Win2k service

2004-08-04 Thread Charles Baker
: Wednesday, August 04, 2004 5:55 PM To: Tomcat Users List Subject: Tomcat as Win2k service Hi, I am using Tomcat5 on win2k Professional. I want to use it as a windows service. Please help. Thanks. Yogesh __ Do you Yahoo!? Yahoo! Mail - 50x more

Re: Tomcat as Win2k service

2004-08-04 Thread Java Techie
Thanks for replies. Now I can see it as a service, but when i try to start it it says Windows cant start the service... If its a non microsoft service... and refer the service specific error code 0 Thanks. --- Java Techie [EMAIL PROTECTED] wrote: Hi, I am using Tomcat5 on win2k Professional.

IIS, Tomcat 5, Win2K issue

2004-06-17 Thread Ellis, Greg
I am having an issue with connecting Tomcat to IIS 5. I am trying to use the isapi_redirector2.dll. Everything appears to be installed correctly, I am getting a green arrow. Tomcat works fine when accessed with the standalone connector. However, when trying to request the tomcat example context

RE: how-to specify Java runtime options -Xmx128m, w/ Tomcat 4as Win2k service

2003-07-24 Thread Larry Meadors
[mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 1:53 PM To: [EMAIL PROTECTED] Subject: how-to specify Java runtime options -Xmx128m, w/ Tomcat 4 as Win2k service after assigning the following environment variables the java runtime options as follows: eg: JAVA_OPTS=-Xmx128m -Xms128m tried

Tomcat 4.1.24/Win2K - Servlet not found.

2003-06-25 Thread Rohit Bapat
Hello, I'm a Tomcat beginner, and I'm having the following problem - The browser can't locate the servlet under URL /servlet. I read some recommended solutions for this in the mailing list, as well as the sample web.xml file on the Tomcat website, but am still having trouble getting the

RE: Tomcat 4.1.24/Win2K - Servlet not found.

2003-06-25 Thread Mike Curwen
] Subject: Tomcat 4.1.24/Win2K - Servlet not found. Hello, I'm a Tomcat beginner, and I'm having the following problem - The browser can't locate the servlet under URL /servlet. I read some recommended solutions for this in the mailing list, as well as the sample web.xml file

Re: Tomcat 4.1.24/Win2K - Servlet not found.

2003-06-25 Thread Tim Funk
http://jakarta.apache.org/tomcat/faq/misc.html#invoker Also look at the sun's webservices developer tutorial. -Tim Rohit Bapat wrote: Hello, I'm a Tomcat beginner, and I'm having the following problem - The browser can't locate the servlet under URL /servlet. I read some recommended

Re: Tomcat 4.1.24/Win2K - Servlet not found.

2003-06-25 Thread Jason Bainbridge
On Thu, 26 Jun 2003 00:37, Rohit Bapat wrote: web-app servlet servlet-nameTesting/servlet-name servlet-class???***/servlet-class /servlet servlet-mapping servlet-name???***/servlet url-pattern???***/url-pattern /servlet-mapping /web-app /me wishes books and tutorials

Re: Tomcat 4.1.24/Win2K - Servlet not found.

2003-06-25 Thread John Turner
, and you should be alright. -Original Message- From: Rohit Bapat [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 11:37 AM To: [EMAIL PROTECTED] Subject: Tomcat 4.1.24/Win2K - Servlet not found. Hello, I'm a Tomcat beginner, and I'm having the following problem - The browser can't

RE: Tomcat 4.1.24/Win2K - Servlet not found.

2003-06-25 Thread Mike Curwen
Subject: Re: Tomcat 4.1.24/Win2K - Servlet not found. Except that using the Invoker is disabled for a reason and should be avoided if possible. John On Wed, 25 Jun 2003 11:44:38 -0500, Mike Curwen [EMAIL PROTECTED] wrote: Look in CATALINA_HOME/conf/web.xml. This is a large

Re: Tomcat 4.1.24/Win2K - Servlet not found.

2003-06-25 Thread Jason Bainbridge
On Thu, 26 Jun 2003 00:44, Tim Funk wrote: http://jakarta.apache.org/tomcat/faq/misc.html#invoker Also look at the sun's webservices developer tutorial. Try getting that kind of support from a commercial product. :) 3 separate answers in less than 10 minutes! Cheers, -- Jason Bainbridge

RE: Tomcat 4.1.24/Win2K - Servlet not found.

2003-06-25 Thread Shapira, Yoav
Howdy, But if I have http://localhost:8080/myApp/servlet/TestingServlet, (without the web.xml file) it doesn't find the servlet. snip Add to your web.xml: servlet-mapping servlet-nameTesting/servlet-name url-pattern/servlet/TestingServlet/url-pattern /servlet-mapping And then the above

RE: Tomcat 4.1.24/Win2K - Servlet not found.

2003-06-25 Thread Rohit Bapat
Thanks everyone for your quick replies. I added Yoav's code snippet to my web.xml and it worked just fine. Thanks Yoav. I just have one more question, why does the url http://localhost:8080/myApp/servlet/TestingServlet work, while http://localhost:8080/myApp/servlet/Testing not work, even though

RE: Tomcat 4.1.24/Win2K - Servlet not found.

2003-06-25 Thread Shapira, Yoav
Howdy, I just have one more question, why does the url http://localhost:8080/myApp/servlet/TestingServlet work, while http://localhost:8080/myApp/servlet/Testing not work, even though I mention the servlet-name as Testing ? Isn't Testing supposed to be 'alias' for the whole name? In that case,

Tomcat on Win2k with IIS problem

2003-04-01 Thread Serges N. Zubkoff
Hi all. I have connected Tomcat 4.1.18 on Win2k to IIS with isapi_redirector2.dll. Everyting works except data uploading through octed stream. When I try to save info to a file (GZip) archive comes wrong. Snding data to Tomcat directly or usiage of the old isapi_redirector.dll solves the problem

tomcat 3.3.1 - win2k iis

2003-01-15 Thread Schultz, Cecilia
Hi, I installed Tomcat 3.3.1 on win2k with IIS. Then I installed an a vendor's web app. When I bring up the vendor's login page, I get this error: === 2003-01-15 07:43:45 - webapps2:/i1440: Reading F:\i1440root\opt\i1440\webapps\i1440\WEB-INF\web.xml 2003-01-15 07:43

Re: tomcat 3.3.1 - win2k iis

2003-01-15 Thread Lior Shliechkorn
Do you have an environment variable set for CLASSPATH containing . ; %JAVA_HOME%\bin; %CATALINA_HOME%\common\lib\servlet.jar ? Schultz, Cecilia [EMAIL PROTECTED] wrote: Hi, I installed Tomcat 3.3.1 on win2k with IIS. Then I installed an a vendor's web app. When I bring up the vendor's login

RE: tomcat 3.3.1 - win2k iis

2003-01-15 Thread Schultz, Cecilia
3.3.1 - win2k iis Hi, I installed Tomcat 3.3.1 on win2k with IIS. Then I installed an a vendor's web app. When I bring up the vendor's login page, I get this error: === 2003-01-15 07:43:45 - webapps2:/i1440: Reading F:\i1440root\opt\i1440\webapps\i1440

RE: tomcat 3.3.1 - win2k iis- examples

2003-01-15 Thread Schultz, Cecilia
: Schultz, Cecilia Sent: Wednesday, January 15, 2003 10:45 AM To: 'Tomcat users list (E-mail)' Subject: RE: tomcat 3.3.1 - win2k iis It seems I am missing some path somewhere. I copied a web app that does work in another server (with another container, not tomcat

RE: tomcat 3.3.1 - win2k iis- examples

2003-01-15 Thread Lior Shliechkorn
) = what am I missing?? Thanks Cecilia -Original Message- From: Schultz, Cecilia Sent: Wednesday, January 15, 2003 10:45 AM To: 'Tomcat users list (E-mail)' Subject: RE: tomcat 3.3.1 - win2k iis It seems I am missing some path somewhere. I copied a web app that does

RE: tomcat 3.3.1 - win2k iis- examples

2003-01-15 Thread Jason Pyeron
: Wednesday, January 15, 2003 10:45 AM To: 'Tomcat users list (E-mail)' Subject: RE: tomcat 3.3.1 - win2k iis It seems I am missing some path somewhere. I copied a web app that does work in another server (with another container, not tomcat) into the problem server. I got a similar error when

Re: tomcat 3.3.1 - win2k iis

2003-01-15 Thread Bill Barker
an older version of servlet.jar (or j2ee.jar) someplace like %JAVA_HOME%\jre\lib\ext. - Original Message - From: Schultz, Cecilia [EMAIL PROTECTED] To: Tomcat users list (E-mail) [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 10:44 AM Subject: RE: tomcat 3.3.1 - win2k iis It seems I

Re: Tomcat as Win2k service vs ModJk

2002-12-05 Thread Bill Barker
cat-user John -Original Message- From: Debra Mendelson, CCE [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 8:31 AM To: [EMAIL PROTECTED] Subject: Tomcat as Win2k service vs ModJk I recently installed Tomcat 4.1.16 behind Apache HTTPD 2.0.42 usin

Tomcat as Win2k service vs ModJk

2002-12-04 Thread Debra Mendelson, CCE
I recently installed Tomcat 4.1.16 behind Apache HTTPD 2.0.42 using mod_jk to connect them together. It works fine except for the fact that I need to actually logon to windows and start tomcat manually. Is it possible to have tomcat come up automatically as a service? As an alternative I am

RE: Tomcat as Win2k service vs ModJk

2002-12-04 Thread Turner, John
Mendelson, CCE [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 8:31 AM To: [EMAIL PROTECTED] Subject: Tomcat as Win2k service vs ModJk I recently installed Tomcat 4.1.16 behind Apache HTTPD 2.0.42 using mod_jk to connect them together. It works fine except for the fact that I

Re: Tomcat as Win2k service vs ModJk

2002-12-04 Thread Jacob Kjome
See: http://www.mattkelli.com/tech/tomcat/ntservice.htm And mod_webapp is deprecated and not being developed anymore. The recommendation is to use mod_jk or mod_jk2 Jake At 08:31 AM 12/4/2002 -0500, you wrote: I recently installed Tomcat 4.1.16 behind Apache HTTPD 2.0.42 using mod_jk to

RE: Tomcat as Win2k service vs ModJk vs JK2

2002-12-04 Thread David Neufeld
-arcims.html Dave -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 6:44 AM To: 'Tomcat Users List' Subject: RE: Tomcat as Win2k service vs ModJk WARP (mod_webapp) is deprecated. Moving to it would be going backwards and cause you

mod_jk2 and Apache 2.43 / TOMCAT on Win2K

2002-10-23 Thread Chris Wolcott
I have things setup with the mod_jk connector, but am trying to use the mod_jk2. (So, I'm a masochist. . . ) I tried to follow the set-ups I've found on the web, but they're all for UNIX machines and entail building the binaries. I found the windows binary for mod_jk2 and put it in.

RE: mod_jk2 and Apache 2.43 / TOMCAT on Win2K

2002-10-23 Thread Turner, John
and Apache 2.43 / TOMCAT on Win2K Importance: High I have things setup with the mod_jk connector, but am trying to use the mod_jk2. (So, I'm a masochist. . . ) I tried to follow the set-ups I've found on the web, but they're all for UNIX machines and entail building the binaries. I found

Problems when starting Apache with Tomcat on Win2K

2002-04-19 Thread Dole, Sachin Sudhakar
Hi I get the following error when starting apache 2 with the directive: LoadModule jk_module modules/mod_jk.dll I have the dll in place. But I dont have the Tomcat running. Is it necessary to configure tomcat to make this directive run? What could be the problem? Warm Regards Sachin Dole

Newbie: How do I rebuild Tomcat under Win2k

2001-08-15 Thread Peter L. Markowsky
I'm really green at this so please bear with me, How does one step by step rebuild Tomcat under a WIN32 enviroment. I'm currently using a p3 500mhz win2k professional machine. Thanks in advance,

RE: Newbie: How do I rebuild Tomcat under Win2k

2001-08-15 Thread Michael Reeves
PROTECTED]] Sent: Wednesday, August 15, 2001 1:02 PM To: Jason Koeninger Cc: [EMAIL PROTECTED] Subject: Newbie: How do I rebuild Tomcat under Win2k I'm really green at this so please bear with me, How does one step by step rebuild Tomcat under a WIN32 enviroment. I'm currently using a p3 500mhz win2k

RE: Newbie: How do I rebuild Tomcat under Win2k

2001-08-15 Thread Tim O'Neil
At 12:38 PM 8/15/2001, you wrote: Having just been through this, start here: http://jakarta.apache.org/tomcat/index.html Download what you need and install/configure according to the information presented therein. Michael, what did you use, DevStudio, or something like Ming32 or GNU for Win32

Tomcat-IIS-Win2k

2001-07-12 Thread Dhwani K. Bhayani
hi! I have installed Tomcat 3.2.1 on Windows 2000 and configured everything as instructed in IIS-howto pages and also did what ever required after reading the archives at this site.I can access by local http://127. 0.0.1:8080/examples/jsp/index.html and all jsp and servlets.But I want to

Re: Tomcat in Win2k with IIS

2001-06-06 Thread Aaron Nance
To answer you question about if there is a difference between the JRE and the J2SDK, the answer is a definite yes. The difference is that the JRE does not come with the Java byte-code compiler and you need that in order to run Tomcat. Also, if you are not sure how to set environment

Tomcat in Win2k with IIS

2001-06-05 Thread Winer, Matthew
I am currently trying to install Tomcat 3.2.2 on a windows 2000 box with IIS. I am really confused. Can Tomcat be run standalone as its own web server? Or does it have to have a webserver installed (like IIS). I tried to follow the tomcat_ug.htm file for installation. I went through the How

RE: Tomcat in Win2k with IIS

2001-06-05 Thread William C. Robertson
: Tomcat in Win2k with IIS I am currently trying to install Tomcat 3.2.2 on a windows 2000 box with IIS. I am really confused. Can Tomcat be run standalone as its own web server? Or does it have to have a webserver installed (like IIS). I tried to follow the tomcat_ug.htm file for installation. I

RE: Tomcat in Win2k with IIS

2001-06-05 Thread Todd Sussman
a problem. In addition it is usually better to create system env. variable rather than user. -Original Message--- -- From: Winer, Matthew [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 11:04 PM To: '[EMAIL PROTECTED]' Subject: Tomcat in Win2k with IIS I am currently trying to install

Help in configuring IIS with tomcat on win2k

2001-05-26 Thread Ajay Gabriel
Hi All, I had followed all the instruction given in Tomcat-iis how to. Tomcat is not working with IIS 5.0 on win2k. I have downloaded release build of tomcat3.2 and got isapi_redirect.dll from win32 directory... I am getting all the

Re: Tomcat on Win2k

2001-04-11 Thread Nico den Boer
al Message - From: Randy Layman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 9:39 PM Subject: RE: Tomcat on Win2k No. If you want to run Tomcat out-of process with IIS as a service you need to: 1. Install Tomcat to work with IIS (which it seems that you have accomplished) 2

Re: Tomcat on Win2k

2001-04-11 Thread Nico den Boer
I have replace the JVM with 1.3.1Beta and installed the NT service. It works fine now. Thank you all very much for the assistence Nico - Original Message - From: Nico den Boer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 11, 2001 9:31 AM Subject: Re: Tomcat

Tomcat on Win2k

2001-04-10 Thread Nico den Boer
Hi there ! I have Tomcat running on a Win2k computer with IIS 5.0. The computer is not local, so I logon using Terminal Services Client (TSC) as a administrator. Everything works fine, until I logout with TSC. Then Tomcat shuts down. Is there a way to keep Tomcat running after I logout ? Any

RE: Tomcat on Win2k

2001-04-10 Thread Anthony Martin
I remember reading something about this on the group a few months ago. If memory serves, it's a bug in JDK 1.3. Anthony Hi there ! I have Tomcat running on a Win2k computer with IIS 5.0. The computer is not local, so I logon using Terminal Services Client (TSC) as a administrator.

Re: Tomcat on Win2k

2001-04-10 Thread Nico den Boer
What JDK are you using ? For example, I can try to switch back to jdk 1.2.2 Nico - Original Message - From: Anthony Martin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 9:09 PM Subject: RE: Tomcat on Win2k I remember reading something about this on the group

RE: Tomcat on Win2k

2001-04-10 Thread Randy Layman
Also this is supposedly fixed in the 1.3.1 beta (haven't tried myself yet). Randy -Original Message- From: Nico den Boer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 3:33 PM To: [EMAIL PROTECTED] Subject: Re: Tomcat on Win2k What JDK are you using

Re: Tomcat on Win2k

2001-04-10 Thread Anthony Martin
documentation: http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/NT-Service-howto.htm l Anthony -Original Message- Subject: Re: Tomcat on Win2k From: "Nico den Boer" [EMAIL PROTECTED] Date: 2001-04-10 19:32:49 What JDK are you using ? For example, I can try

Re: Tomcat on Win2k

2001-04-10 Thread Nico den Boer
it takes or do I overlook something ? Nico - Original Message - From: Anthony Martin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 9:37 PM Subject: Re: Tomcat on Win2k I use JDK 1.3.1 on Windows 2000 Terminal Server. I use the out-process implementation over IIS

RE: Tomcat on Win2k

2001-04-10 Thread Randy Layman
is a bug in the JVM, everything else is working fine, so replacing the JVM should solve everything. Randy -Original Message- From: Nico den Boer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 4:06 PM To: [EMAIL PROTECTED] Subject: Re: Tomcat on Win2k Just for my

Tomcat under Win2k

2001-03-14 Thread Ivan Pilis
Hi all! I'm trying to run Tomcat 3.2.1 under Win2k and this error occures: "error occured duriong initialization of JVM ,java/lang/ClassNotFoundException : sun/io.ByteToCharCp1250". I;ve searched this class and found it in zip file \Winnt\java\packages\afh7j5v5.zip. On the

RE: Tomcat under Win2k

2001-03-14 Thread guyr
, March 14, 2001 7:12 PM To: [EMAIL PROTECTED] Subject: Tomcat under Win2k Hi all! I'm trying to run Tomcat 3.2.1 under Win2k and this error occures: "error occured duriong initialization of JVM ,java/lang/ClassNotFoundException : sun/io.ByteToCharCp1250". I;ve searched this class

Re: tomcat on win2k

2001-02-08 Thread Salvatore Borrelli
- From: "Peter Alfors" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 07, 2001 4:46 PM Subject: Re: tomcat on win2k We have noticed this behaviour as well in NT. If you click in the tomcat window, you will notice the word "Select" appears at

Re: tomcat on win2k

2001-02-07 Thread Salvatore Borrelli
ROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 07, 2001 1:35 AM Subject: RE: tomcat on win2k IE is pretty stupid that way. It does it to me and I am online all the time. The trick is to put the http:// in there explicitly, then it won't convert to local:8080 -Original Messa

RE: tomcat on win2k

2001-02-07 Thread Etienne Baert \(SPS Office\)
ot; [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 07, 2001 1:35 AM Subject: RE: tomcat on win2k IE is pretty stupid that way. It does it to me and I am online all the time. The trick is to put the http:// in there explicitly, then it won't convert to local:8080 -Origina

Re: tomcat on win2k

2001-02-07 Thread Peter Alfors
]] Sent: Tuesday, February 06, 2001 5:10 PM To: [EMAIL PROTECTED] Subject: Re: tomcat on win2k I have the Tomcat 4.0 Dev nightly build (? - i'd have to check which one) running on Windows 2000. I didn't come across any errors. The only thing I couldn't do was actually view the examples web

Re: tomcat on win2k

2001-02-07 Thread Peter Alfors
, don't click inside the window but on its title bar or via its icon in the taskbar to avoid this strange behaviour to happen. Etienne -Original Message- From: Salvatore Borrelli [mailto:[EMAIL PROTECTED]] Sent: mercredi 7 fvrier 2001 15:20 To: [EMAIL PROTECTED] Subject: Re: tomcat on

Re: tomcat on win2k

2001-02-07 Thread Peter Alfors
this was the way in nt4) michael -Original Message- From: Peter Alfors [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 4:28 PM To: [EMAIL PROTECTED] Subject: Re: tomcat on win2k I thought that I tried that. I was not online however. Therefore, when I prefix my

tomcat on win2k

2001-02-06 Thread Lakshmi Bhetanabhotla
Hi , I wanted to know if this servlet engine..( TOMCAT) is supported on Win2K. I have installed it on Win2k, set up all the paths and classpaths, but when I startup the server, the process aborts giving a runtime exception. Has anyone had a similar problem regarding installation of tomcat

Re: tomcat on win2k

2001-02-06 Thread Peter Alfors
the server, the process aborts giving a runtime exception. Has anyone had a similar problem regarding installation of tomcat on win2k. I greatly appreciate any feedback or help on this. Thank You, Lakshmi. _ Get your FREE

RE: tomcat on win2k

2001-02-06 Thread CPC Livelink Admin
PROTECTED] Subject: Re: tomcat on win2k I have the Tomcat 4.0 Dev nightly build (? - i'd have to check which one) running on Windows 2000. I didn't come across any errors. The only thing I couldn't do was actually view the examples web app using IE (i believe 5.5). IE does not want to let me connect

Apache and Tomcat on Win2K

2001-02-03 Thread Graeme Wallace
Hi, I had apache 1.3.14 and tomcat 3.2.1 up and running and everything seemed to be working great while i was developing. I have now moved to doing some load testing on this configuration and for some reason I get diabolical performance from apache serving up static images. Worse it seems to