Re: Tomcat + win 98

2001-04-10 Thread Lance Dyas

Myself as well, it works in win98, I too had problems with
startup.bat... the other
difficulty involved having the right java version on the machine,

Danny Angus wrote:
 
 it does run on win98, i have it on my laptop, but I only had problems with
 startup.bat, once I cured them it was OK.
 
 you have to put http:// infront of addresses with port numbers, is that it?
 try http://127.0.0.1:8080/  I hope it is !
 
 -Original Message-
 From: Mike Campbell [mailto:[EMAIL PROTECTED]]
 Sent: Monday, April 09, 2001 4:57 PM
 To: Tomcat list (E-mail)
 Subject: Tomcat + win 98
 
 I take it from various other posts here that tomcat does indeed work with
 Windows '98.  Are there any special things outside the normal stuff
 mentioned in the docs to get it working?
 I've gotten Tomcat working fine on NT, but at home on my '98 box, it seems
 to not be working.  Everything seems to get set up properly according to the
 logs, but when I hit: 127.0.0.1:8080, I get a "page not found" error, but
 the title displayed in the browser (ie 5.x) says "Invalid Syntax Error".
 This ring a bell with anyone?
 Thanks

-- 
*
Dragonlord Garthans - Decision Driven Gaming - Role Play center
http://incolor.inetnebr.com/lancelot/roleplay
Want custom art for your RPG characters?
*




RE: Tomcat + win 98

2001-04-10 Thread Mike Campbell
Title: RE: Tomcat + win 98






I got it working last night thanks to all your help; indeed not specifying the protocol in the browser address line was the problem.

Thanks


 -Original Message-
 From: Lance Dyas [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, April 10, 2001 6:42 AM
 To: [EMAIL PROTECTED]
 Subject: Re: Tomcat + win 98
 
 
 Myself as well, it works in win98, I too had problems with
 startup.bat... the other
 difficulty involved having the right java version on the machine,
 
 Danny Angus wrote:
  
  it does run on win98, i have it on my laptop, but I only 
 had problems with
  startup.bat, once I cured them it was OK.
  
  you have to put http:// infront of addresses with port 
 numbers, is that it?
  try http://127.0.0.1:8080/ I hope it is !
  
  -Original Message-
  From: Mike Campbell [mailto:[EMAIL PROTECTED]]
  Sent: Monday, April 09, 2001 4:57 PM
  To: Tomcat list (E-mail)
  Subject: Tomcat + win 98
  
  I take it from various other posts here that tomcat does 
 indeed work with
  Windows '98. Are there any special things outside the normal stuff
  mentioned in the docs to get it working?
  I've gotten Tomcat working fine on NT, but at home on my 
 '98 box, it seems
  to not be working. Everything seems to get set up properly 
 according to the
  logs, but when I hit: 127.0.0.1:8080, I get a page not 
 found error, but
  the title displayed in the browser (ie 5.x) says Invalid 
 Syntax Error.
  This ring a bell with anyone?
  Thanks
 
 -- 
 *
 Dragonlord Garthans - Decision Driven Gaming - Role Play center
 http://incolor.inetnebr.com/lancelot/roleplay
 Want custom art for your RPG characters?
 *
 





RE: Tomcat + win 98

2001-04-10 Thread Anthony Martin

I got Tomcat 3.2.1 to work on Windows ME at home as a hidden process at
startup by adding to the RunService key of the registry.  To keep Tomcat
from interacting with the desktop, you need to adjust tomcat.bat to execute
javaw.exe instead of java.exe.

Another tip, try running the command like this:

c:\windows\command.com /e:2048 /c %TOMCAT_HOME%\bin\tomcat.bat start

This allocates plenty of room in the good old environment space.


Anthony

It is by caffeine alone I set my mind in motion.
It is by the Beans of Java that thoughts acquire speed,
the hands acquire shaking, the shaking becomes a warning.
It is by caffeine alone I set my mind in motion.



Re: Tomcat + win 98

2001-04-09 Thread Jim Cheesman

At 05:56 PM 4/9/2001, you wrote:

I take it from various other posts here that tomcat does indeed work with 
Windows '98.  Are there any special things outside the normal stuff 
mentioned in the docs to get it working?

I've gotten Tomcat working fine on NT, but at home on my '98 box, it seems 
to not be working.  Everything seems to get set up properly according to 
the logs, but when I hit: 127.0.0.1:8080, I get a "page not found" error, 
but the title displayed in the browser (ie 5.x) says "Invalid Syntax Error".

Have you tried with the full protocol (ie. http://127.0.0.1:8080)?



--

   *   Jim Cheesman   *
 Trabajo: [EMAIL PROTECTED] - (34)(91) 724 9200 x 2360
   Personal: [EMAIL PROTECTED] (34) 606 770 244
  Practice safe eating -- always use condiments.
















RE: Tomcat + win 98

2001-04-09 Thread Danny Angus

it does run on win98, i have it on my laptop, but I only had problems with
startup.bat, once I cured them it was OK.

you have to put http:// infront of addresses with port numbers, is that it?
try http://127.0.0.1:8080/  I hope it is !



-Original Message-
From: Mike Campbell [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 09, 2001 4:57 PM
To: Tomcat list (E-mail)
Subject: Tomcat + win 98


I take it from various other posts here that tomcat does indeed work with
Windows '98.  Are there any special things outside the normal stuff
mentioned in the docs to get it working?
I've gotten Tomcat working fine on NT, but at home on my '98 box, it seems
to not be working.  Everything seems to get set up properly according to the
logs, but when I hit: 127.0.0.1:8080, I get a "page not found" error, but
the title displayed in the browser (ie 5.x) says "Invalid Syntax Error".
This ring a bell with anyone?
Thanks




RE: Tomcat + win 98

2001-04-09 Thread Mike Campbell
Title: RE: Tomcat + win 98





 Have you tried with the full protocol (ie. http://127.0.0.1:8080)?


Of course not, since that would be the logical thing, wouldn't it? =)


I'll give that a shot tonight; thanks.