RE: Tomcat 5 JK2 IIS 5

2004-08-25 Thread Allistair Crossley
OK, I have now done a TC5.0.27-JK2-IIS5 config about 5 times in the past 2 weeks on 
our developer machines so it does work ;) Here are my files:

tomcat_home/conf/jk2.properties
=

only contains the following lines, the rest is commented out. The following lines 
allow IIS to send Windows Integrated Security in the request to Tomcat. The second I 
am not sure about but it used to fix a known bug.

request.tomcatAuthentication=false
request.registerRequests=false

tomcat_home/conf/workers2.properties
==

You do have to have context and worker for URI mappings.

[logger]
level=INFO

[logger.file:0]
level=INFO
file=c:\\jakarta-tomcat-5.0.25\\logs\\jk2.log
 
[workerEnv:]
info=Global server options
timing=1
debug=0
logger=logger.file:0 

[shm]
file=c:\\jakarta-tomcat-5.0.25\\work\\jk2.shm
size=1048576

[channel.socket:localhost:8009]
info=Ajp13 worker, connects to tomcat instance using AJP 1.3 protocol
tomcatId=localhost:8009

[ajp13:localhost:8009]
channel=channel.socket:localhost:8009

[uri:/*.do]
info=do
context=/
worker=ajp13:localhost:8009

[uri:/*.jsp]
info=jsp
context=/

Registry


I notice the name of your redirector is not the name of how it is distributed by the 
way.

HKEY_LOCAL_MACHINE
  + SOFTWARE
+ Apache Software Foundation
  + Jakarta Isapi Redirector
+ 2.0
  extensionUri = /jakarta/isapi_redirector2.dll
  logLevel = info
  serverRoot = c:\jakarta-tomcat-5.0.27
  workersFile = c:\jakarta-tomcat-5.0.27\conf\workers2.properties

IIS
===

- Ensure you have created a virtual directory and pointed it at the 
isapi_redirector2.dll folder, call it jakarta and make sure execute permission is set.

- Add the ISAPI filter called jakarta and browse to the dll

- ALWAYS make sure you totally restart IIS after a change in the configuration. And I 
don't mean the stop/play buttons, I mean click the server and do Restart IIS.

Hope this helps

Allistair.

 -Original Message-
 From: William L. Thomson Jr. [mailto:[EMAIL PROTECTED]
 Sent: 24 August 2004 21:14
 To: tomcat-user
 Subject: Re: Tomcat 5 JK2 IIS 5
 
 
 Also in the workers2.properties file I have seen uri entries 
 with ether
 worker or context. Neither both.
 
 
 [uri:/*.jsp]
 Context=/
 
 [uri:/servlet/*]
 Context=/
 
 or
 
 [uri:/*.jsp]
 worker=ajp13:localhost:8009
 
 [uri:/servlet/*]
 worker=ajp13:localhost:8009
 
 
 The log I posted makes me seem to think it's a context issue. But
 everything works perfectly in Tomcat via it's web server 8080. If
 contexts or something else as wrong it should be wrong there as well?
 
 Do you need to specify contexts or a worker for each uri?
 
 -- 
 Sincerely,
 William L. Thomson Jr.
 Support Group
 Obsidian-Studios, Inc.
 http://www.obsidian-studios.com
 
 
 -
 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: Tomcat 5 JK2 IIS 5

2004-08-25 Thread William L. Thomson Jr.
I will try your suggestions and get back to you.

I noticed in a log is said worker= was deprecated uses group= instead?

I set up an test env that is now doing the exact same thing as the
production env. I do not have those lines in jk2.properties and really
as far as Tomcat is concerned I see nothing related to jk in the tomcat
logs. Only the system event log generated by the dll.


-- 
Sincerely,
William L. Thomson Jr.
Support Group
Obsidian-Studios, Inc.
http://www.obsidian-studios.com


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



RE: Tomcat 5 JK2 IIS 5

2004-08-25 Thread William L. Thomson Jr.
On Wed, 2004-08-25 at 04:06, Allistair Crossley wrote:

 
 I notice the name of your redirector is not the name of how it is distributed by the 
 way.

This was my entire problem it looks like. Damn spelling.

-- 
Sincerely,
William L. Thomson Jr.
Support Group
Obsidian-Studios, Inc.
http://www.obsidian-studios.com


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



Vedr.: Tomcat 5 JK2 IIS 5

2004-08-24 Thread Thomas Nybro Bolding
Hi William,

I am certain we are several who is running latest TC on IIS 5 with JK2. If 
you could give us our config files chances are we quite fast could help 
you. Also try google as there are alternative setup guides.

Meanwhile you can glance at my jk2 and workers2 files - these are pretty 
out of the box.

jk2.properties (we use windows integrated security having thus disabled TC 
authentication):
## THIS FILE MAY BE OVERRIDEN AT RUNTIME. MAKE SURE TOMCAT IS STOPED
## WHEN YOU EDIT THE FILE.

## COMMENTS WILL BE _LOST_

## DOCUMENTATION OF THE FORMAT IN JkMain javadoc.

# Set the desired handler list
# handler.list=apr,request,channelJni
#
# Override the default port for the socketChannel
# channelSocket.port=8019
# Default:
# channelUnix.file=${jkHome}/work/jk2.socket
# Just to check if the the config  is working
# shm.file=${jkHome}/work/jk2.shm

# In order to enable jni use any channelJni directive
# channelJni.disabled = 0
# And one of the following directives:

# apr.jniModeSo=/opt/apache2/modules/mod_jk2.so

# If set to inprocess the mod_jk2 will Register natives itself
# This will enable the starting of the Tomcat from mod_jk2
# apr.jniModeSo=inprocess

request.tomcatAuthentication=false
request.registerRequests=false

#
# Socket configuration
#
handler.list=request,container,channelSocket
channelSocket.port=8009
channelSocket.address=127.0.0.1
channelSocket.maxport=port+10

workers2.properties (removed my own contexts):
[shm]
file=D:/DAT/logfiles/java/shm.log
size=1048576

[logger.file:0]
file=D:/DAT/logfiles/connections/jk2.log

[workerEnv:]
info=Global server options
timing=1
debug=0
logger=logger.file:0

[channel.socket:localhost:8009]
port=8009
host=127.0.0.1

[ajp13:localhost:8009]
channel=channel.socket:localhost:8009

[uri:/jsp-examples/*]
[uri:/examples/*]

[status:]
[uri:/jkstatus/*]
group=status:

/Thomas





William L. Thomson Jr. [EMAIL PROTECTED]
24-08-2004 00:56
Besvar venligst til Tomcat Users List

 
Til:tomcat-user [EMAIL PROTECTED]
cc: 
Vedr.:  Tomcat 5 JK2 IIS 5



Anyone here get Tomcat 5 to work with IIS 5?

I spent more than 7 hours today mainly because of the damn jk2
connector.

After all sorts of misleading docs of different working configs that did
not work for me. I have everything up an running.
However I can't get the syntax right in workers2.properties file.

IIS receives the request logs the redirect via the dll and then that's
it. No error logged in the jk log. Finally I came across a posting that
allowed me to enable logging via one of Windows system logs. Available
in the system manager.

Seems that the host is null and there are context issues.

I can post what ever you want to see, but I am almost 100% positive my
problem lies in the workers2.properties file.

Now Tomcat alone works perfectly. I have run Tomcat on Linux with Apache
for 3+ years now. Never had issues like this.

Absolutely ridiculous.

What really bothers me is I run the latest version of both Tomcat and
JK2. Why my workers2.properties file will work fine on Linux and not on
Windows. There is nothing in it to make it OS specific except for file
paths to the shm and log file. Otherwise the files should be the same.

Yet I have to modify them to get any sort of response. Otherwise it's
like jk is not there.

Either I get an error 500 from IIS or I get the page showing all java
content that is not supposed to be visible.

All documentation on Tomcat's site is wrong. It's all for JK not JK2.
Huge differences.

FYI, I have confirmed my registry settings are correct, the ISAPI dll
shows up with a green arrow.

I am doing all this for a client and do not have access to the files at
this moment. However I can get at them tomorrow and post them if needed.

In a nutshell what exactly needs to go in

jk2.properties

and

workers2.properties

on IIS. Since it's obviously different for IIS?

That or I really screwed up with configure Tomcat. Despite everything
working perfectly at port 8080.

Really at a loss and want to hate IIS but my problem is more with JK2
for IIS than IIS. Client really thinks highly of Tomcat at this point.

-- 
Sincerely,
William L. Thomson Jr.
Support Group
Obsidian-Studios, Inc.
http://www.obsidian-studios.com


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





FONT SIZE=1 FACE=Arial___
Vi goer opmaerksom paa, at denne e-mail kan indeholde fortrolig information. Hvis du 
ved en fejltagelse modtager e-mailen, beder vi dig venligst informere afsender om 
fejlen ved at bruge svar-funktionen. Samtidig beder vi dig slette e-mailen i dit 
system uden at videresende eller kopiere den.
Selv om e-mailen og ethvert vedhaeftet bilag efter vores overbevisning er fri for 
virus og andre fejl, som kan paavirke computeren eller it-systemet, hvori den modtages 
og laeses, aabnes den paa modtagerens eget ansvar. Vi paatager os ikke noget

AW: Tomcat 5 JK2 IIS 5

2004-08-24 Thread Michael Südkamp
Yes the Tomcat JK2 docu is suboptimal.
You can try an installer from this site http://www.shiftomat.com/opensource/. It 
worked for me. If you don't trust the EXE, the Nullsoft installer script is available 
and you can build the script yourself.

Michael


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



RE: Tomcat 5 JK2 IIS 5

2004-08-24 Thread Shapira, Yoav

Hi,
We are always gladly accepting documentation patches ;).  In addition we maintain 
references to external documentation on these issues at 
http://wiki.apache.org/jakarta-tomcat/Tomcat/Links.

Yoav Shapira
Millennium Research Informatics


-Original Message-
From: Michael Südkamp [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 24, 2004 5:29 AM
To: [EMAIL PROTECTED]; 'tomcat-user'
Subject: AW: Tomcat 5 JK2 IIS 5

Yes the Tomcat JK2 docu is suboptimal.
You can try an installer from this site
http://www.shiftomat.com/opensource/. It worked for me. If you don't trust
the EXE, the Nullsoft installer script is available and you can build the
script yourself.

Michael


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




This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


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



Re: Tomcat 5 JK2 IIS 5

2004-08-24 Thread William L. Thomson Jr.
Ok to begin with here is my problem this is a log file generated by jk2
when IIS is trying to work with Tomcat


38222,0.7035417,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (308)]:
In HttpFilterProc Virtual Host redirection of host.domain.com : 80

38222,0.7035417,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (252)]:
HttpFilterProc started

38222,0.703518518518519,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (308)]:
In HttpFilterProc Virtual Host redirection of host.domain.com : 80

38222,0.703518518518519,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (252)]:
HttpFilterProc started

38222,0.703518518518519,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (308)]:
In HttpFilterProc Virtual Host redirection of host.domain.com : 80

38222,0.703518518518519,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (252)]:
HttpFilterProc started

38222,0.703449074074074,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (308)]:
In HttpFilterProc Virtual Host redirection of host.domain.com : 80

38222,0.703449074074074,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (252)]:
HttpFilterProc started

38222,0.7034375,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (308)]:
In HttpFilterProc Virtual Host redirection of host.domain.com : 80

38222,0.7034375,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (252)]:
HttpFilterProc started

38222,0.703414351851852,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (429)]:
HttpFilterProc check if [/my/my.jpg] is pointing to the web-inf
directory

38222,0.703414351851852,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (420)]:
HttpFilterProc [/my/my.jpg] is not a servlet url

38222,0.703414351851852,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (308)]:
In HttpFilterProc Virtual Host redirection of host.domain.com : 80

38222,0.703414351851852,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (252)]:
HttpFilterProc started

38222,0.703414351851852,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (429)]:
HttpFilterProc check if [/my/] is pointing to the web-inf directory

38222,0.703414351851852,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (420)]:
HttpFilterProc [/my/] is not a servlet url

38222,0.703414351851852,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (308)]:
In HttpFilterProc Virtual Host redirection of host.domain.com : 80

38222,0.703414351851852,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (252)]:
HttpFilterProc started

38222,0.7034028,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (308)]:
In HttpFilterProc Virtual Host redirection of host.domain.com : 80

38222,0.7034028,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (252)]:
HttpFilterProc started

38222,0.7034028,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (429)]:
HttpFilterProc check if [/my/] is pointing to the web-inf directory

38222,0.7034028,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (420)]:
HttpFilterProc [/my/] is not a servlet url

38222,0.7034028,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (308)]:
In HttpFilterProc Virtual Host redirection of host.domain.com : 80

38222,0.7034028,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (252)]:
HttpFilterProc started

38222,0.7034028,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (429)]:
HttpFilterProc check if [/my] is pointing to the web-inf directory

38222,0.7034028,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (420)]:
HttpFilterProc [/my] is not a servlet url

38222,0.7034028,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (308)]:
In HttpFilterProc Virtual Host redirection of host.domain.com : 80

38222,0.7034028,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (252)]:
HttpFilterProc started

38222,0.70295138889,Apache Jakarta
Connector2,None,None,4,N/A,SERVER,Debug:  [jk_isapi_plugin.c (429)]:
HttpFilterProc check if [/webads2004/2004AAP/image003.jpg] is pointing
to the web-inf directory

38222,0.70295138889,Apache Jakarta

Re: Tomcat 5 JK2 IIS 5

2004-08-24 Thread William L. Thomson Jr.
Also in the workers2.properties file I have seen uri entries with ether
worker or context. Neither both.


[uri:/*.jsp]
Context=/

[uri:/servlet/*]
Context=/

or

[uri:/*.jsp]
worker=ajp13:localhost:8009

[uri:/servlet/*]
worker=ajp13:localhost:8009


The log I posted makes me seem to think it's a context issue. But
everything works perfectly in Tomcat via it's web server 8080. If
contexts or something else as wrong it should be wrong there as well?

Do you need to specify contexts or a worker for each uri?

-- 
Sincerely,
William L. Thomson Jr.
Support Group
Obsidian-Studios, Inc.
http://www.obsidian-studios.com


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



Tomcat 5 JK2 IIS 5

2004-08-23 Thread William L. Thomson Jr.
Anyone here get Tomcat 5 to work with IIS 5?

I spent more than 7 hours today mainly because of the damn jk2
connector.

After all sorts of misleading docs of different working configs that did
not work for me. I have everything up an running.
However I can't get the syntax right in workers2.properties file.

IIS receives the request logs the redirect via the dll and then that's
it. No error logged in the jk log. Finally I came across a posting that
allowed me to enable logging via one of Windows system logs. Available
in the system manager.

Seems that the host is null and there are context issues.

I can post what ever you want to see, but I am almost 100% positive my
problem lies in the workers2.properties file.

Now Tomcat alone works perfectly. I have run Tomcat on Linux with Apache
for 3+ years now. Never had issues like this.

Absolutely ridiculous.

What really bothers me is I run the latest version of both Tomcat and
JK2. Why my workers2.properties file will work fine on Linux and not on
Windows. There is nothing in it to make it OS specific except for file
paths to the shm and log file. Otherwise the files should be the same.

Yet I have to modify them to get any sort of response. Otherwise it's
like jk is not there.

Either I get an error 500 from IIS or I get the page showing all java
content that is not supposed to be visible.

All documentation on Tomcat's site is wrong. It's all for JK not JK2.
Huge differences.

FYI, I have confirmed my registry settings are correct, the ISAPI dll
shows up with a green arrow.

I am doing all this for a client and do not have access to the files at
this moment. However I can get at them tomorrow and post them if needed.

In a nutshell what exactly needs to go in

jk2.properties

and

workers2.properties

on IIS. Since it's obviously different for IIS?

That or I really screwed up with configure Tomcat. Despite everything
working perfectly at port 8080.

Really at a loss and want to hate IIS but my problem is more with JK2
for IIS than IIS. Client really thinks highly of Tomcat at this point.

-- 
Sincerely,
William L. Thomson Jr.
Support Group
Obsidian-Studios, Inc.
http://www.obsidian-studios.com


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



Tomcat 5 and IIS 5 Configuration Document

2004-03-26 Thread LILES, DAVID (CONTRACTOR)
After a couple of painful weeks trying to figure out how to integrate Tomcat 5 with 
IIS 5, I finally have a working environment with many thanks going to Adrian Lanning.

I have put together a document that outlines the steps taken to get this configuration 
working and would like to share it with those who may also be in a similar situation 
as I.

The document is currently located at http://www.dynamichostings.com/TomCat5IIS5.do

If it is found to be of value for others is there a way to have a reference link point 
others to its location?

-Dave

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



Re: Tomcat 5 and IIS 5 Configuration Document

2004-03-26 Thread Tim Funk
You can add a link to
http://nagoya.apache.org/wiki/apachewiki.cgi?Tomcat/Links
-Tim

LILES, DAVID (CONTRACTOR) wrote:

After a couple of painful weeks trying to figure out how to integrate Tomcat 5 with IIS 5, I finally have a working environment with many thanks going to Adrian Lanning.

I have put together a document that outlines the steps taken to get this configuration working and would like to share it with those who may also be in a similar situation as I.

The document is currently located at http://www.dynamichostings.com/TomCat5IIS5.do

If it is found to be of value for others is there a way to have a reference link point others to its location?
 
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Tomcat 5 and IIS 5 Configuration Document

2004-03-26 Thread LILES, DAVID (CONTRACTOR)
Thanks

-Original Message-
From: Tim Funk [mailto:[EMAIL PROTECTED]
Sent: Friday, March 26, 2004 12:14 PM
To: Tomcat Users List
Subject: Re: Tomcat 5 and IIS 5 Configuration Document


You can add a link to
http://nagoya.apache.org/wiki/apachewiki.cgi?Tomcat/Links

-Tim

LILES, DAVID (CONTRACTOR) wrote:

 After a couple of painful weeks trying to figure out how to integrate Tomcat 5 with 
 IIS 5, I finally have a working environment with many thanks going to Adrian Lanning.
 
 I have put together a document that outlines the steps taken to get this 
 configuration working and would like to share it with those who may also be in a 
 similar situation as I.
 
 The document is currently located at http://www.dynamichostings.com/TomCat5IIS5.do
 
 If it is found to be of value for others is there a way to have a reference link 
 point others to its location?
  

-
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]



Tomcat 5 and IIS 5

2004-02-16 Thread Julien Martin
Hello,
I know this question must have been asked before. All I want is the location
of the documentation about hooking up Tomcat 5.0 with IIS 5. Note that when
you click on the jk documentation link on the following page:
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/index.html You are
redirected to the download page of Jakarta.
So where is the documentation?
Thanks in advance,
Julien Martin.


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



RE: Tomcat 5 and IIS 5

2004-02-16 Thread Allistair Crossley
forget that documentation it wont help you ...

try out this which is for IIS 6 but I just ignored the IIS 6 specific parts!

http://virtualict.net/support/kb/iis6-Tomcat5-JK2.html

Cheers, ADC

-Original Message-
From: Julien Martin [mailto:[EMAIL PROTECTED]
Sent: 16 February 2004 17:20
To: Tomcat Users List
Subject: Tomcat 5 and IIS 5


Hello,
I know this question must have been asked before. All I want is the location
of the documentation about hooking up Tomcat 5.0 with IIS 5. Note that when
you click on the jk documentation link on the following page:
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/index.html You are
redirected to the download page of Jakarta.
So where is the documentation?
Thanks in advance,
Julien Martin.


-
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: Tomcat 5 and IIS 5

2004-02-16 Thread Krell, Andrew
Actually, I believe the current recommended connector for IIS is JK not JK2.
At least that is the case according to the connector FAQ found here:
http://jakarta.apache.org/tomcat/faq/connectors.html#vs
Beyond that, there are many resources across the web, in the archives of the
list, and on the Jakarta site itself (though some of the documentation can
be a little spotty and outdated).   The Jakarta Connector Documentation is
found at:
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/connectors.html
Good luck
Andrew

-Original Message-
From: Allistair Crossley [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 16, 2004 12:29 PM
To: Tomcat Users List
Subject: RE: Tomcat 5 and IIS 5


forget that documentation it wont help you ...

try out this which is for IIS 6 but I just ignored the IIS 6 specific parts!

http://virtualict.net/support/kb/iis6-Tomcat5-JK2.html

Cheers, ADC

-Original Message-
From: Julien Martin [mailto:[EMAIL PROTECTED]
Sent: 16 February 2004 17:20
To: Tomcat Users List
Subject: Tomcat 5 and IIS 5


Hello,
I know this question must have been asked before. All I want is the location
of the documentation about hooking up Tomcat 5.0 with IIS 5. Note that when
you click on the jk documentation link on the following page:
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/index.html You are
redirected to the download page of Jakarta. So where is the documentation?
Thanks in advance, Julien Martin.


-
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]

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