RE: Re: trying with my first site on Tomcat with IIS 5.0 (3)

2005-02-24 Thread Matt
How is this different from the jk_1.2.8 installer (except for being jk2
instead of jk)?
Is it wise to recommend any new install use jk2 if it's been abandoned,
especially since no one has provided a reason to use it over jk (at least
as of the latest jk_1.2.8)?

Does this installer setup the ISAPI filter and Application Configuration
as well?  If so, it's got an edge on the jk_1.2.8.exe installer in that
regard.  Those were the only two manual steps needed to just get the
examples working under webapps/.

Curious,
-Matt


On Thu, 24 Feb 2005, Aris Javier wrote:

 Hi David,

 I have the same problem like yours before. And found this site.
 http://www.shiftomat.com/opensource/

 It's effective and it's free! =)

 I've been using this for a long time now and encountered no problems.

 Hope this helps.
 Aris
 Philippines


 -Original Message-
 From: Matt [mailto:[EMAIL PROTECTED]
 Sent: Thursday, February 24, 2005 12:07 AM
 To: Tomcat Users List
 Subject: Re: Re: trying with my first site on Tomcat with IIS 5.0 (3)

 These are documented in lots of places (Google for the terms), but
 confusing in that they have the extra instructions that you don't need
 when you use the jk_1.2.8.exe (that installer is GREAT, it's all the
 various docs that need updating and clarification).

 The link that I sent you (and you refer to below) is what I used to
 configure IIS 5 on Win2K myself.  Again, don't be confused by what the
 jk_1.2.8.exe installer has already done for you, just move on to the
 next step(s).
 In IIS 5, you will still have to:
 1) Add the ISAPI filter (clear in the instructions)
 2) Add Application Configuration for .jsp w via the 1.2.8 DLL (not as
   clear, if at all in the instructions)

 It seems some docs expect that Step 1 and Step 2 are the same thing, but
 they're not.  If you're having trouble with the two steps above, you may
 need to investigate IIS configuration docs/instructions.  Let me know,
 but I'm not in front of this system again until late tonight to try to
 give you any more epxlicit step-by-step instructions.

 Thanks!
 -Matt


 On Wed, 23 Feb 2005, David IBARRA ROSALES wrote:

  Thanks Allistair
 
  Is there documentations for IIS 6.0 , I use IIS 5.0 on win2000,  I
  have found something new in documentation IIS 6.0:
  http://web.archive.org/web/20031229123839/www.rit.edu/~ack5504/tomcat-
  iis6-howto/WebServiceExtension.JPG
  that maybe help me if I found the similar in  IIS 5
 
  I already know , I 'd have use IIS 6.0, but i don'want to do more MS
  upgrading , o maybe Linux and Apache :o , but that will have time,
  menwhile I  change JSP and PHP for ASP.
 
  Regards
  David
 
 
  - Original Message -
  From: Allistair Crossley [EMAIL PROTECTED]
  To: Tomcat Users List tomcat-user@jakarta.apache.org
  Sent: Wednesday, February 23, 2005 11:59 AM
  Subject: RE: Re: trying with my first site on Tomcat with IIS (2)
 
 
  actually Matt appears to be correct I admit - i've just checked our
  1.2.8 config and it is indeed uriworkersmap.properties you need to add

  your mappings to.
 
  sorry for the confusion
 
   -Original Message-
   From: David IBARRA ROSALES [mailto:[EMAIL PROTECTED]
   Sent: 23 February 2005 15:05
   To: Tomcat Users List
   Subject: Re: trying with my first site on Tomcat with IIS (2)
  
  
   Thanks Allistar
  
   I will go on trying... it can be only a small thing i think your

   message encourage me, David
  
   mytwo files show this
   --
   # workers.properties.minimal -
   worker.list=ajp13w
  
   worker.ajp13w.type=ajp13
   worker.ajp13w.host=localhost
   worker.ajp13w.port=8009
   --
   # uriworkermap.properties - IIS
   #
   /test/*=ajp13w
  
  
   - Original Message -
   From: Allistair Crossley [EMAIL PROTECTED]
   To: Tomcat Users List tomcat-user@jakarta.apache.org
   Sent: Wednesday, February 23, 2005 11:43 AM
   Subject: RE: trying with my first site on Tomcat with IIS
  
  
   i was just going by the latest JK 1.2.8 documentation which
   discusses only the configuration of workers.properties.
   uriworkersmap used to be the file used for jk2 style config.
  
   http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html
  
-Original Message-
From: Matt [mailto:[EMAIL PROTECTED]
Sent: 23 February 2005 14:36
To: Tomcat Users List
Subject: RE: trying with my first site on Tomcat with IIS
   
   
Actually, that's not entirely true.
If you use jk_1.2.8.exe on Windows to install, it creates its own
folder (I forget the name and am away from this system at present,

maybe ISAPI Redirection DLL or such, sorry!) at the same level as
$CATALINA_HOME (Tomcat 5.5 in my case).  In there is a conf folder

and in
   there are:
uriworkermap.properties
-AND-
workers.properties.minimal
   
You *should not* have to touch the second file, and will make all
of your configurations in 

RE: trying with my first site on Tomcat with IIS

2005-02-23 Thread Allistair Crossley
Hi,

This is such a well documented configuration. I suggest you either search the 
list archives, or head to Tomcat's documentation page and look at the JK for 
IIS documentation.

You'll need the ISAPI DLL, a workers.properties file to map URLs to Tomcat from 
IIS, and a set of Windows registry settings to configure the JK ISAPI DLL. All 
this can be found readily in the JK documentation or a simple search in google.

Allistair.

 -Original Message-
 From: David IBARRA ROSALES [mailto:[EMAIL PROTECTED]
 Sent: 23 February 2005 14:23
 To: Tomcat Users List
 Subject: trying with my first site on Tomcat with IIS
 
 
 Hi everybody
 
 I've created a folder called test on webapps and a website on IIS
 (include ISAPI and virtual directory jakarta) with the same target.
 when i call with  http://localhost:8080/test/test.jsp works,  
 but when i
 call it on the browser:   http://localhost/test.jsp , does not work.
 need I to do  any change in server.xml or 
 uriworkermap.properties every time
 that i add a site?
 
 
 test.jsp
 -
 html
 head
 titleFirst JSP page./title
 /head
 body
 %=Hello JSP%
 /body
 /html
 ---
 
 thanks in advance
 David
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLUE 
---
QAS Ltd.
Developers of QuickAddress Software
a href=http://www.qas.com;www.qas.com/a
Registered in England: No 2582055
Registered in Australia: No 082 851 474
---
/FONT


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: trying with my first site on Tomcat with IIS

2005-02-23 Thread Matt
You may just need to add a line like:
/test/*=ajp13w
...or similar, to your uriworkermap.properties file.

You shouldn't need to add a context to server.xml if you're putting
this in $CATALINA_HOME/webapps, though I may be mistaken as I am
wrapping-up my own learning curve on this.

Thanks,
-Matt


On Wed, 23 Feb 2005, David IBARRA ROSALES wrote:

 Hi everybody

 I've created a folder called test on webapps and a website on IIS
 (include ISAPI and virtual directory jakarta) with the same target.
 when i call with  http://localhost:8080/test/test.jsp works,  but when i
 call it on the browser:   http://localhost/test.jsp , does not work.
 need I to do  any change in server.xml or uriworkermap.properties every time
 that i add a site?


 test.jsp
 -
 html
 head
 titleFirst JSP page./title
 /head
 body
 %=Hello JSP%
 /body
 /html
 ---

 thanks in advance
 David


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Matthew Kozak
Rutgers University-Camden
[EMAIL PROTECTED]

**
 They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety.  -Ben Franklin
**

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: trying with my first site on Tomcat with IIS

2005-02-23 Thread Allistair Crossley
And bear in mind that uriworkersmap is for JK2 which is no longer supported 
although it of course works. If you are starting out, you will want JK 1.2.8 
and therefore workers.properties will be the file to declare URL mappings.

 -Original Message-
 From: Matt [mailto:[EMAIL PROTECTED]
 Sent: 23 February 2005 14:17
 To: Tomcat Users List
 Subject: Re: trying with my first site on Tomcat with IIS
 
 
 You may just need to add a line like:
 /test/*=ajp13w
 ...or similar, to your uriworkermap.properties file.
 
 You shouldn't need to add a context to server.xml if you're putting
 this in $CATALINA_HOME/webapps, though I may be mistaken as I am
 wrapping-up my own learning curve on this.
 
 Thanks,
 -Matt
 
 
 On Wed, 23 Feb 2005, David IBARRA ROSALES wrote:
 
  Hi everybody
 
  I've created a folder called test on webapps and a 
 website on IIS
  (include ISAPI and virtual directory jakarta) with the same target.
  when i call with  http://localhost:8080/test/test.jsp 
 works,  but when i
  call it on the browser:   http://localhost/test.jsp , does not work.
  need I to do  any change in server.xml or 
 uriworkermap.properties every time
  that i add a site?
 
 
  test.jsp
  -
  html
  head
  titleFirst JSP page./title
  /head
  body
  %=Hello JSP%
  /body
  /html
  ---
 
  thanks in advance
  David
 
 
  
 -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 Matthew Kozak
 Rutgers University-Camden
 [EMAIL PROTECTED]
 
 **
 
  They that can give up essential liberty to obtain a little temporary
   safety deserve neither liberty nor safety.  -Ben Franklin
 **
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLUE 
---
QAS Ltd.
Developers of QuickAddress Software
a href=http://www.qas.com;www.qas.com/a
Registered in England: No 2582055
Registered in Australia: No 082 851 474
---
/FONT


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: trying with my first site on Tomcat with IIS

2005-02-23 Thread Viorel Dragomir
Try with google.
You can find an how to on jakarta.apache.org site.

Or you can ask your friends.



Viorel Dragomir

.
..
---



- Original Message - 
From: David IBARRA ROSALES 
To: Tomcat Users List 
Sent: Wednesday, February 23, 2005 16:22
Subject: trying with my first site on Tomcat with IIS


Hi everybody

I've created a folder called test on webapps and a website on IIS
(include ISAPI and virtual directory jakarta) with the same target.
when i call with  http://localhost:8080/test/test.jsp works,  but when i
call it on the browser:   http://localhost/test.jsp , does not work.
need I to do  any change in server.xml or uriworkermap.properties every time
that i add a site?


test.jsp
-
html
head
titleFirst JSP page./title
/head
body
%=Hello JSP%
/body
/html
---

thanks in advance
David


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: trying with my first site on Tomcat with IIS

2005-02-23 Thread David IBARRA ROSALES
Thanks Viorel

you are a smart boy ! I 'had forgotten about google and jakarta.apache.org
site .
really thanks ! but I came from there...


- Original Message - 
From: Viorel Dragomir [EMAIL PROTECTED]
To: Tomcat Users List tomcat-user@jakarta.apache.org
Sent: Wednesday, February 23, 2005 11:21 AM
Subject: Re: trying with my first site on Tomcat with IIS


Try with google.
You can find an how to on jakarta.apache.org site.

Or you can ask your friends.



Viorel Dragomir

.
..
---



- Original Message - 
From: David IBARRA ROSALES
To: Tomcat Users List
Sent: Wednesday, February 23, 2005 16:22
Subject: trying with my first site on Tomcat with IIS


Hi everybody

I've created a folder called test on webapps and a website on IIS
(include ISAPI and virtual directory jakarta) with the same target.
when i call with  http://localhost:8080/test/test.jsp works,  but when i
call it on the browser:   http://localhost/test.jsp , does not work.
need I to do  any change in server.xml or uriworkermap.properties every time
that i add a site?


test.jsp
-
html
head
titleFirst JSP page./title
/head
body
%=Hello JSP%
/body
/html
---

thanks in advance
David


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: trying with my first site on Tomcat with IIS

2005-02-23 Thread Matt
Actually, that's not entirely true.
If you use jk_1.2.8.exe on Windows to install, it creates its own folder
(I forget the name and am away from this system at present, maybe ISAPI
Redirection DLL or such, sorry!) at the same level as $CATALINA_HOME
(Tomcat 5.5 in my case).  In there is a conf folder and in there are:
uriworkermap.properties
-AND-
workers.properties.minimal

You *should not* have to touch the second file, and will make all of your
configurations in the first file (at least I have)!  I would imagine the
1.2.8 setup for other systems is similar?  If not, there's more
obfuscation that should be corrected...!

Obviously, getting there with :8080 means he's well-beyond the
installation phase, and if he can get to the examples without expressly
using :8080, then he also has the DLL working already (is this the case,
David)?  I feel his pain on getting any further - the docs are obtuse at
best.

Although elementary for some, the addition of the line I mentioned for
uriworkermap.properties should solve this once the DLL is working and
your web server is configured to use it...

I found out the above in plain English using Google, and am working on
getting an app to work OUTSIDE of $CATALINA_HOME/webapps if you're
interested, David (offline, or look at old posts).

If you can not get the examples to work and are not using apache, try the
following document (if you try to use one of the links all over the net,
it fails, so you HAVE to go HERE to get this now!):
http://web.archive.org/web/20040324133706/http://www.rit.edu/~ack5504/tomcat-iis6-howto/tomcat-iis6-howto.html

Thanks,
-Matt


On Wed, 23 Feb 2005, Allistair Crossley wrote:

 And bear in mind that uriworkersmap is for JK2 which is no longer
 supported although it of course works. If you are starting out, you will
 want JK 1.2.8 and therefore workers.properties will be the file to
 declare URL mappings.

  -Original Message-
  From: Matt [mailto:[EMAIL PROTECTED]
  Sent: 23 February 2005 14:17
  To: Tomcat Users List
  Subject: Re: trying with my first site on Tomcat with IIS
 
 
  You may just need to add a line like:
  /test/*=ajp13w
  ...or similar, to your uriworkermap.properties file.
 
  You shouldn't need to add a context to server.xml if you're putting
  this in $CATALINA_HOME/webapps, though I may be mistaken as I am
  wrapping-up my own learning curve on this.
 
  Thanks,
  -Matt
 
 
  On Wed, 23 Feb 2005, David IBARRA ROSALES wrote:
 
   Hi everybody
  
   I've created a folder called test on webapps and a
  website on IIS
   (include ISAPI and virtual directory jakarta) with the same target.
   when i call with  http://localhost:8080/test/test.jsp
  works,  but when i
   call it on the browser:   http://localhost/test.jsp , does not work.
   need I to do  any change in server.xml or
  uriworkermap.properties every time
   that i add a site?
  
  
   test.jsp
   -
   html
   head
   titleFirst JSP page./title
   /head
   body
   %=Hello JSP%
   /body
   /html
   ---
  
   thanks in advance
   David
  
  
  
  -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  Matthew Kozak
  Rutgers University-Camden
  [EMAIL PROTECTED]
 
  **
  
   They that can give up essential liberty to obtain a little temporary
  safety deserve neither liberty nor safety.  -Ben Franklin
  **
  
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLUE
 ---
 QAS Ltd.
 Developers of QuickAddress Software
 a href=http://www.qas.com;www.qas.com/a
 Registered in England: No 2582055
 Registered in Australia: No 082 851 474
 ---
 /FONT


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Matthew Kozak
Rutgers University-Camden
[EMAIL PROTECTED]

**
 They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety.  -Ben Franklin
**

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: trying with my first site on Tomcat with IIS

2005-02-23 Thread Allistair Crossley
i was just going by the latest JK 1.2.8 documentation which discusses only the 
configuration of workers.properties. uriworkersmap used to be the file used for 
jk2 style config.

http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html

 -Original Message-
 From: Matt [mailto:[EMAIL PROTECTED]
 Sent: 23 February 2005 14:36
 To: Tomcat Users List
 Subject: RE: trying with my first site on Tomcat with IIS
 
 
 Actually, that's not entirely true.
 If you use jk_1.2.8.exe on Windows to install, it creates its 
 own folder
 (I forget the name and am away from this system at present, 
 maybe ISAPI
 Redirection DLL or such, sorry!) at the same level as $CATALINA_HOME
 (Tomcat 5.5 in my case).  In there is a conf folder and in there are:
 uriworkermap.properties
 -AND-
 workers.properties.minimal
 
 You *should not* have to touch the second file, and will make 
 all of your
 configurations in the first file (at least I have)!  I would 
 imagine the
 1.2.8 setup for other systems is similar?  If not, there's more
 obfuscation that should be corrected...!
 
 Obviously, getting there with :8080 means he's well-beyond the
 installation phase, and if he can get to the examples without 
 expressly
 using :8080, then he also has the DLL working already (is 
 this the case,
 David)?  I feel his pain on getting any further - the docs 
 are obtuse at
 best.
 
 Although elementary for some, the addition of the line I mentioned for
 uriworkermap.properties should solve this once the DLL is working and
 your web server is configured to use it...
 
 I found out the above in plain English using Google, and am working on
 getting an app to work OUTSIDE of $CATALINA_HOME/webapps if you're
 interested, David (offline, or look at old posts).
 
 If you can not get the examples to work and are not using 
 apache, try the
 following document (if you try to use one of the links all 
 over the net,
 it fails, so you HAVE to go HERE to get this now!):
 http://web.archive.org/web/20040324133706/http://www.rit.edu/~
 ack5504/tomcat-iis6-howto/tomcat-iis6-howto.html
 
 Thanks,
 -Matt
 
 
 On Wed, 23 Feb 2005, Allistair Crossley wrote:
 
  And bear in mind that uriworkersmap is for JK2 which is no longer
  supported although it of course works. If you are starting 
 out, you will
  want JK 1.2.8 and therefore workers.properties will be the file to
  declare URL mappings.
 
   -Original Message-
   From: Matt [mailto:[EMAIL PROTECTED]
   Sent: 23 February 2005 14:17
   To: Tomcat Users List
   Subject: Re: trying with my first site on Tomcat with IIS
  
  
   You may just need to add a line like:
   /test/*=ajp13w
   ...or similar, to your uriworkermap.properties file.
  
   You shouldn't need to add a context to server.xml if 
 you're putting
   this in $CATALINA_HOME/webapps, though I may be mistaken as I am
   wrapping-up my own learning curve on this.
  
   Thanks,
   -Matt
  
  
   On Wed, 23 Feb 2005, David IBARRA ROSALES wrote:
  
Hi everybody
   
I've created a folder called test on webapps and a
   website on IIS
(include ISAPI and virtual directory jakarta) with the 
 same target.
when i call with  http://localhost:8080/test/test.jsp
   works,  but when i
call it on the browser:   http://localhost/test.jsp , 
 does not work.
need I to do  any change in server.xml or
   uriworkermap.properties every time
that i add a site?
   
   
test.jsp
-
html
head
titleFirst JSP page./title
/head
body
%=Hello JSP%
/body
/html
---
   
thanks in advance
David
   
   
   
   
 -
To unsubscribe, e-mail: 
 [EMAIL PROTECTED]
For additional commands, e-mail: 
 [EMAIL PROTECTED]
   
   
  
  
   Matthew Kozak
   Rutgers University-Camden
   [EMAIL PROTECTED]
  
   **
   
They that can give up essential liberty to obtain a 
 little temporary
 safety deserve neither liberty nor safety.  -Ben Franklin
   **
   
  
   
 -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: 
 [EMAIL PROTECTED]
  
  
 
 
  FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLUE
  ---
  QAS Ltd.
  Developers of QuickAddress Software
  a href=http://www.qas.com;www.qas.com/a
  Registered in England: No 2582055
  Registered in Australia: No 082 851 474
  ---
  /FONT
 
 
  
 -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 Matthew Kozak
 Rutgers University-Camden
 [EMAIL 

Re: trying with my first site on Tomcat with IIS

2005-02-23 Thread David IBARRA ROSALES
Hi Matt

I appreciat your help, 4 days ago I am  trying that this work.
yes, the file is workers.properties.minimal. I have installed the last
version of jk and tomcat 5.5.7 and  ISAPI  and JAVA with installer,  they
are working well,  the config files in regedit and anothers is created
automatically.

I think need  documentation  about to creat a new website with IIS and ISAPI
on port 80. I 'll read the link and will go on trying.
Regards
David

- Original Message - 
From: Matt [EMAIL PROTECTED]
To: Tomcat Users List tomcat-user@jakarta.apache.org
Sent: Wednesday, February 23, 2005 11:36 AM
Subject: RE: trying with my first site on Tomcat with IIS


 Actually, that's not entirely true.
 If you use jk_1.2.8.exe on Windows to install, it creates its own folder
 (I forget the name and am away from this system at present, maybe ISAPI
 Redirection DLL or such, sorry!) at the same level as $CATALINA_HOME
 (Tomcat 5.5 in my case).  In there is a conf folder and in there are:
 uriworkermap.properties
 -AND-
 workers.properties.minimal

 You *should not* have to touch the second file, and will make all of your
 configurations in the first file (at least I have)!  I would imagine the
 1.2.8 setup for other systems is similar?  If not, there's more
 obfuscation that should be corrected...!

 Obviously, getting there with :8080 means he's well-beyond the
 installation phase, and if he can get to the examples without expressly
 using :8080, then he also has the DLL working already (is this the case,
 David)?  I feel his pain on getting any further - the docs are obtuse at
 best.

 Although elementary for some, the addition of the line I mentioned for
 uriworkermap.properties should solve this once the DLL is working and
 your web server is configured to use it...

 I found out the above in plain English using Google, and am working on
 getting an app to work OUTSIDE of $CATALINA_HOME/webapps if you're
 interested, David (offline, or look at old posts).

 If you can not get the examples to work and are not using apache, try the
 following document (if you try to use one of the links all over the net,
 it fails, so you HAVE to go HERE to get this now!):

http://web.archive.org/web/20040324133706/http://www.rit.edu/~ack5504/tomcat-iis6-howto/tomcat-iis6-howto.html

 Thanks,
 -Matt


 On Wed, 23 Feb 2005, Allistair Crossley wrote:

  And bear in mind that uriworkersmap is for JK2 which is no longer
  supported although it of course works. If you are starting out, you will
  want JK 1.2.8 and therefore workers.properties will be the file to
  declare URL mappings.
 
   -Original Message-
   From: Matt [mailto:[EMAIL PROTECTED]
   Sent: 23 February 2005 14:17
   To: Tomcat Users List
   Subject: Re: trying with my first site on Tomcat with IIS
  
  
   You may just need to add a line like:
   /test/*=ajp13w
   ...or similar, to your uriworkermap.properties file.
  
   You shouldn't need to add a context to server.xml if you're putting
   this in $CATALINA_HOME/webapps, though I may be mistaken as I am
   wrapping-up my own learning curve on this.
  
   Thanks,
   -Matt
  
  
   On Wed, 23 Feb 2005, David IBARRA ROSALES wrote:
  
Hi everybody
   
I've created a folder called test on webapps and a
   website on IIS
(include ISAPI and virtual directory jakarta) with the same target.
when i call with  http://localhost:8080/test/test.jsp
   works,  but when i
call it on the browser:   http://localhost/test.jsp , does not work.
need I to do  any change in server.xml or
   uriworkermap.properties every time
that i add a site?
   
   
test.jsp
-
html
head
titleFirst JSP page./title
/head
body
%=Hello JSP%
/body
/html
---
   
thanks in advance
David
   
   
   
   -
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   
   
  
  
   Matthew Kozak
   Rutgers University-Camden
   [EMAIL PROTECTED]
  
   **
   
They that can give up essential liberty to obtain a little temporary
   safety deserve neither liberty nor safety.  -Ben Franklin
   **
   
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLUE
  ---
  QAS Ltd.
  Developers of QuickAddress Software
  a href=http://www.qas.com;www.qas.com/a
  Registered in England: No 2582055
  Registered in Australia: No 082 851 474
  ---
  /FONT
 
 
  

Re: trying with my first site on Tomcat with IIS (2)

2005-02-23 Thread David IBARRA ROSALES
Thanks Allistar

I will go on trying... it can be only a small thing i think your message
encourage me,
David

mytwo files show this
--
# workers.properties.minimal -
worker.list=ajp13w

worker.ajp13w.type=ajp13
worker.ajp13w.host=localhost
worker.ajp13w.port=8009
--
# uriworkermap.properties - IIS
#
/test/*=ajp13w


- Original Message - 
From: Allistair Crossley [EMAIL PROTECTED]
To: Tomcat Users List tomcat-user@jakarta.apache.org
Sent: Wednesday, February 23, 2005 11:43 AM
Subject: RE: trying with my first site on Tomcat with IIS


i was just going by the latest JK 1.2.8 documentation which discusses only
the configuration of workers.properties. uriworkersmap used to be the file
used for jk2 style config.

http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html

 -Original Message-
 From: Matt [mailto:[EMAIL PROTECTED]
 Sent: 23 February 2005 14:36
 To: Tomcat Users List
 Subject: RE: trying with my first site on Tomcat with IIS


 Actually, that's not entirely true.
 If you use jk_1.2.8.exe on Windows to install, it creates its
 own folder
 (I forget the name and am away from this system at present,
 maybe ISAPI
 Redirection DLL or such, sorry!) at the same level as $CATALINA_HOME
 (Tomcat 5.5 in my case).  In there is a conf folder and in there are:
 uriworkermap.properties
 -AND-
 workers.properties.minimal

 You *should not* have to touch the second file, and will make
 all of your
 configurations in the first file (at least I have)!  I would
 imagine the
 1.2.8 setup for other systems is similar?  If not, there's more
 obfuscation that should be corrected...!

 Obviously, getting there with :8080 means he's well-beyond the
 installation phase, and if he can get to the examples without
 expressly
 using :8080, then he also has the DLL working already (is
 this the case,
 David)?  I feel his pain on getting any further - the docs
 are obtuse at
 best.

 Although elementary for some, the addition of the line I mentioned for
 uriworkermap.properties should solve this once the DLL is working and
 your web server is configured to use it...

 I found out the above in plain English using Google, and am working on
 getting an app to work OUTSIDE of $CATALINA_HOME/webapps if you're
 interested, David (offline, or look at old posts).

 If you can not get the examples to work and are not using
 apache, try the
 following document (if you try to use one of the links all
 over the net,
 it fails, so you HAVE to go HERE to get this now!):
 http://web.archive.org/web/20040324133706/http://www.rit.edu/~
 ack5504/tomcat-iis6-howto/tomcat-iis6-howto.html

 Thanks,
 -Matt


 On Wed, 23 Feb 2005, Allistair Crossley wrote:

  And bear in mind that uriworkersmap is for JK2 which is no longer
  supported although it of course works. If you are starting
 out, you will
  want JK 1.2.8 and therefore workers.properties will be the file to
  declare URL mappings.
 
   -Original Message-
   From: Matt [mailto:[EMAIL PROTECTED]
   Sent: 23 February 2005 14:17
   To: Tomcat Users List
   Subject: Re: trying with my first site on Tomcat with IIS
  
  
   You may just need to add a line like:
   /test/*=ajp13w
   ...or similar, to your uriworkermap.properties file.
  
   You shouldn't need to add a context to server.xml if
 you're putting
   this in $CATALINA_HOME/webapps, though I may be mistaken as I am
   wrapping-up my own learning curve on this.
  
   Thanks,
   -Matt
  
  
   On Wed, 23 Feb 2005, David IBARRA ROSALES wrote:
  
Hi everybody
   
I've created a folder called test on webapps and a
   website on IIS
(include ISAPI and virtual directory jakarta) with the
 same target.
when i call with  http://localhost:8080/test/test.jsp
   works,  but when i
call it on the browser:   http://localhost/test.jsp ,
 does not work.
need I to do  any change in server.xml or
   uriworkermap.properties every time
that i add a site?
   
   
test.jsp
-
html
head
titleFirst JSP page./title
/head
body
%=Hello JSP%
/body
/html
---
   
thanks in advance
David
   
   
   
  
 -
To unsubscribe, e-mail:
 [EMAIL PROTECTED]
For additional commands, e-mail:
 [EMAIL PROTECTED]
   
   
  
  
   Matthew Kozak
   Rutgers University-Camden
   [EMAIL PROTECTED]
  
   **
   
They that can give up essential liberty to obtain a
 little temporary
   safety deserve neither liberty nor safety.  -Ben Franklin
   **
   
  
  
 -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail:
 [EMAIL PROTECTED]
  

RE: Re: trying with my first site on Tomcat with IIS (2)

2005-02-23 Thread Allistair Crossley
actually Matt appears to be correct I admit - i've just checked our 1.2.8 
config and it is indeed uriworkersmap.properties you need to add your mappings 
to. 

sorry for the confusion

 -Original Message-
 From: David IBARRA ROSALES [mailto:[EMAIL PROTECTED]
 Sent: 23 February 2005 15:05
 To: Tomcat Users List
 Subject: Re: trying with my first site on Tomcat with IIS (2)
 
 
 Thanks Allistar
 
 I will go on trying... it can be only a small thing i 
 think your message
 encourage me,
 David
 
 mytwo files show this
 --
 # workers.properties.minimal -
 worker.list=ajp13w
 
 worker.ajp13w.type=ajp13
 worker.ajp13w.host=localhost
 worker.ajp13w.port=8009
 --
 # uriworkermap.properties - IIS
 #
 /test/*=ajp13w
 
 
 - Original Message - 
 From: Allistair Crossley [EMAIL PROTECTED]
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Sent: Wednesday, February 23, 2005 11:43 AM
 Subject: RE: trying with my first site on Tomcat with IIS
 
 
 i was just going by the latest JK 1.2.8 documentation which 
 discusses only
 the configuration of workers.properties. uriworkersmap used 
 to be the file
 used for jk2 style config.
 
 http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html
 
  -Original Message-
  From: Matt [mailto:[EMAIL PROTECTED]
  Sent: 23 February 2005 14:36
  To: Tomcat Users List
  Subject: RE: trying with my first site on Tomcat with IIS
 
 
  Actually, that's not entirely true.
  If you use jk_1.2.8.exe on Windows to install, it creates its
  own folder
  (I forget the name and am away from this system at present,
  maybe ISAPI
  Redirection DLL or such, sorry!) at the same level as $CATALINA_HOME
  (Tomcat 5.5 in my case).  In there is a conf folder and in 
 there are:
  uriworkermap.properties
  -AND-
  workers.properties.minimal
 
  You *should not* have to touch the second file, and will make
  all of your
  configurations in the first file (at least I have)!  I would
  imagine the
  1.2.8 setup for other systems is similar?  If not, there's more
  obfuscation that should be corrected...!
 
  Obviously, getting there with :8080 means he's well-beyond the
  installation phase, and if he can get to the examples without
  expressly
  using :8080, then he also has the DLL working already (is
  this the case,
  David)?  I feel his pain on getting any further - the docs
  are obtuse at
  best.
 
  Although elementary for some, the addition of the line I 
 mentioned for
  uriworkermap.properties should solve this once the DLL is 
 working and
  your web server is configured to use it...
 
  I found out the above in plain English using Google, and am 
 working on
  getting an app to work OUTSIDE of $CATALINA_HOME/webapps if you're
  interested, David (offline, or look at old posts).
 
  If you can not get the examples to work and are not using
  apache, try the
  following document (if you try to use one of the links all
  over the net,
  it fails, so you HAVE to go HERE to get this now!):
  http://web.archive.org/web/20040324133706/http://www.rit.edu/~
  ack5504/tomcat-iis6-howto/tomcat-iis6-howto.html
 
  Thanks,
  -Matt
 
 
  On Wed, 23 Feb 2005, Allistair Crossley wrote:
 
   And bear in mind that uriworkersmap is for JK2 which is no longer
   supported although it of course works. If you are starting
  out, you will
   want JK 1.2.8 and therefore workers.properties will be the file to
   declare URL mappings.
  
-Original Message-
From: Matt [mailto:[EMAIL PROTECTED]
Sent: 23 February 2005 14:17
To: Tomcat Users List
Subject: Re: trying with my first site on Tomcat with IIS
   
   
You may just need to add a line like:
/test/*=ajp13w
...or similar, to your uriworkermap.properties file.
   
You shouldn't need to add a context to server.xml if
  you're putting
this in $CATALINA_HOME/webapps, though I may be mistaken as I am
wrapping-up my own learning curve on this.
   
Thanks,
-Matt
   
   
On Wed, 23 Feb 2005, David IBARRA ROSALES wrote:
   
 Hi everybody

 I've created a folder called test on webapps and a
website on IIS
 (include ISAPI and virtual directory jakarta) with the
  same target.
 when i call with  http://localhost:8080/test/test.jsp
works,  but when i
 call it on the browser:   http://localhost/test.jsp ,
  does not work.
 need I to do  any change in server.xml or
uriworkermap.properties every time
 that i add a site?


 test.jsp
 -
 html
 head
 titleFirst JSP page./title
 /head
 body
 %=Hello JSP%
 /body
 /html
 ---

 thanks in advance
 David



   
  
 -
 To unsubscribe, e-mail:
  [EMAIL PROTECTED]
 For additional commands, e-mail:
  [EMAIL PROTECTED]

Re: Re: trying with my first site on Tomcat with IIS 5.0 (3)

2005-02-23 Thread David IBARRA ROSALES
Thanks Allistair

Is there documentations for IIS 6.0 , I use IIS 5.0 on win2000,  I have
found something new in documentation IIS 6.0:
http://web.archive.org/web/20031229123839/www.rit.edu/~ack5504/tomcat-iis6-howto/WebServiceExtension.JPG
that maybe help me if I found the similar in  IIS 5

I already know , I 'd have use IIS 6.0, but i don'want to do more MS
upgrading , o maybe Linux and Apache :o , but that will have time, menwhile
I  change JSP and PHP for ASP.

Regards
David


- Original Message - 
From: Allistair Crossley [EMAIL PROTECTED]
To: Tomcat Users List tomcat-user@jakarta.apache.org
Sent: Wednesday, February 23, 2005 11:59 AM
Subject: RE: Re: trying with my first site on Tomcat with IIS (2)


actually Matt appears to be correct I admit - i've just checked our 1.2.8
config and it is indeed uriworkersmap.properties you need to add your
mappings to.

sorry for the confusion

 -Original Message-
 From: David IBARRA ROSALES [mailto:[EMAIL PROTECTED]
 Sent: 23 February 2005 15:05
 To: Tomcat Users List
 Subject: Re: trying with my first site on Tomcat with IIS (2)


 Thanks Allistar

 I will go on trying... it can be only a small thing i
 think your message
 encourage me,
 David

 mytwo files show this
 --
 # workers.properties.minimal -
 worker.list=ajp13w

 worker.ajp13w.type=ajp13
 worker.ajp13w.host=localhost
 worker.ajp13w.port=8009
 --
 # uriworkermap.properties - IIS
 #
 /test/*=ajp13w


 - Original Message - 
 From: Allistair Crossley [EMAIL PROTECTED]
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Sent: Wednesday, February 23, 2005 11:43 AM
 Subject: RE: trying with my first site on Tomcat with IIS


 i was just going by the latest JK 1.2.8 documentation which
 discusses only
 the configuration of workers.properties. uriworkersmap used
 to be the file
 used for jk2 style config.

 http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html

  -Original Message-
  From: Matt [mailto:[EMAIL PROTECTED]
  Sent: 23 February 2005 14:36
  To: Tomcat Users List
  Subject: RE: trying with my first site on Tomcat with IIS
 
 
  Actually, that's not entirely true.
  If you use jk_1.2.8.exe on Windows to install, it creates its
  own folder
  (I forget the name and am away from this system at present,
  maybe ISAPI
  Redirection DLL or such, sorry!) at the same level as $CATALINA_HOME
  (Tomcat 5.5 in my case).  In there is a conf folder and in
 there are:
  uriworkermap.properties
  -AND-
  workers.properties.minimal
 
  You *should not* have to touch the second file, and will make
  all of your
  configurations in the first file (at least I have)!  I would
  imagine the
  1.2.8 setup for other systems is similar?  If not, there's more
  obfuscation that should be corrected...!
 
  Obviously, getting there with :8080 means he's well-beyond the
  installation phase, and if he can get to the examples without
  expressly
  using :8080, then he also has the DLL working already (is
  this the case,
  David)?  I feel his pain on getting any further - the docs
  are obtuse at
  best.
 
  Although elementary for some, the addition of the line I
 mentioned for
  uriworkermap.properties should solve this once the DLL is
 working and
  your web server is configured to use it...
 
  I found out the above in plain English using Google, and am
 working on
  getting an app to work OUTSIDE of $CATALINA_HOME/webapps if you're
  interested, David (offline, or look at old posts).
 
  If you can not get the examples to work and are not using
  apache, try the
  following document (if you try to use one of the links all
  over the net,
  it fails, so you HAVE to go HERE to get this now!):
  http://web.archive.org/web/20040324133706/http://www.rit.edu/~
  ack5504/tomcat-iis6-howto/tomcat-iis6-howto.html
 
  Thanks,
  -Matt
 
 
  On Wed, 23 Feb 2005, Allistair Crossley wrote:
 
   And bear in mind that uriworkersmap is for JK2 which is no longer
   supported although it of course works. If you are starting
  out, you will
   want JK 1.2.8 and therefore workers.properties will be the file to
   declare URL mappings.
  
-Original Message-
From: Matt [mailto:[EMAIL PROTECTED]
Sent: 23 February 2005 14:17
To: Tomcat Users List
Subject: Re: trying with my first site on Tomcat with IIS
   
   
You may just need to add a line like:
/test/*=ajp13w
...or similar, to your uriworkermap.properties file.
   
You shouldn't need to add a context to server.xml if
  you're putting
this in $CATALINA_HOME/webapps, though I may be mistaken as I am
wrapping-up my own learning curve on this.
   
Thanks,
-Matt
   
   
On Wed, 23 Feb 2005, David IBARRA ROSALES wrote:
   
 Hi everybody

 I've created a folder called test on webapps and a
website on IIS
 (include ISAPI and virtual directory jakarta) with the
  same target.
 when i call with  

RE: trying with my first site on Tomcat with IIS

2005-02-23 Thread Matt
Which exemplifies my point about (and frustration with) the docs...

On Wed, 23 Feb 2005, Allistair Crossley wrote:

 i was just going by the latest JK 1.2.8 documentation which discusses only 
 the configuration of workers.properties. uriworkersmap used to be the file 
 used for jk2 style config.

 http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html

  -Original Message-
  From: Matt [mailto:[EMAIL PROTECTED]
  Sent: 23 February 2005 14:36
  To: Tomcat Users List
  Subject: RE: trying with my first site on Tomcat with IIS
 
 
  Actually, that's not entirely true.
  If you use jk_1.2.8.exe on Windows to install, it creates its
  own folder
  (I forget the name and am away from this system at present,
  maybe ISAPI
  Redirection DLL or such, sorry!) at the same level as $CATALINA_HOME
  (Tomcat 5.5 in my case).  In there is a conf folder and in there are:
  uriworkermap.properties
  -AND-
  workers.properties.minimal
 
  You *should not* have to touch the second file, and will make
  all of your
  configurations in the first file (at least I have)!  I would
  imagine the
  1.2.8 setup for other systems is similar?  If not, there's more
  obfuscation that should be corrected...!
 
  Obviously, getting there with :8080 means he's well-beyond the
  installation phase, and if he can get to the examples without
  expressly
  using :8080, then he also has the DLL working already (is
  this the case,
  David)?  I feel his pain on getting any further - the docs
  are obtuse at
  best.
 
  Although elementary for some, the addition of the line I mentioned for
  uriworkermap.properties should solve this once the DLL is working and
  your web server is configured to use it...
 
  I found out the above in plain English using Google, and am working on
  getting an app to work OUTSIDE of $CATALINA_HOME/webapps if you're
  interested, David (offline, or look at old posts).
 
  If you can not get the examples to work and are not using
  apache, try the
  following document (if you try to use one of the links all
  over the net,
  it fails, so you HAVE to go HERE to get this now!):
  http://web.archive.org/web/20040324133706/http://www.rit.edu/~
  ack5504/tomcat-iis6-howto/tomcat-iis6-howto.html
 
  Thanks,
  -Matt
 
 
  On Wed, 23 Feb 2005, Allistair Crossley wrote:
 
   And bear in mind that uriworkersmap is for JK2 which is no longer
   supported although it of course works. If you are starting
  out, you will
   want JK 1.2.8 and therefore workers.properties will be the file to
   declare URL mappings.
  
-Original Message-
From: Matt [mailto:[EMAIL PROTECTED]
Sent: 23 February 2005 14:17
To: Tomcat Users List
Subject: Re: trying with my first site on Tomcat with IIS
   
   
You may just need to add a line like:
/test/*=ajp13w
...or similar, to your uriworkermap.properties file.
   
You shouldn't need to add a context to server.xml if
  you're putting
this in $CATALINA_HOME/webapps, though I may be mistaken as I am
wrapping-up my own learning curve on this.
   
Thanks,
-Matt
   
   
On Wed, 23 Feb 2005, David IBARRA ROSALES wrote:
   
 Hi everybody

 I've created a folder called test on webapps and a
website on IIS
 (include ISAPI and virtual directory jakarta) with the
  same target.
 when i call with  http://localhost:8080/test/test.jsp
works,  but when i
 call it on the browser:   http://localhost/test.jsp ,
  does not work.
 need I to do  any change in server.xml or
uriworkermap.properties every time
 that i add a site?


 test.jsp
 -
 html
 head
 titleFirst JSP page./title
 /head
 body
 %=Hello JSP%
 /body
 /html
 ---

 thanks in advance
 David



   
  -
 To unsubscribe, e-mail:
  [EMAIL PROTECTED]
 For additional commands, e-mail:
  [EMAIL PROTECTED]


   
   
Matthew Kozak
Rutgers University-Camden
[EMAIL PROTECTED]
   
**

 They that can give up essential liberty to obtain a
  little temporary
safety deserve neither liberty nor safety.  -Ben Franklin
**

   
   
  -
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail:
  [EMAIL PROTECTED]
   
   
  
  
   FONT SIZE=1 FACE=VERDANA,ARIAL COLOR=BLUE
   ---
   QAS Ltd.
   Developers of QuickAddress Software
   a href=http://www.qas.com;www.qas.com/a
   Registered in England: No 2582055
   Registered in Australia: No 082 851 474
   

Re: Re: trying with my first site on Tomcat with IIS 5.0 (3)

2005-02-23 Thread Matt
These are documented in lots of places (Google for the terms), but
confusing in that they have the extra instructions that you don't need
when you use the jk_1.2.8.exe (that installer is GREAT, it's all the
various docs that need updating and clarification).

The link that I sent you (and you refer to below) is what I used to
configure IIS 5 on Win2K myself.  Again, don't be confused by what the
jk_1.2.8.exe installer has already done for you, just move on to the next
step(s).
In IIS 5, you will still have to:
1) Add the ISAPI filter (clear in the instructions)
2) Add Application Configuration for .jsp w via the 1.2.8 DLL (not as
clear, if at all in the instructions)

It seems some docs expect that Step 1 and Step 2 are the same thing, but
they're not.  If you're having trouble with the two steps above, you may
need to investigate IIS configuration docs/instructions.  Let me know, but
I'm not in front of this system again until late tonight to try to give
you any more epxlicit step-by-step instructions.

Thanks!
-Matt


On Wed, 23 Feb 2005, David IBARRA ROSALES wrote:

 Thanks Allistair

 Is there documentations for IIS 6.0 , I use IIS 5.0 on win2000,  I have
 found something new in documentation IIS 6.0:
 http://web.archive.org/web/20031229123839/www.rit.edu/~ack5504/tomcat-iis6-howto/WebServiceExtension.JPG
 that maybe help me if I found the similar in  IIS 5

 I already know , I 'd have use IIS 6.0, but i don'want to do more MS
 upgrading , o maybe Linux and Apache :o , but that will have time, menwhile
 I  change JSP and PHP for ASP.

 Regards
 David


 - Original Message -
 From: Allistair Crossley [EMAIL PROTECTED]
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Sent: Wednesday, February 23, 2005 11:59 AM
 Subject: RE: Re: trying with my first site on Tomcat with IIS (2)


 actually Matt appears to be correct I admit - i've just checked our 1.2.8
 config and it is indeed uriworkersmap.properties you need to add your
 mappings to.

 sorry for the confusion

  -Original Message-
  From: David IBARRA ROSALES [mailto:[EMAIL PROTECTED]
  Sent: 23 February 2005 15:05
  To: Tomcat Users List
  Subject: Re: trying with my first site on Tomcat with IIS (2)
 
 
  Thanks Allistar
 
  I will go on trying... it can be only a small thing i
  think your message
  encourage me,
  David
 
  mytwo files show this
  --
  # workers.properties.minimal -
  worker.list=ajp13w
 
  worker.ajp13w.type=ajp13
  worker.ajp13w.host=localhost
  worker.ajp13w.port=8009
  --
  # uriworkermap.properties - IIS
  #
  /test/*=ajp13w
 
 
  - Original Message -
  From: Allistair Crossley [EMAIL PROTECTED]
  To: Tomcat Users List tomcat-user@jakarta.apache.org
  Sent: Wednesday, February 23, 2005 11:43 AM
  Subject: RE: trying with my first site on Tomcat with IIS
 
 
  i was just going by the latest JK 1.2.8 documentation which
  discusses only
  the configuration of workers.properties. uriworkersmap used
  to be the file
  used for jk2 style config.
 
  http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html
 
   -Original Message-
   From: Matt [mailto:[EMAIL PROTECTED]
   Sent: 23 February 2005 14:36
   To: Tomcat Users List
   Subject: RE: trying with my first site on Tomcat with IIS
  
  
   Actually, that's not entirely true.
   If you use jk_1.2.8.exe on Windows to install, it creates its
   own folder
   (I forget the name and am away from this system at present,
   maybe ISAPI
   Redirection DLL or such, sorry!) at the same level as $CATALINA_HOME
   (Tomcat 5.5 in my case).  In there is a conf folder and in
  there are:
   uriworkermap.properties
   -AND-
   workers.properties.minimal
  
   You *should not* have to touch the second file, and will make
   all of your
   configurations in the first file (at least I have)!  I would
   imagine the
   1.2.8 setup for other systems is similar?  If not, there's more
   obfuscation that should be corrected...!
  
   Obviously, getting there with :8080 means he's well-beyond the
   installation phase, and if he can get to the examples without
   expressly
   using :8080, then he also has the DLL working already (is
   this the case,
   David)?  I feel his pain on getting any further - the docs
   are obtuse at
   best.
  
   Although elementary for some, the addition of the line I
  mentioned for
   uriworkermap.properties should solve this once the DLL is
  working and
   your web server is configured to use it...
  
   I found out the above in plain English using Google, and am
  working on
   getting an app to work OUTSIDE of $CATALINA_HOME/webapps if you're
   interested, David (offline, or look at old posts).
  
   If you can not get the examples to work and are not using
   apache, try the
   following document (if you try to use one of the links all
   over the net,
   it fails, so you HAVE to go HERE to get this now!):
   

RE: Re: trying with my first site on Tomcat with IIS 5.0 (3)

2005-02-23 Thread Aris Javier
Hi David,

I have the same problem like yours before. And found this site.
http://www.shiftomat.com/opensource/ 

It's effective and it's free! =)

I've been using this for a long time now and encountered no problems. 

Hope this helps.
Aris
Philippines


-Original Message-
From: Matt [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 24, 2005 12:07 AM
To: Tomcat Users List
Subject: Re: Re: trying with my first site on Tomcat with IIS 5.0 (3)

These are documented in lots of places (Google for the terms), but
confusing in that they have the extra instructions that you don't need
when you use the jk_1.2.8.exe (that installer is GREAT, it's all the
various docs that need updating and clarification).

The link that I sent you (and you refer to below) is what I used to
configure IIS 5 on Win2K myself.  Again, don't be confused by what the
jk_1.2.8.exe installer has already done for you, just move on to the
next step(s).
In IIS 5, you will still have to:
1) Add the ISAPI filter (clear in the instructions)
2) Add Application Configuration for .jsp w via the 1.2.8 DLL (not as
clear, if at all in the instructions)

It seems some docs expect that Step 1 and Step 2 are the same thing, but
they're not.  If you're having trouble with the two steps above, you may
need to investigate IIS configuration docs/instructions.  Let me know,
but I'm not in front of this system again until late tonight to try to
give you any more epxlicit step-by-step instructions.

Thanks!
-Matt


On Wed, 23 Feb 2005, David IBARRA ROSALES wrote:

 Thanks Allistair

 Is there documentations for IIS 6.0 , I use IIS 5.0 on win2000,  I 
 have found something new in documentation IIS 6.0:
 http://web.archive.org/web/20031229123839/www.rit.edu/~ack5504/tomcat-
 iis6-howto/WebServiceExtension.JPG
 that maybe help me if I found the similar in  IIS 5

 I already know , I 'd have use IIS 6.0, but i don'want to do more MS 
 upgrading , o maybe Linux and Apache :o , but that will have time, 
 menwhile I  change JSP and PHP for ASP.

 Regards
 David


 - Original Message -
 From: Allistair Crossley [EMAIL PROTECTED]
 To: Tomcat Users List tomcat-user@jakarta.apache.org
 Sent: Wednesday, February 23, 2005 11:59 AM
 Subject: RE: Re: trying with my first site on Tomcat with IIS (2)


 actually Matt appears to be correct I admit - i've just checked our 
 1.2.8 config and it is indeed uriworkersmap.properties you need to add

 your mappings to.

 sorry for the confusion

  -Original Message-
  From: David IBARRA ROSALES [mailto:[EMAIL PROTECTED]
  Sent: 23 February 2005 15:05
  To: Tomcat Users List
  Subject: Re: trying with my first site on Tomcat with IIS (2)
 
 
  Thanks Allistar
 
  I will go on trying... it can be only a small thing i think your

  message encourage me, David
 
  mytwo files show this
  --
  # workers.properties.minimal -
  worker.list=ajp13w
 
  worker.ajp13w.type=ajp13
  worker.ajp13w.host=localhost
  worker.ajp13w.port=8009
  --
  # uriworkermap.properties - IIS
  #
  /test/*=ajp13w
 
 
  - Original Message -
  From: Allistair Crossley [EMAIL PROTECTED]
  To: Tomcat Users List tomcat-user@jakarta.apache.org
  Sent: Wednesday, February 23, 2005 11:43 AM
  Subject: RE: trying with my first site on Tomcat with IIS
 
 
  i was just going by the latest JK 1.2.8 documentation which 
  discusses only the configuration of workers.properties. 
  uriworkersmap used to be the file used for jk2 style config.
 
  http://jakarta.apache.org/tomcat/connectors-doc/config/workers.html
 
   -Original Message-
   From: Matt [mailto:[EMAIL PROTECTED]
   Sent: 23 February 2005 14:36
   To: Tomcat Users List
   Subject: RE: trying with my first site on Tomcat with IIS
  
  
   Actually, that's not entirely true.
   If you use jk_1.2.8.exe on Windows to install, it creates its own 
   folder (I forget the name and am away from this system at present,

   maybe ISAPI Redirection DLL or such, sorry!) at the same level as 
   $CATALINA_HOME (Tomcat 5.5 in my case).  In there is a conf folder

   and in
  there are:
   uriworkermap.properties
   -AND-
   workers.properties.minimal
  
   You *should not* have to touch the second file, and will make all 
   of your configurations in the first file (at least I have)!  I 
   would imagine the
   1.2.8 setup for other systems is similar?  If not, there's more 
   obfuscation that should be corrected...!
  
   Obviously, getting there with :8080 means he's well-beyond the 
   installation phase, and if he can get to the examples without 
   expressly using :8080, then he also has the DLL working already 
   (is this the case, David)?  I feel his pain on getting any further

   - the docs are obtuse at best.
  
   Although elementary for some, the addition of the line I
  mentioned for
   uriworkermap.properties should solve this once the DLL is
  working and
   your web server is configured to use