Tomcat behind IIS - Session timeout is ignored

2005-10-05 Thread Tobias Meyer
Hello list,

I have a problem with a tomcat 5.0.28 installation connected to IIS 6.0
(Windows 2003 server) with isapi_redirect.dll

Everything is working well, except for the session timeout.
The timeout is set to 60 minutes in the context's web.xml file
(session-timeout60/session-timeout) which works great in many other
installations (without IIS, though)

As far as I could tell, the sessions are purely managed by tomcat, so IIS
should not pose a problem, but still...

Can anyone shed some light on this?

Thanks,
Tobias


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



Connectiong tomcat to IIS - no luck and conflicting info

2005-09-06 Thread David Thielen
Hi;

 

I am trying to connect Tomcat 5.5 to IIS 5.1 and having zero luck.

 

Here is what I did:

1.  Went to
http://apache.towardex.com/jakarta/tomcat-connectors/jk/binaries/win32/jk-1.
2.14
2.  Downloaded  ran isapi_redirect-1.2.14.exe
3.  Added isapi_redirect as an ISAPI filter to the default website.

 

When I try to bring up the page http://localhost/jkstatus I get the
following in my IIS log:

20:19:47 127.0.0.1 GET /jkstatus 404

 

So it's not even calling isapi_redirect.dll. The installer did create the
jakarta virtual directory and some registry entries. (I believe that even if
all of my tomcat settings are wrong - it should still be calling
isapi_redirect.)

 

I'm stuck now. The book Pro Jakarta Tomcat 5 discusses setting this up using
isapi_redirect2.dll and using registry entries that have a 2.0 node in them.
But I can't find any metion of this anywhere else.

 

The isapi_redirect installer doesn't have any documentation.

 

On the jakarta website I can't find any 5.x specific install instructions.

 

I've done this successfully for Tomcat 4.x - see
http://dave.thielen.com/articles/Configuring%20Tomcat%20to%20work%20with%20I
IS.doc but these instructions don't match the contents of the config files
for 5.5.

 

So what should I try next?

 

Thanks - dave

 



RE: Connectiong tomcat to IIS - no luck and conflicting info

2005-09-06 Thread Tracy Spratt
I am exceedingly ignorant in the J2EE universe, but I did manage to get
TC5.5 talking to IIS 6 effectively (3 times, so it wasn't a fluke!).

Have you seen this doc:
http://jakarta.apache.org/tomcat/connectors-doc/howto/iis.html

It has some troubleshooting info.

Be sure to at least restart the IIS service, probably even reboot
entirely!

Tracy

-Original Message-
From: David Thielen [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 06, 2005 4:29 PM
To: tomcat-user@jakarta.apache.org
Subject: Connectiong tomcat to IIS - no luck and conflicting info

Hi;

 

I am trying to connect Tomcat 5.5 to IIS 5.1 and having zero luck.

 

Here is what I did:

1.  Went to
http://apache.towardex.com/jakarta/tomcat-connectors/jk/binaries/win32/j
k-1.
2.14
2.  Downloaded  ran isapi_redirect-1.2.14.exe
3.  Added isapi_redirect as an ISAPI filter to the default website.

 

When I try to bring up the page http://localhost/jkstatus I get the
following in my IIS log:

20:19:47 127.0.0.1 GET /jkstatus 404

 

So it's not even calling isapi_redirect.dll. The installer did create
the
jakarta virtual directory and some registry entries. (I believe that
even if
all of my tomcat settings are wrong - it should still be calling
isapi_redirect.)

 

I'm stuck now. The book Pro Jakarta Tomcat 5 discusses setting this up
using
isapi_redirect2.dll and using registry entries that have a 2.0 node in
them.
But I can't find any metion of this anywhere else.

 

The isapi_redirect installer doesn't have any documentation.

 

On the jakarta website I can't find any 5.x specific install
instructions.

 

I've done this successfully for Tomcat 4.x - see
http://dave.thielen.com/articles/Configuring%20Tomcat%20to%20work%20with
%20I
IS.doc but these instructions don't match the contents of the config
files
for 5.5.

 

So what should I try next?

 

Thanks - dave

 




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



Tomcat and IIS load balancing configuration

2005-08-29 Thread Don Hayes
I am testing a load balancing configuration with Tomcat and IIS using the
isapi_redirector.  My configuration works if I have a single worker defined
in my workers.properties file but it fails if I try to add a second worker
(ie, I change the balance_workers entry near the bottom of the file to the
one that is currently commented out).

One of the symptoms I see of the problem is that when my servlet calls
request.getRequestedSessionId() I get back a null.

Here is my workers.properties file:

workers.tomcat_home=d:\tomcat
workers.java_home=c:\progra~1\java\jre15~1.0_0
ps=\
worker.list=wlb

worker.ajp13w.type=ajp13
worker.ajp13w.host=localhost
worker.ajp13w.port=8009
worker.ajp13w.cachesize=500
worker.ajp13w.cache_timeout=600
worker.ajp13w.socket_keepalive=1
worker.ajp13w.recycle_timeout=300
worker.ajp13w.lbfactor=1
worker.ajp13w.debug=9

worker.ajp13x.type=ajp13
worker.ajp13x.host=localhost
worker.ajp13x.port=8010
worker.ajp13x.cachesize=500
worker.ajp13x.cache_timeout=600
worker.ajp13x.socket_keepalive=1
worker.ajp13x.recycle_timeout=300
worker.ajp13x.lbfactor=1
worker.ajp13x.debug=9

worker.wlb.type=lb
#worker.wlb.balance_workers=ajp13w,ajp13x
worker.wlb.balance_workers=ajp13w
worker.wlb.sticky_session=1

worker.jkstatus.type=status



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



Problem front-ending tomcat with IIS

2005-08-01 Thread Ikonne, Ike
Hi all,

 

 

I am trying to configure Basic Authentication with IIS/Tomcat and have
not had any success yet.

 

Here is my operating environment:

 

Tomcat 5.5.9

IIS 5.0

 

I get HTTP 401 error when I ran this setup.  I have successfully ran the
same setup with Apache/Tomcat.

I would appreciate it if anyone could point me to any material that I
might read to resolve this issue, or

if anyone has had the same experience I would like to know what you did
to resolve this issue.

 

Thanks,

 

Ike

 



How to configure Tomcat and IIS to perform Basic authentication

2005-07-13 Thread Ikonne, Ike
Hi all,

 

I have been trying to configure IIS/Tomcat to perform basic
authentication and have not had any success yet,

I would appreciate it if someone could give me some pointers on how to
make this to work.

 

Thanks,

 

Ike

 



Tomcat and IIS on two web servers

2005-07-06 Thread Patnaik, Vandana
Hi,

 

How does the information apply to two servers having an instance of
TOMCAT running on each. The two servers are referenced by an alias and
have IIS running on them. I also have the Jakarta connector running on
both machines. The alias is a CSS device which round robins the requests
that come to the alias.

Does  the worker.properties on both the machines have to modified? Why
is that?

 

My application works fine when I access the uri of either of the nodes.
But if I try to access the application using the alias, it does not
work.

 

Any help would be appreciated.

 

Vandana

 

 



RE: Redirecting Tomcat to IIS (UNCLASSIFIED)

2005-06-15 Thread Young, Ed CONT Anteon
Classification:  UNCLASSIFIED 
Caveats: NONE

Woodchuck,
I have completed uninstalled the JK. Re-installed the jk with
the file I got from the website below; do you think I could have a issue
with the configuration in the server.xml file? 

-Original Message-
From: Woodchuck [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 14, 2005 2:03 PM
To: Tomcat Users List
Subject: RE: Redirecting Tomcat to IIS (UNCLASSIFIED)

hihi Ed,

i have windows 2003 server, IIS 6.0, Tomcat 5.5.9 and i have
redirection working fine.  i used to have windows 2000, IIS 5.0, Tomcat
4.1 and i also had redirection working fine in that setup as well.

my question to you is, how are you setting up the JK connector?  are
you doing it manually?  or are you using the setupJK204.exe program?

i ran into problems setting up the JK connector manually, even though i
thought i covered everything (including registry).  but i found using
the setup program to be flawless as long as you always uninstall the
previous JK installation before installing the new one (ie. use
windows' add/remove programs to uninstall whenever you add a new Tomcat
webapp and need redirection for example).

to be absolutely safe, you *need* to reboot server after uninstalling
JK.  after rebooting then you can install JK again.  this is my process
and it has worked 100%.

the setup program can be found here:
http://www.shiftomat.com/opensource/

hth,
woodchuck



--- Young, Ed CONT Anteon [EMAIL PROTECTED] wrote:

 Classification:  UNCLASSIFIED 
 Caveats: NONE
 
 I haven't removed any files and the default files and the Default
 page
 is listed above the iisstart.htm. My application is using tomcat now
 but
 needs to be redirected to IIS. The isapi filter is green and pointing
 up. I have also checked the registry settings to ensure the correct
 paths are specified.
 
 -Original Message-
 From: Peter Crowther [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, June 09, 2005 8:26 AM
 To: Tomcat Users List
 Subject: RE: Redirecting Tomcat to IIS (UNCLASSIFIED)
 
  From: Young, Ed CONT Anteon [mailto:[EMAIL PROTECTED] 
  I have an issue with redirecting my web application from Tomcat
  4.1 to IIS 6.0 on Windows 2003 Server. I have followed the steps in
  configuring the redirect but once I try to access the page using
 port
  80, I get an Under Construction error. How can this be rectified?
 
 If you access the URL to which you're redirecting directly (i.e.
 without
 going through the Tomcat application and it issuing the redirect),
 does
 it work?
 
 What's the default page for the IIS6 directory?  Have you removed
 iisstart.htm from the directory in which you've deployed the IIS6
 files?
 If you look at the list of start pages on the 'Documents' tab of your
 IIS6 sites, property pages, is that default page listed above
 iisstart.htm?
 
   - Peter
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 Classification:  UNCLASSIFIED 
 Caveats: NONE
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 




__ 
Discover Yahoo! 
Use Yahoo! to plan a weekend, have fun online and more. Check it out! 
http://discover.yahoo.com/

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

Classification:  UNCLASSIFIED 
Caveats: NONE


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



RE: Redirecting Tomcat to IIS (UNCLASSIFIED)

2005-06-14 Thread Young, Ed CONT Anteon
Classification:  UNCLASSIFIED 
Caveats: NONE

I haven't removed any files and the default files and the Default page
is listed above the iisstart.htm. My application is using tomcat now but
needs to be redirected to IIS. The isapi filter is green and pointing
up. I have also checked the registry settings to ensure the correct
paths are specified.

-Original Message-
From: Peter Crowther [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 09, 2005 8:26 AM
To: Tomcat Users List
Subject: RE: Redirecting Tomcat to IIS (UNCLASSIFIED)

 From: Young, Ed CONT Anteon [mailto:[EMAIL PROTECTED] 
   I have an issue with redirecting my web application from Tomcat
 4.1 to IIS 6.0 on Windows 2003 Server. I have followed the steps in
 configuring the redirect but once I try to access the page using port
 80, I get an Under Construction error. How can this be rectified?

If you access the URL to which you're redirecting directly (i.e. without
going through the Tomcat application and it issuing the redirect), does
it work?

What's the default page for the IIS6 directory?  Have you removed
iisstart.htm from the directory in which you've deployed the IIS6 files?
If you look at the list of start pages on the 'Documents' tab of your
IIS6 sites, property pages, is that default page listed above
iisstart.htm?

- Peter

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

Classification:  UNCLASSIFIED 
Caveats: NONE


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



RE: Redirecting Tomcat to IIS (UNCLASSIFIED)

2005-06-14 Thread Woodchuck
hihi Ed,

i have windows 2003 server, IIS 6.0, Tomcat 5.5.9 and i have
redirection working fine.  i used to have windows 2000, IIS 5.0, Tomcat
4.1 and i also had redirection working fine in that setup as well.

my question to you is, how are you setting up the JK connector?  are
you doing it manually?  or are you using the setupJK204.exe program?

i ran into problems setting up the JK connector manually, even though i
thought i covered everything (including registry).  but i found using
the setup program to be flawless as long as you always uninstall the
previous JK installation before installing the new one (ie. use
windows' add/remove programs to uninstall whenever you add a new Tomcat
webapp and need redirection for example).

to be absolutely safe, you *need* to reboot server after uninstalling
JK.  after rebooting then you can install JK again.  this is my process
and it has worked 100%.

the setup program can be found here:
http://www.shiftomat.com/opensource/

hth,
woodchuck



--- Young, Ed CONT Anteon [EMAIL PROTECTED] wrote:

 Classification:  UNCLASSIFIED 
 Caveats: NONE
 
 I haven't removed any files and the default files and the Default
 page
 is listed above the iisstart.htm. My application is using tomcat now
 but
 needs to be redirected to IIS. The isapi filter is green and pointing
 up. I have also checked the registry settings to ensure the correct
 paths are specified.
 
 -Original Message-
 From: Peter Crowther [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, June 09, 2005 8:26 AM
 To: Tomcat Users List
 Subject: RE: Redirecting Tomcat to IIS (UNCLASSIFIED)
 
  From: Young, Ed CONT Anteon [mailto:[EMAIL PROTECTED] 
  I have an issue with redirecting my web application from Tomcat
  4.1 to IIS 6.0 on Windows 2003 Server. I have followed the steps in
  configuring the redirect but once I try to access the page using
 port
  80, I get an Under Construction error. How can this be rectified?
 
 If you access the URL to which you're redirecting directly (i.e.
 without
 going through the Tomcat application and it issuing the redirect),
 does
 it work?
 
 What's the default page for the IIS6 directory?  Have you removed
 iisstart.htm from the directory in which you've deployed the IIS6
 files?
 If you look at the list of start pages on the 'Documents' tab of your
 IIS6 sites, property pages, is that default page listed above
 iisstart.htm?
 
   - Peter
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 Classification:  UNCLASSIFIED 
 Caveats: NONE
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 




__ 
Discover Yahoo! 
Use Yahoo! to plan a weekend, have fun online and more. Check it out! 
http://discover.yahoo.com/

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



RE: Redirecting Tomcat to IIS (UNCLASSIFIED)

2005-06-13 Thread Brereton, Stephen
I have an issue with redirecting my web application from Tomcat
4.1 to IIS 6.0 on Windows 2003 Server. 
 I assume this to mean you are running Tomcat under Windows IIS6, and are
trying to redirect pages to the IIS6 server. This means you have (or should
have) at least one page under the default IIS6 install, that is going to
serve the redirected requests.

I have followed the steps in
configuring the redirect but once I try to access the page using port
80, I get an Under Construction error. How can this be rectified?
 this likely means you are missing the normal .htm or .asp/.aspx page
that is delivered when you open the default web site . If this is missing,
there is nothing for the server to show. Port 80 is the default one for web
pages, so that isn't an issue.

-Original Message-
From: Young, Ed CONT Anteon [mailto:[EMAIL PROTECTED]
Sent: 13 June 2005 16:16
To: [EMAIL PROTECTED]
Subject: RE: Redirecting Tomcat to IIS (UNCLASSIFIED)


Classification:  UNCLASSIFIED 
Caveats: NONE

I am not sure I know what you mean when you speak of using the pages
deployed for the purpose

-Original Message-
From: Brereton, Stephen [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 09, 2005 8:13 AM
To: 'Tomcat Users List'
Subject: RE: Redirecting Tomcat to IIS (UNCLASSIFIED)

If you are sure the IIS site is on  port 80 - which it probably will be
-
check the home directory under ISM to make sure IIS is actually using
the
pages deployed for the purpose

HTH 

-Original Message-
From: Young, Ed CONT Anteon [mailto:[EMAIL PROTECTED]
Sent: 09 June 2005 12:45
To: Tomcat Users List
Subject: Redirecting Tomcat to IIS (UNCLASSIFIED)


Classification:  UNCLASSIFIED 
Caveats: NONE

Hi,
I have an issue with redirecting my web application from Tomcat
4.1 to IIS 6.0 on Windows 2003 Server. I have followed the steps in
configuring the redirect but once I try to access the page using port
80, I get an Under Construction error. How can this be rectified?

Ed 
  Classification:  UNCLASSIFIED 
Caveats: NONE


* * * * * * * * * * * *
This email and any files transmitted with it are confidential and
intended
solely for the use of the individual or entity to whom they are
addressed.
This email represents the personal views of the author/sender.  The
author/sender has no authority or delegation to bind the City of York
Council by this e-mail and the City of York Council accepts no
responsibility whatsoever for its contents.  Please note that any reply
to
this email may be screened.

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

Classification:  UNCLASSIFIED 
Caveats: NONE

* * * * * * * * * * * *
This email and any files transmitted with it are confidential and intended
solely for the use of the individual or entity to whom they are addressed.
This email represents the personal views of the author/sender.  The
author/sender has no authority or delegation to bind the City of York
Council by this e-mail and the City of York Council accepts no
responsibility whatsoever for its contents.  Please note that any reply to
this email may be screened.

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



Redirecting Tomcat to IIS (UNCLASSIFIED)

2005-06-09 Thread Young, Ed CONT Anteon
Classification:  UNCLASSIFIED 
Caveats: NONE

Hi,
I have an issue with redirecting my web application from Tomcat
4.1 to IIS 6.0 on Windows 2003 Server. I have followed the steps in
configuring the redirect but once I try to access the page using port
80, I get an Under Construction error. How can this be rectified?

Ed 
  Classification:  UNCLASSIFIED 
Caveats: NONE

How to get Tomcat (Jakarta) to run inside IIS.

References:
- JK2 (Tomcat inside IIS)
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/index.html
http://virtualict.net/support/kb/iis6-Tomcat5-JK2.html (does not autostart 
tomcat with IIS service)

Installation:
- Java
Tomcat will use the Java 2 JRE but the SDK will help with debugging. Get it 
from http://java.sun.com. (JRE is included with SDK)

Install Java 2 JRE/SDK. Do not install to a path that includes spaces, like 
Program Files.

Set System Environment Variable JAVA_HOME to installation directory of Java 
JRE/SDK.
If you installed the SDK add %JAVA_HOME%\bin to PATH System Environment 
Variable. (Makes debuging easier.)

- Tomcat
Get it from http://jakarta.apache.org/site/binindex.cgi. This document was 
created using version 5.0.25

Get the ZIP file and extract it to a temporary location. Move the contents of 
the jakarta-tomcat-... directory to your target directory.

Set System Environment Variable CATALINA_HOME to the Tomcat target directory.

- JK2 (Tomcat Webserver Connector)
Get it from http://jakarta.apache.org/site/binindex.cgi. This document was 
created using version jk2.0.4

Get the ZIP file and extract it to a temporary location.

Put the isapi_redirector2.dll and install4iis.js in %CATALINA_HOME%\bin.

You have to configure some files to get IIS/JK2 to start Tomcat in process (as 
a DLL).

Configuration:
- IIS
Open a command prompt and cd to %CATALINA_HOME%\bin.

Execute the JK2 script:
C:\Tomcat\bin cscript install4iis.js

If you get Unable to find Web Server ROOT direcrory, then edit the 
install4iis.js file. Find the line:
if ((IIsROOT = findADSIObject(IIsWebServer, _IIS_WEBDIR, ROOT)) == null) {
and change ', ROOT))' to ', Root))'. Execute the JK2 script again.

- JK2
There is one file to configure in %CATALINA_HOME%\conf:

Copy the workers2.properties content from the bottom of this file and paste it 
into a new %CATALINA_HOME%\conf\workers2.properties file.

- Tomcat
Copy the JAR files from %CATALINA_HOME%\bin, %CATALINA_HOME%\common\lib, and 
%CATALINA_HOME%\server\lib to %JAVA_HOME%\jre\lib\ext

Copy the server.xml content from the bottom of this file and paste it into a 
new %CATALINA_HOME%\conf\server.xml file.

- Install complete.
Reboot so the IIS can get the new System Environment Variables.

Browse to http://localhost/jkstatus, http://localhost/jsp-examples, 
http://localhost/servlets-examples.

Configuration files:
- workers2.properties

## Begin workers2.properties

# Common properties:
# Common properties for all components

# Property name Default Description 
# disabled  0 (false)   disabled state for the component, 
1=true 0=false 
# debug 0 (false)   Debug level for the component, 
0=disabled, 1..10 enabled. Higher levels generate more debug. 
# version   0   'Generation' of the component config. 
Important for runtime reconfiguration. If you edit the config file or set the 
shmem properties, you need to also upgrade the version of the modified 
component. The config layer will detect the change and call the setter method. 

[config:]
debug=0
debugEnv=0

# Shared memory descriptor.
[shm]
info=Scoreboard. Requried for reconfiguration and status with multiprocess 
servers.
file=${CATALINA_HOME}\logs\jk2.shm

# Loggers:
# Levels supported: EMERG, ERROR, INFO, DEBUG

# File Logger.
[logger.file:]
info=File logger
file=${CATALINA_HOME}\logs\jk2.log
level=INFO

# Windows Application Event Logger.
[logger.win32:]
info=Windows Application Event Log
level=ERROR

# Java Virtual Machine:

# Define the parameters for the JVM.
[vm:]
info=Parameters used to load a JVM in the server process
JVM=${JAVA_HOME}/jre/bin/server/jvm.dll
# Use the classpath value as needed for your applets. All of the Tomcat and 
Java JARs should be in %JAVA_HOME%\jre\lib\ext.
classpath=${JAVA_HOME}/jre/lib/jce.jar
OPT=-Dtomcat.home=${CATALINA_HOME}
OPT=-Dcatalina.home=${CATALINA_HOME}
OPT=-Xmx128M

# Channels:

# Socket channel on localhost. This is the main, the only AJP, channel used by 
the webapps.
[channel.socket:localhost:8009]
port=8009
host=127.0.0.1

# JNI channel. This channel is not needed unless a webapp needs it. It is not 
needed for inprocess start/stop.
# [channel.jni:jni]
# info=The jni channel, used if tomcat is started inprocess

# Workers:

# Default environment for all workers.
[workerEnv:]
logger=logger.win32:

# A load balancer named lb. Use even if you only have one machine.
[lb:lb]

# JK2 Status worker. No channel needed.
[status:]
info=Status worker, displays runtime

RE: Redirecting Tomcat to IIS (UNCLASSIFIED)

2005-06-09 Thread Brereton, Stephen
If you are sure the IIS site is on  port 80 - which it probably will be -
check the home directory under ISM to make sure IIS is actually using the
pages deployed for the purpose

HTH 

-Original Message-
From: Young, Ed CONT Anteon [mailto:[EMAIL PROTECTED]
Sent: 09 June 2005 12:45
To: Tomcat Users List
Subject: Redirecting Tomcat to IIS (UNCLASSIFIED)


Classification:  UNCLASSIFIED 
Caveats: NONE

Hi,
I have an issue with redirecting my web application from Tomcat
4.1 to IIS 6.0 on Windows 2003 Server. I have followed the steps in
configuring the redirect but once I try to access the page using port
80, I get an Under Construction error. How can this be rectified?

Ed 
  Classification:  UNCLASSIFIED 
Caveats: NONE


* * * * * * * * * * * *
This email and any files transmitted with it are confidential and intended
solely for the use of the individual or entity to whom they are addressed.
This email represents the personal views of the author/sender.  The
author/sender has no authority or delegation to bind the City of York
Council by this e-mail and the City of York Council accepts no
responsibility whatsoever for its contents.  Please note that any reply to
this email may be screened.

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



RE: Redirecting Tomcat to IIS (UNCLASSIFIED)

2005-06-09 Thread Peter Crowther
 From: Young, Ed CONT Anteon [mailto:[EMAIL PROTECTED] 
   I have an issue with redirecting my web application from Tomcat
 4.1 to IIS 6.0 on Windows 2003 Server. I have followed the steps in
 configuring the redirect but once I try to access the page using port
 80, I get an Under Construction error. How can this be rectified?

If you access the URL to which you're redirecting directly (i.e. without
going through the Tomcat application and it issuing the redirect), does
it work?

What's the default page for the IIS6 directory?  Have you removed
iisstart.htm from the directory in which you've deployed the IIS6 files?
If you look at the list of start pages on the 'Documents' tab of your
IIS6 sites, property pages, is that default page listed above
iisstart.htm?

- Peter

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



RE : Tomcat behind IIS

2005-03-21 Thread VAN DER MARLIERE FREDERIC
In fact, what I really want is to prevent any other IIS or Apache to connect
to my 8009 connector port, for my IIS machine is used for authentication. I
don't want that someone can bypass this. 

I tried to use a Request Filter valve by adding this in my server.xml :

Valve className=org.apache.catalina.valves.RemoteAddrValve
   allow=ip_address_of_my_iis_server/


But it doesn't work. Even if my clients don't connect directly to my Tomcat
server (only my IIS server does, and i can verify this by using the netstat
command), they are blocked by this valve. It seems that my IIS tells Tomcat
that its IP adress is my client's one. Maybe that's why my clients IP
addresses are logged in Tomcat when this valve is disabled.


So now this valve is not enabled anymore, and if someone installs a web
connector pointing to my Tomcat server, it will have access to my webapps...



Any help will be appreciated.


Fred

-Message d'origine-
De : SANTOS, DANIEL (SBCSI) [mailto:[EMAIL PROTECTED] 
Envoyé : vendredi 18 mars 2005 18:22
À : Tomcat Users List
Cc : MAES NICOLAS
Objet : RE: Tomcat behind IIS


sure, just go into your server.xml and remove the web connector

   Connector port=8080 /

I'm using the minimal server.xml (slightly modified) so there may be more
parameters in yours.  This element is contained with in the Service tag
which is in the Server tag.

Daniel

-Original Message-
From: VAN DER MARLIERE FREDERIC [mailto:[EMAIL PROTECTED] Sent: Friday, March 
18, 2005 10:58 AM
To: tomcat-user@jakarta.apache.org
Cc: MAES NICOLAS
Subject: Tomcat behind IIS


Hi all,

I installed a tomcat 5.0 behind an IIS server. Everything works fine with
the connector.

Now, I would like that Tomcat only accepts connections from this IIS server
and not from others computers (still accessible from
http://myhost:8080/myApplication http://myhost:8080/myApplication ).

Is there a simple way to do this in server.xml (or other tomcat config
files) or do I have to install a firewall ?

Thanks in advance.
Fred.



Ce message et toutes les pieces jointes (ci-apres le message) sont
confidentiels et etablis a l'intention exclusive de ses destinataires. Toute
utilisation ou diffusion non autorisee est interdite.Tout message
electronique est susceptible d'alteration. Le CREDIT DU NORD et ses filiales
declinent toute responsabilite au titre de ce message s'il a ete altere,
deforme ou falsifie. This message and any attachments ( the message) are
confidential and intended solely for the addressees. Any unauthorised use or
dissemination is prohibited.E-mails are susceptible to alteration. Neither
CREDIT DU NORD nor any of its subsidiaries or affiliates shall be liable for
the message if altered, changed or falsified.





Ce message et toutes les pieces jointes (ci-apres le message) sont 
confidentiels et etablis a l'intention exclusive de ses destinataires.
Toute utilisation ou diffusion non autorisee est interdite.Tout message 
electronique est susceptible d'alteration.
Le CREDIT DU NORD et ses filiales declinent toute responsabilite au titre de ce 
message s'il a ete altere, deforme ou falsifie.
This message and any attachments ( the message) are confidential and intended 
solely for the addressees.
Any unauthorised use or dissemination is prohibited.E-mails are susceptible to 
alteration.
Neither CREDIT DU NORD nor any of its subsidiaries or affiliates shall be 
liable for the message if altered, changed or falsified.



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



RE: RE : Tomcat behind IIS

2005-03-21 Thread Sng Wee Jim

Why not try blocking traffic at the router level? Your network router should 
allow you to configure which machine can connect to your tomcat.


- Jim



-Original Message-
From: VAN DER MARLIERE FREDERIC [mailto:[EMAIL PROTECTED]
Sent: Monday, March 21, 2005 5:36 PM
To: SANTOS, DANIEL (SBCSI); Tomcat Users List
Cc: MAES NICOLAS
Subject: RE : Tomcat behind IIS

In fact, what I really want is to prevent any other IIS or Apache to connect
to my 8009 connector port, for my IIS machine is used for authentication. I
don't want that someone can bypass this.

I tried to use a Request Filter valve by adding this in my server.xml :

Valve className=org.apache.catalina.valves.RemoteAddrValve
   allow=ip_address_of_my_iis_server/


But it doesn't work. Even if my clients don't connect directly to my Tomcat
server (only my IIS server does, and i can verify this by using the netstat
command), they are blocked by this valve. It seems that my IIS tells Tomcat
that its IP adress is my client's one. Maybe that's why my clients IP
addresses are logged in Tomcat when this valve is disabled.


So now this valve is not enabled anymore, and if someone installs a web
connector pointing to my Tomcat server, it will have access to my webapps...



Any help will be appreciated.


Fred

-Message d'origine-
De : SANTOS, DANIEL (SBCSI) [mailto:[EMAIL PROTECTED]
Envoyé : vendredi 18 mars 2005 18:22
À : Tomcat Users List
Cc : MAES NICOLAS
Objet : RE: Tomcat behind IIS


sure, just go into your server.xml and remove the web connector

   Connector port=8080 /

I'm using the minimal server.xml (slightly modified) so there may be more
parameters in yours.  This element is contained with in the Service tag
which is in the Server tag.

Daniel

-Original Message-
From: VAN DER MARLIERE FREDERIC [mailto:[EMAIL PROTECTED] Sent: Friday, March 
18, 2005 10:58 AM
To: tomcat-user@jakarta.apache.org
Cc: MAES NICOLAS
Subject: Tomcat behind IIS


Hi all,

I installed a tomcat 5.0 behind an IIS server. Everything works fine with
the connector.

Now, I would like that Tomcat only accepts connections from this IIS server
and not from others computers (still accessible from
http://myhost:8080/myApplication http://myhost:8080/myApplication ).

Is there a simple way to do this in server.xml (or other tomcat config
files) or do I have to install a firewall ?

Thanks in advance.
Fred.



Ce message et toutes les pieces jointes (ci-apres le message) sont
confidentiels et etablis a l'intention exclusive de ses destinataires. Toute
utilisation ou diffusion non autorisee est interdite.Tout message
electronique est susceptible d'alteration. Le CREDIT DU NORD et ses filiales
declinent toute responsabilite au titre de ce message s'il a ete altere,
deforme ou falsifie. This message and any attachments ( the message) are
confidential and intended solely for the addressees. Any unauthorised use or
dissemination is prohibited.E-mails are susceptible to alteration. Neither
CREDIT DU NORD nor any of its subsidiaries or affiliates shall be liable for
the message if altered, changed or falsified.





Ce message et toutes les pieces jointes (ci-apres le message) sont 
confidentiels et etablis a l'intention exclusive de ses destinataires.
Toute utilisation ou diffusion non autorisee est interdite.Tout message 
electronique est susceptible d'alteration.
Le CREDIT DU NORD et ses filiales declinent toute responsabilite au titre de ce 
message s'il a ete altere, deforme ou falsifie.
This message and any attachments ( the message) are confidential and intended 
solely for the addressees.
Any unauthorised use or dissemination is prohibited.E-mails are susceptible to 
alteration.
Neither CREDIT DU NORD nor any of its subsidiaries or affiliates shall be 
liable for the message if altered, changed or falsified.





The information in this email is confidential and is intended solely
for the addressee(s).
Access to this email by anyone else is unauthorized. If you are not
an intended recipient, please notify the sender of this email
immediately. You should not copy, use or disseminate the
information contained in the email.
Any views expressed in this message are those of the individual
sender, except where the sender specifically states them to be
the views of Capco.

http://www.capco.com/



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



Tomcat behind IIS

2005-03-18 Thread VAN DER MARLIERE FREDERIC
Hi all,

I installed a tomcat 5.0 behind an IIS server. Everything works fine with
the connector.

Now, I would like that Tomcat only accepts connections from this IIS server
and not from others computers (still accessible from
http://myhost:8080/myApplication http://myhost:8080/myApplication ).

Is there a simple way to do this in server.xml (or other tomcat config
files) or do I have to install a firewall ?

Thanks in advance.
Fred.



Ce message et toutes les pieces jointes (ci-apres le message) sont 
confidentiels et etablis a l'intention exclusive de ses destinataires.
Toute utilisation ou diffusion non autorisee est interdite.Tout message 
electronique est susceptible d'alteration.
Le CREDIT DU NORD et ses filiales declinent toute responsabilite au titre de ce 
message s'il a ete altere, deforme ou falsifie.
This message and any attachments ( the message) are confidential and intended 
solely for the addressees.
Any unauthorised use or dissemination is prohibited.E-mails are susceptible to 
alteration.
Neither CREDIT DU NORD nor any of its subsidiaries or affiliates shall be 
liable for the message if altered, changed or falsified.




RE: Tomcat behind IIS

2005-03-18 Thread SANTOS, DANIEL \(SBCSI\)
sure, just go into your server.xml and remove the web connector

   Connector port=8080 /

I'm using the minimal server.xml (slightly modified) so there may be
more parameters in yours.  This element is contained with in the
Service tag which is in the Server tag.

Daniel

-Original Message-
From: VAN DER MARLIERE FREDERIC
[mailto:[EMAIL PROTECTED] 
Sent: Friday, March 18, 2005 10:58 AM
To: tomcat-user@jakarta.apache.org
Cc: MAES NICOLAS
Subject: Tomcat behind IIS


Hi all,

I installed a tomcat 5.0 behind an IIS server. Everything works fine
with
the connector.

Now, I would like that Tomcat only accepts connections from this IIS
server
and not from others computers (still accessible from
http://myhost:8080/myApplication http://myhost:8080/myApplication ).

Is there a simple way to do this in server.xml (or other tomcat config
files) or do I have to install a firewall ?

Thanks in advance.
Fred.



Ce message et toutes les pieces jointes (ci-apres le message) sont
confidentiels et etablis a l'intention exclusive de ses destinataires.
Toute utilisation ou diffusion non autorisee est interdite.Tout message
electronique est susceptible d'alteration.
Le CREDIT DU NORD et ses filiales declinent toute responsabilite au
titre de ce message s'il a ete altere, deforme ou falsifie.
This message and any attachments ( the message) are confidential and
intended solely for the addressees.
Any unauthorised use or dissemination is prohibited.E-mails are
susceptible to alteration.
Neither CREDIT DU NORD nor any of its subsidiaries or affiliates shall
be liable for the message if altered, changed or falsified.



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



RE: Tomcat and IIS Authorization

2005-03-02 Thread Allistair Crossley
Hi,

Sorry, I thought you had it setup and wanted only to know how to pass NTLM to 
Tomcat. For IIS-Tomcat in general you will need to install and configure the 
JK1.2.8 connector.

http://jakarta.apache.org/tomcat/connectors-doc/

Cheers, Allistair.

 -Original Message-
 From: Denny Lee [mailto:[EMAIL PROTECTED]
 Sent: 01 March 2005 18:45
 To: tomcat-user@jakarta.apache.org
 Subject: Re: Tomcat and IIS Authorization
 
 
  Hello Allistair,
 I looked at your blog but I am still lost as to how to
 setup IIS and Tomcat.  I saw that you mentioned you
 have it setup but did not specify how to do so.
 
  
  -Original Message-
   
   Check out the NTLM part in my Tomcat 5.5 blog
   
   www.adcworks.com/blog
   
   Cheers, Allistair.
   
-Original Message-
From: Denny Lee [mailto:[EMAIL PROTECTED]
Sent: 01 March 2005 17:26
To: tomcat-user@jakarta.apache.org
Subject: Tomcat and IIS Authorization


Hello All,
I am creating a web app that has users and
  admins
   and
I need to limit certain configuration pages only
   to
admins.  I must use NTLM to authenticate users
   into
the web site and somehow get the credential to
determine if the user has sufficient access or
   not. 
How can I do this? Can I do this through IIS? 
  So
   far
I got authentication part working using jcfis
  but
   I
can't seem to get the role of the user.  I tried
tagish JAAS but keep getting missing LoginModule
error.  Any help would be great. Thanks.

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



Tomcat and IIS Authorization

2005-03-01 Thread Denny Lee
Hello All,
I am creating a web app that has users and admins and
I need to limit certain configuration pages only to
admins.  I must use NTLM to authenticate users into
the web site and somehow get the credential to
determine if the user has sufficient access or not. 
How can I do this? Can I do this through IIS?  So far
I got authentication part working using jcfis but I
can't seem to get the role of the user.  I tried
tagish JAAS but keep getting missing LoginModule
error.  Any help would be great. Thanks.

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



RE: Tomcat and IIS Authorization

2005-03-01 Thread Allistair Crossley
Check out the NTLM part in my Tomcat 5.5 blog

www.adcworks.com/blog

Cheers, Allistair.

 -Original Message-
 From: Denny Lee [mailto:[EMAIL PROTECTED]
 Sent: 01 March 2005 17:26
 To: tomcat-user@jakarta.apache.org
 Subject: Tomcat and IIS Authorization
 
 
 Hello All,
 I am creating a web app that has users and admins and
 I need to limit certain configuration pages only to
 admins.  I must use NTLM to authenticate users into
 the web site and somehow get the credential to
 determine if the user has sufficient access or not. 
 How can I do this? Can I do this through IIS?  So far
 I got authentication part working using jcfis but I
 can't seem to get the role of the user.  I tried
 tagish JAAS but keep getting missing LoginModule
 error.  Any help would be great. Thanks.
 
 -
 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 and IIS Authorization

2005-03-01 Thread Denny Lee
 Hello Allistair,
I looked at your blog but I am still lost as to how to
setup IIS and Tomcat.  I saw that you mentioned you
have it setup but did not specify how to do so.

 
 -Original Message-
  
  Check out the NTLM part in my Tomcat 5.5 blog
  
  www.adcworks.com/blog
  
  Cheers, Allistair.
  
   -Original Message-
   From: Denny Lee [mailto:[EMAIL PROTECTED]
   Sent: 01 March 2005 17:26
   To: tomcat-user@jakarta.apache.org
   Subject: Tomcat and IIS Authorization
   
   
   Hello All,
   I am creating a web app that has users and
 admins
  and
   I need to limit certain configuration pages only
  to
   admins.  I must use NTLM to authenticate users
  into
   the web site and somehow get the credential to
   determine if the user has sufficient access or
  not. 
   How can I do this? Can I do this through IIS? 
 So
  far
   I got authentication part working using jcfis
 but
  I
   can't seem to get the role of the user.  I tried
   tagish JAAS but keep getting missing LoginModule
   error.  Any help would be great. Thanks.
   
  
  
 


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



Re: Tomcat and IIS Authorization

2005-03-01 Thread karjera

Laba diena.

Dkojame, kad mums parate.
Js atsista inut isaugota ms duomen bazje.


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

trying with my first site on Tomcat with IIS

2005-02-23 Thread David IBARRA ROSALES
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 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 PROTECTED

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

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!):
   http://web.archive.org/web

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

Tomcat 5.0.28/IIS 5.0/jk2

2005-02-08 Thread McInerney Clare
Hi,
I have configured IIS 5.0 with jk2 (isapi_redirector2.dll) + Tomcat
5.0.28. My main problem is that the log entry being written to IIS just
logs

GET  /jakarta/isapi_redirector2.dll 200 ... 
for all URLs being redirected. All requests not redirected log as
expected.

Is there a way to log the actual request in the IIS logs and not
/jakarta/isapi_redirector2.dll?
(We are using Cocoon under Tomcat to process everything redirected)

Thanks very much for any help.
Clare.



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



Jboss vs. tomcat with IIS

2005-01-26 Thread Warron French
Can I do everything with JBoss that I can with Tomcat?

I heard from a developer that JBoss is better than tomcat because tomcat can 
not handle as many users at the same time.  Is this a true statement?  Is it 
relevant to what web service (IIS vs Apache) is being used?




Warron French
Sr. Network Engineer
Xtria, LLC
8045 Leesburg Pike #400
Vienna, VA 22182
Desk: 703-821-6110
Main: 703-821-6000
Fax:  703-827-0374


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



Re: Jboss vs. tomcat with IIS

2005-01-26 Thread John Najarian
No, tomcat is a jsp/servlet container.  JBoss is a full blown application 
server.  Tomcat doesn't support EJBs  JBoss does.  If all you want is 
JSP/Servlets and a webserver, tomcat will work.

-Original Message-
From: Warron French [EMAIL PROTECTED]
Sent: Jan 26, 2005 2:36 PM
To: User Tomcat (E-mail) tomcat-user@jakarta.apache.org
Subject: Jboss vs. tomcat  with IIS

Can I do everything with JBoss that I can with Tomcat?

I heard from a developer that JBoss is better than tomcat because tomcat can 
not handle as many users at the same time.  Is this a true statement?  Is it 
relevant to what web service (IIS vs Apache) is being used?




Warron French
Sr. Network Engineer
Xtria, LLC
8045 Leesburg Pike #400
Vienna, VA 22182
Desk: 703-821-6110
Main: 703-821-6000
Fax:  703-827-0374


-
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: Jboss vs. tomcat with IIS

2005-01-26 Thread Warron French
But if I want to cover all types of Java applications I could essentially go 
with an overkill method and use the JBoss application?


Warron French
Sr. Network Engineer
Xtria, LLC
8045 Leesburg Pike #400

-Original Message-
From: John Najarian [mailto:[EMAIL PROTECTED]
Sent: Wednesday, January 26, 2005 5:41 PM
To: Tomcat Users List
Subject: Re: Jboss vs. tomcat with IIS


No, tomcat is a jsp/servlet container.  JBoss is a full blown application 
server.  Tomcat doesn't support EJBs  JBoss does.  If all you want is 
JSP/Servlets and a webserver, tomcat will work.

-Original Message-
From: Warron French [EMAIL PROTECTED]
Sent: Jan 26, 2005 2:36 PM
To: User Tomcat (E-mail) tomcat-user@jakarta.apache.org
Subject: Jboss vs. tomcat  with IIS

Can I do everything with JBoss that I can with Tomcat?

I heard from a developer that JBoss is better than tomcat because tomcat can 
not handle as many users at the same time.  Is this a true statement?  Is it 
relevant to what web service (IIS vs Apache) is being used?




Warron French
Sr. Network Engineer
Xtria, LLC
8045 Leesburg Pike #400
Vienna, VA 22182
Desk: 703-821-6110
Main: 703-821-6000
Fax:  703-827-0374


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


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



Re: RE: Jboss vs. tomcat with IIS

2005-01-26 Thread bounce
Geachte relatie,

Het door u gebruikte e-mailadres is niet meer actief. U kunt uw e-mailbericht 
sturen naar [EMAIL PROTECTED] of dit bericht beantwoorden.

Bedankt voor uw medewerking,

Met vriendelijke groet,

ATP Hypotheken
Het Spoor 40
3994 AK Houten

Tel. 030 750 25 33
Fax. 030 750 25 88
[EMAIL PROTECTED]

 -- DIT IS EEN AUTOMATISCH GEGENEREERD E-MAILBERICHT --



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



RE: Jboss vs. tomcat with IIS

2005-01-26 Thread Caldarale, Charles R
 From: Warron French [mailto:[EMAIL PROTECTED]
 Subject: RE: Jboss vs. tomcat with IIS
 
 But if I want to cover all types of Java applications I could 
 essentially go with an overkill method and use the JBoss application?

You should be aware that JBoss uses an embedded Tomcat as its web server and 
servlet container.  If you want to implement a full J2EE setup use JBoss; if 
all you need is servlets and JSPs, use Tomcat.  JBoss is quite a bit more 
interesting to configure.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY 
MATERIAL and is thus for use only by the intended recipient. If you received 
this in error, please contact the sender and delete the e-mail and its 
attachments from all computers.

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



Re: RE: Jboss vs. tomcat with IIS

2005-01-26 Thread bounce
Geachte relatie,

Het door u gebruikte e-mailadres is niet meer actief. U kunt uw e-mailbericht 
sturen naar [EMAIL PROTECTED] of dit bericht beantwoorden.

Bedankt voor uw medewerking,

Met vriendelijke groet,

ATP Hypotheken
Het Spoor 40
3994 AK Houten

Tel. 030 750 25 33
Fax. 030 750 25 88
[EMAIL PROTECTED]

 -- DIT IS EEN AUTOMATISCH GEGENEREERD E-MAILBERICHT --



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



Tomcat with IIS 6 on Win 2003

2004-12-06 Thread Vakulenko, Andrey V
Do you know if a new isapi_redirect.dll is available to run Tomcat under IIS
6 (without switching in IIS 5 isolation mode)?

Thanks,

Andrey Vakulenko, EDS



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



Re: Tomcat with IIS 6 on Win 2003

2004-12-06 Thread Mladen Turk
Vakulenko, Andrey V wrote:
Do you know if a new isapi_redirect.dll is available to run Tomcat under IIS
6 (without switching in IIS 5 isolation mode)?
No. Neither it will.
We'll probably develop a new connector for IIS6 using new proxy_ajp code
base. There are just too many differences between IIS5 and IIS6 modes.
MT.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Tomcat with IIS 6 on Win 2003

2004-12-06 Thread Vakulenko, Andrey V
Any timetable? 

-Original Message-
From: Mladen Turk [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 06, 2004 10:40 AM
To: Tomcat Users List
Subject: Re: Tomcat with IIS 6 on Win 2003

Vakulenko, Andrey V wrote:
 Do you know if a new isapi_redirect.dll is available to run Tomcat 
 under IIS
 6 (without switching in IIS 5 isolation mode)?
 

No. Neither it will.
We'll probably develop a new connector for IIS6 using new proxy_ajp code
base. There are just too many differences between IIS5 and IIS6 modes.

MT.

-
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: Tomcat with IIS 6 on Win 2003

2004-12-06 Thread Mladen Turk
Vakulenko, Andrey V wrote:
Any timetable? 

Not this year for sure :).
I think by the end of February next year.
MT.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Tomcat with IIS 6 on Win 2003

2004-12-06 Thread Vakulenko, Andrey V
Thanks a lot 

-Original Message-
From: Mladen Turk [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 06, 2004 10:54 AM
To: Tomcat Users List
Subject: Re: Tomcat with IIS 6 on Win 2003

Vakulenko, Andrey V wrote:
 Any timetable? 


Not this year for sure :).
I think by the end of February next year.

MT.

-
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 IIS 5 Integration

2004-11-02 Thread Ken Hall
I am running Tomcat 5.0.25 and IIS 5.0 in tandem and am getting some
strange configuration errors from the JK2 connector. It seems to lose
connection between Tomcat and IIS and I can't seem to correct it. It
appears to be random and happen at different times during the day. If I
get 500 hits on the server, there will be about 5 cases, where Tomcat
and IIS become disconnected and the session data is lost. Any help would
be greatly appreciated.

 

Here is from the Windows event viewer.

 

Error: [jk_worker_ajp13.c (648)]: ajp13.service() Error  forwarding
ajp13:localhost:8009 1 0

Error: [jk_worker_ajp13.c (546)]: ajp13.service() ajpGetReply
recoverable error 3

Error: [jk_handler_response.c (140)]: handler.response() Error sending
response 

Error: [jk_service_iis.c (126)]: jk_ws_service_t::head,
ServerSupportFunction failed

Error: [jk_worker_ajp13.c (546)]: ajp13.service() ajpGetReply
recoverable error 3

Error: [jk_service_iis.c (260)]: jk_ws_service_t::write, WriteClient
failed

 

-Ken

 

Ken Hall

The Reeher Group

370 Selby Avenue

Saint Paul, MN 55102

t 651.292.0642

m 651.214.0005

e [EMAIL PROTECTED] blocked::mailto:[EMAIL PROTECTED] 

w www.reehergroup.com blocked::http://www.reehergroup.com/ 

 



Setup tomcat behind IIS Server on different machine(s)

2004-08-27 Thread Fournier, Pete
 Hi,
 
 Has anyone had success setting up an IIS webserver to serve up
 JSP/Servlets from another machine running Tomcat 5 using the Jk2
 connector?
 
 I am running a webserver with Win2003 Server (ipwww1), and an app
 server with Win2003 Server and Tomcat5 installed (ipwo1). I can pull
 from Tomcat 5 directly on the one machine just fine. But, when
 attempting to go through the webserver I am unable to connect. 
 
 I have the following in my workers2.properties file:
 
 [channel.socket:ipwo1:8019]
 host=ipwo1
 port=8019
 
 [ajp13:ipwo1:8019]
 channel=channel.socket:ipwo1:8019
 
 [uri:/*.jsp]
 info=JSP Extension mapping.
 debug=0
 
 [uri:/ZipCode/ZipCodeLookup]
 info=JSP ZipCode Application Entry
 debug=0
 
 I do have Tomcat 5 running behind IIS just fine on my local dev
 machine, but both are on the same box.
 
 Any help appreciated. Thanks,
 
 Peter Fournier
[EMAIL PROTECTED] 
  
 
This communication (including all attachments) is intended solely for the use of the 
person(s) to whom it is addressed and should be treated as a confidential AAA 
communication.  If you are not the intended recipient, any use, distribution, 
printing, or copying of this email is strictly prohibited.  If you received this email 
in error, please immediately delete it from your system and notify the originator.  
Your cooperation is appreciated. 


MOD_JK2 is mapping all URIs to Tomcat on IIS

2004-07-15 Thread Marcus Kellermann
I have a Tomcat 4.1X install on IIS 6.0 that is redirecting all traffice
to Tomcat and not just the URIs specified in the worker2.properties
file.  

Looking at the URI section in
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk2/configwebcom.htm
l it states that [URI:*] is a special case for when the virtual dir
can't be found in the config file.  How do you turn this feature off?  I
want IIS to handle anything that isn't in the worker2.properties file.

My configuration file looks like

WORKERS2.PROPERTIES
#Look at 

#http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk2/configwebcom.ht
ml 
#for parameter description 

[shm:] 
info=Scoreboard. Required for reconfiguration and status
with multiprocess servers 
file=C:\Program
Files\Bentley\ProjectWise\WebServer\temp\jk2.shm 
size=1048576 

[channel.socket:localhost:8009] 
info=Ajp13 forwarding over socket 
tomcatId=localhost:8009 

# Map webapps to the Web server uri space 
[uri:/WEL/*]

[status:]
info=Status worker, displays runtime informations

[uri:/jkstatus/*]
info=Display status information and checks the config
file for changes.
group=status:
/WORKERS2.PROPERTIES

And the output from JKSTATUS looks like 

JKSTATUS_OUTPUT
uri runtime info
uri information, using getAttribute() 

id name host uri group context inheritGlobals match_type servlet
timing aliases path 
0 /WEL/* * /WEL/* lb:lb / 1 prefix null 0 null /WEL/* 
0 /jkstatus/* * /jkstatus/* status: / 1 prefix null 0 null
/jkstatus/* 
0 * * null null null 1 host null 0 null null 
0 */ * / lb:lb / 1 context null 0 null / 
/JKSTATUS_OUTPUT

[URI:*] isn't apart of my properties file so it must be in the code?
How can I turn it off?

Thanks
  Marcus Kellermann


Re: Integrating Tomcat and IIS

2004-07-09 Thread Tom Burke
Success in the end. Thanks to those who offered advice.

I have to say that I'm not too clear why it's working now but wasn't
before. There are a few differences in the configuration - eg, at which
level in IIS the filter is installed; the 'name' of the filter; changes
to jk2.properties - but none of these on its own seemed to make a
difference. Hopefully I can spend some time today stepping back one
difference at a time until I find what breaks it, then I'll mail that
finding to the list.

Tom Burke

- Original Message - 
From: Tom Burke [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Sent: Wednesday, July 07, 2004 2:41 PM
Subject: Integrating Tomcat and IIS


 I sent a long email to the list on Tuesday asking for help with
problems
 I'm having intergating Tomcat with IIS. Sadly, there were no replies.
My
 email was rather long - lots of examples, config file extracts, etc -
so
 maybe recipients found it hard to digest.

 So I'll recast it as a shorter request: is there anyone on the list
who
 has succeeded in integrating Tomcat (4 or 5) with IIS (5 or 6)? If so,
 are there any tips you can pass on? Any problems you experienced and
 overcame? And if anyone else has had problems and *not* been able to
 overcome them, what were they?

 Incidentally, I was following this set of instructions:

https://www.rit.edu/~ack5504/tomcat-iis6-howto/narantugs-sengee-guide.html

 Tom Burke


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



Re: Integrating Tomcat and IIS

2004-07-08 Thread Tom Burke

- Original Message - 
From: Januski, Ken [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Sent: Wednesday, July 07, 2004 6:38 PM
Subject: RE: Integrating Tomcat and IIS


 I do believe though that you didn't mention whether you had the
 green arrow in the isapi filter on IIS.

Yes, it was...

 If so that tells us something. The
 one thing that has bitten me many times is setting the isapi filter in
more
 than one place, e.g. the default web app AND under Master Server
Properties.
 I've read people suggest both on this list. For me I know that the
default
 web app has worked but that if I had both it failed. Other than that
I'd
 suggest that you let us know whether or not you get the green arrow,
and if
 so then what errors you're seeing after that.

Ah! I may well have had the isapi filter installed in multiple
locations.

Tom


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



RE: Integrating Tomcat and IIS

2004-07-08 Thread Januski, Ken
And what do you have to offer this list as help for the person asking the
question?

-Original Message-
From: Aris Javier [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 07, 2004 7:57 PM
To: Tomcat Users List
Subject: RE: Integrating Tomcat and IIS


I SUCCESSFULLY INTEGRATE TOMCAT 5 WITH IIS... =)
SIMPLE AND EASY!
aris

-Original Message-
From: Tom Burke [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 07, 2004 9:42 PM
To: Tomcat Users List
Subject: Integrating Tomcat and IIS


I sent a long email to the list on Tuesday asking for help with problems
I'm having intergating Tomcat with IIS. Sadly, there were no replies. My
email was rather long - lots of examples, config file extracts, etc - so
maybe recipients found it hard to digest.

So I'll recast it as a shorter request: is there anyone on the list who
has succeeded in integrating Tomcat (4 or 5) with IIS (5 or 6)? If so,
are there any tips you can pass on? Any problems you experienced and
overcame? And if anyone else has had problems and *not* been able to
overcome them, what were they?

Incidentally, I was following this set of instructions:
https://www.rit.edu/~ack5504/tomcat-iis6-howto/narantugs-sengee-guide.ht
ml

Tom Burke


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

2004-07-08 Thread Aris Javier
JspISAPI Filter... you can download the said filter
in neurospeech.com... 

=)



-Original Message-
From: Januski, Ken [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 08, 2004 11:21 PM
To: Tomcat Users List
Subject: RE: Integrating Tomcat and IIS


And what do you have to offer this list as help for the person asking
the question?

-Original Message-
From: Aris Javier [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 07, 2004 7:57 PM
To: Tomcat Users List
Subject: RE: Integrating Tomcat and IIS


I SUCCESSFULLY INTEGRATE TOMCAT 5 WITH IIS... =)
SIMPLE AND EASY!
aris

-Original Message-
From: Tom Burke [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 07, 2004 9:42 PM
To: Tomcat Users List
Subject: Integrating Tomcat and IIS


I sent a long email to the list on Tuesday asking for help with problems
I'm having intergating Tomcat with IIS. Sadly, there were no replies. My
email was rather long - lots of examples, config file extracts, etc - so
maybe recipients found it hard to digest.

So I'll recast it as a shorter request: is there anyone on the list who
has succeeded in integrating Tomcat (4 or 5) with IIS (5 or 6)? If so,
are there any tips you can pass on? Any problems you experienced and
overcame? And if anyone else has had problems and *not* been able to
overcome them, what were they?

Incidentally, I was following this set of instructions:
https://www.rit.edu/~ack5504/tomcat-iis6-howto/narantugs-sengee-guide.ht
ml

Tom Burke


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

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



RE: Integrating Tomcat and IIS

2004-07-07 Thread Januski, Ken
Many, many people have had problems with this and a search of the archives
may help. I do know that I read your lengthy message but didn't really see
anything that was helpful in terms of pointing out the error. Having gone
through this a number of times myself I also understand your frustration.
But at the end I didn't learn any particular clues that would be useful to
others. I do believe though that you didn't mention whether you had the
green arrow in the isapi filter on IIS. If so that tells us something. The
one thing that has bitten me many times is setting the isapi filter in more
than one place, e.g. the default web app AND under Master Server Properties.
I've read people suggest both on this list. For me I know that the default
web app has worked but that if I had both it failed. Other than that I'd
suggest that you let us know whether or not you get the green arrow, and if
so then what errors you're seeing after that.

Good luck.

Ken

-Original Message-
From: Tom Burke [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 07, 2004 9:42 AM
To: Tomcat Users List
Subject: Integrating Tomcat and IIS


I sent a long email to the list on Tuesday asking for help with problems
I'm having intergating Tomcat with IIS. Sadly, there were no replies. My
email was rather long - lots of examples, config file extracts, etc - so
maybe recipients found it hard to digest.

So I'll recast it as a shorter request: is there anyone on the list who
has succeeded in integrating Tomcat (4 or 5) with IIS (5 or 6)? If so,
are there any tips you can pass on? Any problems you experienced and
overcame? And if anyone else has had problems and *not* been able to
overcome them, what were they?

Incidentally, I was following this set of instructions:
https://www.rit.edu/~ack5504/tomcat-iis6-howto/narantugs-sengee-guide.html

Tom Burke


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


RE: Integrating Tomcat and IIS

2004-07-07 Thread Aris Javier
I SUCCESSFULLY INTEGRATE TOMCAT 5 WITH IIS... =)
SIMPLE AND EASY!
aris

-Original Message-
From: Tom Burke [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 07, 2004 9:42 PM
To: Tomcat Users List
Subject: Integrating Tomcat and IIS


I sent a long email to the list on Tuesday asking for help with problems
I'm having intergating Tomcat with IIS. Sadly, there were no replies. My
email was rather long - lots of examples, config file extracts, etc - so
maybe recipients found it hard to digest.

So I'll recast it as a shorter request: is there anyone on the list who
has succeeded in integrating Tomcat (4 or 5) with IIS (5 or 6)? If so,
are there any tips you can pass on? Any problems you experienced and
overcame? And if anyone else has had problems and *not* been able to
overcome them, what were they?

Incidentally, I was following this set of instructions:
https://www.rit.edu/~ack5504/tomcat-iis6-howto/narantugs-sengee-guide.ht
ml

Tom Burke


-
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: Problem with Tomcat 4.1.30, IIS, isapi_redirect.dll and POSTs

2004-06-23 Thread Leif Mortenson
For the archives. I got no replies to this. But I was able to correct this
(Bproblem by switching over to using jk2 rather than jk. That means using
(Bisapi_redirector2.dll rather than isapi_redirect.dll.
(B
(BThis was not at all clear from the online docs. Everything points to using
(Bisapi_redirect.dll for connecting via IIS.
(B
(BCheers,
(BLeif
(B
(BLeif Mortenson wrote:
(B
(BI have been using version 4.1.18 along with the newest isapi_redirect.dll at
(Bthe time it was installed for the past year or. Recently to resolve an
(Bunrelated problem we upgraded to Tomcat 4.1.30 and isapi_redirect.dll 1.2.5
(Band have been testing things out on our test servers.
(B
(BThis was working for me for a day or two. Just before I went to deploy this
(Bonto our live servers, I decided to do one last test. For some reason,
(Ball of
(Bthe pages which are requested using a POST, hang for a couple minutes
(Bbefore returning an error.
(B
(BReviewing the log from Tomcat, I found the following message:
(B
(BJun 21, 2004 6:42:33 PM org.apache.jk.common.HandlerRequest invoke
(BSEVERE: Error decoding request
(Bjava.io.IOException
(Bat org.apache.jk.common.JkInputStream.receive(JkInputStream.java:294)
(Bat
(Borg.apache.jk.common.HandlerRequest.decodeRequest(HandlerRequest.java:537)
(Bat org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:373)
(Bat org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:673)
(Bat
(Borg.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:615)
(Bat org.apache.jk.common.SocketConnection.runIt(ChannelSocket.java:786)
(Bat
(Borg.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
(Bat java.lang.Thread.run(Thread.java:536)
(B12 34 01 c1 02 04 00 08 48 54 54 50 2f 31 2e 31 | .4.?HTTP/1.1
(B00 00 18 2f 6b 61 6e 73 68 69 2f 6a 5f 73 65 63 | .../kanshi/j_sec
(B75 72 69 74 79 5f 63 68 65 63 6b 00 00 0c 31 39 | urity_check...19
(B32 2e 31 36 38 2e 31 2e 33 31 00 00 0c 31 39 32 | 2.168.1.31...192
(B2e 31 36 38 2e 31 2e 33 31 00 00 07 6f 72 6c 61 | .168.1.31...orla
(B6e 64 6f 00 00 50 00 00 0b a0 01 00 57 69 6d 61 | ndo..P...?..Wima
(B67 65 2f 67 69 66 2c 20 69 6d 61 67 65 2f 78 2d | ge/gif, image/x-
(B78 62 69 74 6d 61 70 2c 20 69 6d 61 67 65 2f 6a | xbitmap, image/j
(B70 65 67 2c 20 69 6d 61 67 65 2f 70 6a 70 65 67 | peg, image/pjpeg
(B2c 20 61 70 70 6c 69 63 61 74 69 6f 6e 2f 78 2d | , application/x-
(B73 68 6f 63 6b 77 61 76 65 2d 66 6c 61 73 68 2c | shockwave-flash,
(B20 2a 2f 2a 00 a0 04 00 02 6a 61 00 a0 06 00 0a | */*.?...ja.?...
(B4b 65 65 70 2d 41 6c 69 76 65 00 a0 0b 00 07 6f | Keep-Alive.?...o
(B72 6c 61 6e 64 6f 00 a0 0d 00 1f 68 74 74 70 3a | rlando.?...http:
(B2f 2f 6f 72 6c 61 6e 64 6f 2f 6b 61 6e 73 68 69 | //orlando/kanshi
(B2f 6c 6f 67 69 6e 2e 6a 73 70 00 a0 0e 00 32 4d | /login.jsp.?..2M
(B6f 7a 69 6c 6c 61 2f 34 2e 30 20 28 63 6f 6d 70 | ozilla/4.0 (comp
(B61 74 69 62 6c 65 3b 20 4d 53 49 45 20 36 2e 30 | atible; MSIE 6.0
(B3b 20 57 69 6e 64 6f 77 73 20 4e 54 20 35 2e 31 | ; Windows NT 5.1
(B29 00 a0 09 00 2b 4a 53 45 53 53 49 4f 4e 49 44 | ).?..+JSESSIONID
(B3d 37 34 39 44 46 39 34 32 42 35 45 38 32 39 33 | =749DF942B5E8293
(B45 39 32 31 32 34 34 36 32 35 36 37 38 41 34 46 | E921244625678A4F
(B42 00 a0 08 00 02 33 37 00 a0 07 00 21 61 70 70 | B.?...37.?..!app
(B6c 69 63 61 74 69 6f 6e 2f 78 2d 77 77 77 2d 66 | lication/x-www-f
(B6f 72 6d 2d 75 72 6c 65 6e 63 6f 64 65 64 00 a0 | orm-urlencoded.?
(B03 00 0d 67 7a 69 70 2c 20 64 65 66 6c 61 74 65 | ...gzip, deflate
(B00 00 0d 63 61 63 68 65 2d 63 6f 6e 74 72 6f 6c | ...cache-control
(B00 00 08 6e 6f 2d 63 61 63 68 65 00 03 00 00 00 | ...no-cache.
(B04 00 00 00 ff | ?
(BJun 21, 2004 6:42:33 PM org.apache.jk.common.ChannelSocket processConnection
(BWARNING: processCallbacks status 2
(B
(BDoing additional tests, I have found that it appears to be timeout
(Bwaiting for
(Bmore data to be sent? (guess) I say this because if I do the POST and then
(Bwait patiently then the error takes about 50 seconds to show up in the log.
(BThe request will cause 2 such dumps before returning an error to the
(Bbrowser. However if I push the submit button on my form then the
(Bprevious request will immediately cause the above error to be dumped.
(BThe second request will continue to hang until it too times out and dumps
(Bthe above message.
(B
(BI enabled debug output in the connector and get the following. It seems to
(Bfail once and then retry. I am including the significant portion of the
(Bsecond
(Battempt:
(B
(B[Mon Jun 21 19:14:44 2004] [jk_ajp_common.c (295)]: Into
(Bajp_marshal_into_msgb
(B[Mon Jun 21 19:14:44 2004] [jk_ajp_common.c (463)]:
(Bajp_marshal_into_msgb - Done
(B[Mon Jun 21 19:14:44 2004] [jk_connect.c (158)]: Into jk_open_socket
(B[Mon Jun 21 19:14:44 2004] [jk_connect.c (165)]: jk_open_socket, try to
(Bconnect socket = 424
(B[Mon Jun 21 19:14:44 2004] [jk_connect.c (174)]: 

Problem with Tomcat 4.1.30, IIS, isapi_redirect.dll and POSTs

2004-06-21 Thread Leif Mortenson
I have been using version 4.1.18 along with the newest isapi_redirect.dll at
(Bthe time it was installed for the past year or. Recently to resolve an
(Bunrelated problem we upgraded to Tomcat 4.1.30 and isapi_redirect.dll 1.2.5
(Band have been testing things out on our test servers.
(B
(BThis was working for me for a day or two. Just before I went to deploy this
(Bonto our live servers, I decided to do one last test. For some reason,
(Ball of
(Bthe pages which are requested using a POST, hang for a couple minutes
(Bbefore returning an error.
(B
(BReviewing the log from Tomcat, I found the following message:
(B
(BJun 21, 2004 6:42:33 PM org.apache.jk.common.HandlerRequest invoke
(BSEVERE: Error decoding request
(Bjava.io.IOException
(Bat org.apache.jk.common.JkInputStream.receive(JkInputStream.java:294)
(Bat
(Borg.apache.jk.common.HandlerRequest.decodeRequest(HandlerRequest.java:537)
(Bat org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:373)
(Bat org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:673)
(Bat
(Borg.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:615)
(Bat org.apache.jk.common.SocketConnection.runIt(ChannelSocket.java:786)
(Bat
(Borg.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
(Bat java.lang.Thread.run(Thread.java:536)
(B12 34 01 c1 02 04 00 08 48 54 54 50 2f 31 2e 31 | .4.?HTTP/1.1
(B00 00 18 2f 6b 61 6e 73 68 69 2f 6a 5f 73 65 63 | .../kanshi/j_sec
(B75 72 69 74 79 5f 63 68 65 63 6b 00 00 0c 31 39 | urity_check...19
(B32 2e 31 36 38 2e 31 2e 33 31 00 00 0c 31 39 32 | 2.168.1.31...192
(B2e 31 36 38 2e 31 2e 33 31 00 00 07 6f 72 6c 61 | .168.1.31...orla
(B6e 64 6f 00 00 50 00 00 0b a0 01 00 57 69 6d 61 | ndo..P...?..Wima
(B67 65 2f 67 69 66 2c 20 69 6d 61 67 65 2f 78 2d | ge/gif, image/x-
(B78 62 69 74 6d 61 70 2c 20 69 6d 61 67 65 2f 6a | xbitmap, image/j
(B70 65 67 2c 20 69 6d 61 67 65 2f 70 6a 70 65 67 | peg, image/pjpeg
(B2c 20 61 70 70 6c 69 63 61 74 69 6f 6e 2f 78 2d | , application/x-
(B73 68 6f 63 6b 77 61 76 65 2d 66 6c 61 73 68 2c | shockwave-flash,
(B20 2a 2f 2a 00 a0 04 00 02 6a 61 00 a0 06 00 0a | */*.?...ja.?...
(B4b 65 65 70 2d 41 6c 69 76 65 00 a0 0b 00 07 6f | Keep-Alive.?...o
(B72 6c 61 6e 64 6f 00 a0 0d 00 1f 68 74 74 70 3a | rlando.?...http:
(B2f 2f 6f 72 6c 61 6e 64 6f 2f 6b 61 6e 73 68 69 | //orlando/kanshi
(B2f 6c 6f 67 69 6e 2e 6a 73 70 00 a0 0e 00 32 4d | /login.jsp.?..2M
(B6f 7a 69 6c 6c 61 2f 34 2e 30 20 28 63 6f 6d 70 | ozilla/4.0 (comp
(B61 74 69 62 6c 65 3b 20 4d 53 49 45 20 36 2e 30 | atible; MSIE 6.0
(B3b 20 57 69 6e 64 6f 77 73 20 4e 54 20 35 2e 31 | ; Windows NT 5.1
(B29 00 a0 09 00 2b 4a 53 45 53 53 49 4f 4e 49 44 | ).?..+JSESSIONID
(B3d 37 34 39 44 46 39 34 32 42 35 45 38 32 39 33 | =749DF942B5E8293
(B45 39 32 31 32 34 34 36 32 35 36 37 38 41 34 46 | E921244625678A4F
(B42 00 a0 08 00 02 33 37 00 a0 07 00 21 61 70 70 | B.?...37.?..!app
(B6c 69 63 61 74 69 6f 6e 2f 78 2d 77 77 77 2d 66 | lication/x-www-f
(B6f 72 6d 2d 75 72 6c 65 6e 63 6f 64 65 64 00 a0 | orm-urlencoded.?
(B03 00 0d 67 7a 69 70 2c 20 64 65 66 6c 61 74 65 | ...gzip, deflate
(B00 00 0d 63 61 63 68 65 2d 63 6f 6e 74 72 6f 6c | ...cache-control
(B00 00 08 6e 6f 2d 63 61 63 68 65 00 03 00 00 00 | ...no-cache.
(B04 00 00 00 ff | ?
(BJun 21, 2004 6:42:33 PM org.apache.jk.common.ChannelSocket processConnection
(BWARNING: processCallbacks status 2
(B
(BDoing additional tests, I have found that it appears to be timeout
(Bwaiting for
(Bmore data to be sent? (guess) I say this because if I do the POST and then
(Bwait patiently then the error takes about 50 seconds to show up in the log.
(BThe request will cause 2 such dumps before returning an error to the
(Bbrowser. However if I push the submit button on my form then the
(Bprevious request will immediately cause the above error to be dumped.
(BThe second request will continue to hang until it too times out and dumps
(Bthe above message.
(B
(BI enabled debug output in the connector and get the following. It seems to
(Bfail once and then retry. I am including the significant portion of the
(Bsecond
(Battempt:
(B
(B[Mon Jun 21 19:14:44 2004] [jk_ajp_common.c (295)]: Into
(Bajp_marshal_into_msgb
(B[Mon Jun 21 19:14:44 2004] [jk_ajp_common.c (463)]:
(Bajp_marshal_into_msgb - Done
(B[Mon Jun 21 19:14:44 2004] [jk_connect.c (158)]: Into jk_open_socket
(B[Mon Jun 21 19:14:44 2004] [jk_connect.c (165)]: jk_open_socket, try to
(Bconnect socket = 424
(B[Mon Jun 21 19:14:44 2004] [jk_connect.c (174)]: jk_open_socket, after
(Bconnect ret = 0
(B[Mon Jun 21 19:14:44 2004] [jk_connect.c (183)]: jk_open_socket, set
(BTCP_NODELAY to on
(B[Mon Jun 21 19:14:44 2004] [jk_connect.c (192)]: jk_open_socket, set
(BSO_KEEPALIVE to on
(B[Mon Jun 21 19:14:44 2004] [jk_connect.c (200)]: jk_open_socket, return,
(Bsd = 424
(B[Mon Jun 21 19:14:44 2004] [jk_ajp_common.c (661)]: In

Tomcat and IIS 6 - multiple hosted sites

2004-06-09 Thread Jason L. West, Sr.
I have a Win2003 server running IIS 6 and Tomcat.  The server is hosting
multiple domains and sub domains, single ip address using headers to 
sort domains.  I want to publish out the Tomcat applications for the 
domains but I don't want to have to hit a sub directory on Tomcat server 
to do it.

Current method using IIS plugin for Tomcat - default method:

IIS URL( http://www.domain.com(:80)/tomcatApp/ ) = Tomcat URL
(http://www.domain.com(:8080)/tomcatApp/)

Instead I want to be able to to do this:

IIS URL( http://www.domain.com(:80)/ ) = Tomcat URL
(http://www.domain.com(:8080)/tomcatApp/)

What is the best method of accomplishing this?  Is it possible? I don't 
have access to a proxy server (MS ISA) nor does my client want to setup 
Apache HTTPD services on the Win2003 server.

Any insight would be appreciated.

Thanks,

Jason L. West, Sr.
Internet Application Specialist, Sr.




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



Fwd: Tomcat and IIS 6 - multiple hosted sites

2004-06-09 Thread Jason L. West, Sr.

Does anyone have any kind of insight on this?

Thanks for you help in advance.

Jason L. West, Sr.


 Original Message 
Subject: Tomcat and IIS 6 - multiple hosted sites
Date: 06/09/2004, 03:10
From: Jason L. West, Sr. [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Organization: WezBiz Technologies

I have a Win2003 server running IIS 6 and Tomcat.  The server is hosting
multiple domains and sub domains, single ip address using headers to
sort domains.  I want to publish out the Tomcat applications for the
domains but I don't want to have to hit a sub directory on Tomcat server
to do it.

Current method using IIS plugin for Tomcat - default method:

IIS URL( http://www.domain.com(:80)/tomcatApp/ ) = Tomcat URL
(http://www.domain.com(:8080)/tomcatApp/)

Instead I want to be able to to do this:

IIS URL( http://www.domain.com(:80)/ ) = Tomcat URL
(http://www.domain.com(:8080)/tomcatApp/)

What is the best method of accomplishing this?  Is it possible? I don't
have access to a proxy server (MS ISA) nor does my client want to setup
Apache HTTPD services on the Win2003 server.

Any insight would be appreciated.

Thanks,

Jason L. West, Sr.
Internet Application Specialist, Sr.






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



Tomcat and IIS under SSL

2004-06-04 Thread Jesse Beaumont
Hi,

 

I'm still struggling with my SSL problem.  I have connected Tomcat and
IIS using the isapi_redirect and used IIS to handle SSL.  In this
configuration when I run load tests after a number of successful
requests suddenly errors start appearing (I am using JMeter).  The
client gets a ConnectException: connection refused exception and on the
server if I look in the isapi log I get a bunch of the following
messages:

 

[jk_ajp_common.c (1318)]: Error connecting to tomcat. Tomcat is probably
not started or is listening on the wrong port. Failed errno = 61

 

and

 

[jk_isapi_plugin.c (928)]: HttpExtensionProc error, service() failed

 

The first message is obviously not correct since tomcat appears to
recover again for a while afterwards.  I've been struggling with the
same problem for a long time now and am really stuck.  I have also tried
tomcat standalone, tomcat/apache2 (with JK and JK2).  I have also tried
various versions of tomcat (4.1.18, 4.1.30, 5.0.16 and 5.0.24).  The
problem only appears to occur over SSL though.  When using plain http it
works a charm.

 

Any help would be much appreciated.

 

Jesse



--- Disclaimer ---

Unless otherwise agreed expressly in writing by a Director of Edina Software, this 
communication is to be treated as confidential and the information in it may not be 
used or disclosed except for the purpose for which it has been sent. If you have 
reason to believe that you are not the intended recipient of this communication, 
please contact the sender immediately. 


RE: Tomcat 5.0 + IIS 6 + Windows 2003

2004-05-10 Thread Srinivas Kotapally
Hi

My responses:

1. Where does the dll reside (full folder path)

 d:\tomcat5\bin\win32\i386\isapi_redirector2.dll

2. What is the virtual directory name in IIS and what the physical folder
pointing to.

 The virtual directory: jakarta the directory path it is pointing to is:
d:\tomcat5\bin\win32\i386\

3. What is the registry entry value for workers2.properties

 workersFile d:\tomcat5\conf\workers2.properties

4. Is the isapi-director.dll is for the version compatible to tomcat

 Now how do I determine this?


Any help will be most welcome.

Regards

Srini


-Original Message-
From: Kannan Sundararajan [mailto:[EMAIL PROTECTED]
Sent: Friday, May 07, 2004 6:57 PM
To: '[EMAIL PROTECTED]'
Subject: Re: Tomcat 5.0 + IIS 6 + Windows 2003


I went thru this and it just an misdocumented feature gives interesting
results.

Focus on the isapi-director.dll

1. Where does the dll reside (full folder path)

2. What is the virtual directory name in IIS and what the physical folder
pointing to.

3. What is the registry entry value for workers2.properties

4. Is the isapi-director.dll is for the version compatable to tomcat

When you provide answer for this, try as much as possible the correct value
of folder instead of generic.
--
Sent from my BlackBerry Wireless Handheld

-
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: Tomcat 5.0 + IIS 6 + Windows 2003

2004-05-10 Thread Kannan Sundararajan
1. Create direcotry/folder d:\tomcat

2. Copy to d:\tomcat .. isapi_redirector2.dll,

3. Register and map this dll... 
   {Please mention the values in it)

4. Virtual Directory-jakarta should point to d:\tomcat

5. Workers2.properties should be in IIS website directory

6. Finding the version compatabile is difficult, since there is no site
refers to it. You can find in tomcat or newsgroups to find the properdll,
which is compatable with IIS and Tomcat. 



-Original Message-
From: Srinivas Kotapally [mailto:[EMAIL PROTECTED]
Sent: Monday, May 10, 2004 1:30 PM
To: 'Tomcat Users List'; Kannan Sundararajan
Subject: RE: Tomcat 5.0 + IIS 6 + Windows 2003


Hi

My responses:

1. Where does the dll reside (full folder path)

 d:\tomcat5\bin\win32\i386\isapi_redirector2.dll

2. What is the virtual directory name in IIS and what the physical folder
pointing to.

 The virtual directory: jakarta the directory path it is pointing to is:
d:\tomcat5\bin\win32\i386\

3. What is the registry entry value for workers2.properties

 workersFile d:\tomcat5\conf\workers2.properties

4. Is the isapi-director.dll is for the version compatible to tomcat

 Now how do I determine this?


Any help will be most welcome.

Regards

Srini


-Original Message-
From: Kannan Sundararajan [mailto:[EMAIL PROTECTED]
Sent: Friday, May 07, 2004 6:57 PM
To: '[EMAIL PROTECTED]'
Subject: Re: Tomcat 5.0 + IIS 6 + Windows 2003


I went thru this and it just an misdocumented feature gives interesting
results.

Focus on the isapi-director.dll

1. Where does the dll reside (full folder path)

2. What is the virtual directory name in IIS and what the physical folder
pointing to.

3. What is the registry entry value for workers2.properties

4. Is the isapi-director.dll is for the version compatable to tomcat

When you provide answer for this, try as much as possible the correct value
of folder instead of generic.
--
Sent from my BlackBerry Wireless Handheld

-
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: Tomcat 5.0 + IIS 6 + Windows 2003

2004-05-08 Thread Alex Gibson
I am running Tomcat 5 on IIS 6.  However I am running into a performance
issue.  Whenever I try to download a file, it is extremely slow.  It appears
there is a limit in IIS 6 with how much data can be transferred through an
ISAPI filter.  So far I have been unable to figure out how to remove the
filter.  If you are working with only a small web site or file transfers
(100k) then the performace won't be an issue.

Alex


-Original Message-
From: Kannan Sundararajan [mailto:[EMAIL PROTECTED] 
Sent: Friday, May 07, 2004 3:57 PM
To: '[EMAIL PROTECTED]'
Subject: Re: Tomcat 5.0 + IIS 6 + Windows 2003


I went thru this and it just an misdocumented feature gives interesting
results.

Focus on the isapi-director.dll

1. Where does the dll reside (full folder path)

2. What is the virtual directory name in IIS and what the physical folder
pointing to.

3. What is the registry entry value for workers2.properties

4. Is the isapi-director.dll is for the version compatable to tomcat

When you provide answer for this, try as much as possible the correct value
of folder instead of generic. 
--
Sent from my BlackBerry Wireless Handheld

-
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.0 + IIS 6 + Windows 2003

2004-05-07 Thread Srinivas Kotapally
All

This is my first post to the mailing list!  Hope you guys can help!

I am installing an app on Tomcat 5 + IIS 6.0 + Windows 2003 Server... I am
having issues with the IIS -- Tomcat connectivity.  I have followed the
steps as per the instructions on
http://virtualict.net/support/kb/iis6-Tomcat5-JK2.html... including the
missing steps.  Here is what I have done

1. Installed:
- jsdk1.4.2_04 for windows
- tomcat 5.0.19 for windows
- IIS 6.0 (this came with the Windows 2003 server)
2. Configured tomcat to work on port 8080 and it works perfectly!
3. Added the isapi_redirector2.dll to a virtual directory on the IIS default
site.  (the green arrow shows up in ISAPI Filters tab for the Default
Website properties)
4. Allowed the Jakarta-Tomcat Web Service in the Web Service Extensions.
5. Added the necessary Registry entries for Apache.


I am unable to figure out why am I not able to get the IIS-Tomcat
connectivity to work!!

Can someone guide me?

I noticed that when I change the port parameter to 80 (instead of the
default 8080) non-SSL Coyote HTTP/1.1 Connector in the server.xml, I am able
to access the site without specifying the port.  But in that case I guess I
am simply running Tomcat on port 80 - this is not the solution, I guess.

Here are my config files:

kj2.properties:
## 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

channelSocket.port=8009
shm.file=d:/tomcat5/work/jk2.shm

server.xml
=

!-- Define a non-SSL Coyote HTTP/1.1 Connector on the port specified
 during installation  --
Connector
port=8080   maxThreads=150 minSpareThreads=25
maxSpareThreads=75
   enableLookups=false redirectPort=8443 acceptCount=100
   debug=0 connectionTimeout=2
   disableUploadTimeout=true /
!-- Note : To disable connection timeouts, set connectionTimeout value
 to 0 --

!-- Note : To use gzip compression you could set the following properties
:

   compression=on
   compressionMinSize=2048
   noCompressionUserAgents=gozilla, traviata
   compressableMimeType=text/html,text/xml
--

!-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 --
!--
Connector port=8443
   maxThreads=150 minSpareThreads=25 maxSpareThreads=75
   enableLookups=false disableUploadTimeout=true
   acceptCount=100 debug=0 scheme=https secure=true
   clientAuth=false sslProtocol=TLS /
--

!-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 --
Connector port=8009
   enableLookups=false redirectPort=8443 debug=0
   protocol=AJP/1.3 /

!-- Define a Proxied HTTP/1.1 Connector on port 8082 --
!-- See proxy documentation for more information about using this. --
!--
Connector port=8082
   maxThreads=150 minSpareThreads=25 maxSpareThreads=75
   enableLookups=false
   acceptCount=100 debug=0 connectionTimeout=2
   proxyPort=80 disableUploadTimeout=true /
--

workers2.properties
===

[shm:]
info=Shared memory file. Required for multiprocess servers
file=D:\Tomcat5\work\jk2.shm
size=100

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

[uri:/jsp-examples/*]
info=JSP examples, map requests for all JSP pages to Tomcat.
context=/jsp-examples

[uri:/servlets-examples/*]
info=Servlet examples, map requests for all servlets to Tomcat.
context=/servlets-examples


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



Re: Tomcat 5.0 + IIS 6 + Windows 2003

2004-05-07 Thread Kannan Sundararajan
I went thru this and it just an misdocumented feature gives interesting
results.

Focus on the isapi-director.dll

1. Where does the dll reside (full folder path)

2. What is the virtual directory name in IIS and what the physical folder
pointing to.

3. What is the registry entry value for workers2.properties

4. Is the isapi-director.dll is for the version compatable to tomcat

When you provide answer for this, try as much as possible the correct value
of folder instead of generic. 
--
Sent from my BlackBerry Wireless Handheld

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



Tomcat and IIS Web Server

2004-04-19 Thread Varley, Roger
Hi

I have Tomcat running behind Microsofts IIS Web server. All requests go first to IIS 
and IIS forwards any URL specified in workers.properties to Tomcat. All standard stuff 
and it works well. I now need to use HTTPS to send a request to IIS which is going to 
be forwarded to Tomcat. My question is where does the authentication take place? Does 
IIS handle the authentication and certificates *before* it passes the request to 
Tomcat or does IIS pass control to Tomcat expecting it to handle the authentication 
and certificates? Or do I need to configure both IIS and Tomcat to handle HTTPS?

Regards
Roger 


__
This e-mail and the documents attached are confidential and intended 
solely for the addressee; it may also be privileged. If you receive this 
e-mail in error, please notify the sender immediately and destroy it.
As its integrity cannot be secured on the Internet, the Atos Origin group 
liability cannot be triggered for the message content. Although the 
sender endeavours to maintain a computer virus-free network, the sender 
does not warrant that this transmission is virus-free and will not be 
liable for any damages resulting from any virus transmitted.
__

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



Re: Tomcat and IIS Web Server

2004-04-19 Thread Daniel Gibby
IIS will handle the https. That means that actually the connection 
between IIS and tomcat is not secure, so take that into consideration as 
you make your decision.

Varley, Roger wrote:

Hi

I have Tomcat running behind Microsofts IIS Web server. All requests go first to IIS and IIS forwards any URL specified in workers.properties to Tomcat. All standard stuff and it works well. I now need to use HTTPS to send a request to IIS which is going to be forwarded to Tomcat. My question is where does the authentication take place? Does IIS handle the authentication and certificates *before* it passes the request to Tomcat or does IIS pass control to Tomcat expecting it to handle the authentication and certificates? Or do I need to configure both IIS and Tomcat to handle HTTPS?

Regards
Roger 

__
This e-mail and the documents attached are confidential and intended 
solely for the addressee; it may also be privileged. If you receive this 
e-mail in error, please notify the sender immediately and destroy it.
As its integrity cannot be secured on the Internet, the Atos Origin group 
liability cannot be triggered for the message content. Although the 
sender endeavours to maintain a computer virus-free network, the sender 
does not warrant that this transmission is virus-free and will not be 
liable for any damages resulting from any virus transmitted.
__

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

2004-04-19 Thread Varley, Roger
 
 IIS will handle the https. That means that actually the connection 
 between IIS and tomcat is not secure, so take that into 
 consideration as 
 you make your decision.
 

Thanks Daniel. Both the IIS server and Tomcat are located on the same server behind a 
firewall - so that really shouldn't be an issue should it? Even if they were on 
different servers behind a firewall given that I'm not worried about internal snooping 
it's still not an issue - or am I missing something important here?

Regards
Roger

 Varley, Roger wrote:
 
 Hi
 
 I have Tomcat running behind Microsofts IIS Web server. All 
 requests go first to IIS and IIS forwards any URL specified 
 in workers.properties to Tomcat. All standard stuff and it 
 works well. I now need to use HTTPS to send a request to IIS 
 which is going to be forwarded to Tomcat. My question is 
 where does the authentication take place? Does IIS handle the 
 authentication and certificates *before* it passes the 
 request to Tomcat or does IIS pass control to Tomcat 
 expecting it to handle the authentication and certificates? 
 Or do I need to configure both IIS and Tomcat to handle HTTPS?
 
 Regards
 Roger 
 
 
 _
 _
 This e-mail and the documents attached are confidential and intended 
 solely for the addressee; it may also be privileged. If you 
 receive this 
 e-mail in error, please notify the sender immediately and destroy it.
 As its integrity cannot be secured on the Internet, the Atos 
 Origin group 
 liability cannot be triggered for the message content. Although the 
 sender endeavours to maintain a computer virus-free network, 
 the sender 
 does not warrant that this transmission is virus-free and 
 will not be 
 liable for any damages resulting from any virus transmitted.
 _
 _
 
 -
 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]
 
 


__
This e-mail and the documents attached are confidential and intended 
solely for the addressee; it may also be privileged. If you receive this 
e-mail in error, please notify the sender immediately and destroy it.
As its integrity cannot be secured on the Internet, the Atos Origin group 
liability cannot be triggered for the message content. Although the 
sender endeavours to maintain a computer virus-free network, the sender 
does not warrant that this transmission is virus-free and will not be 
liable for any damages resulting from any virus transmitted.
__

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



Re: Tomcat and IIS Web Server

2004-04-19 Thread Daniel Gibby
You're right. If you can trust your machine(s) and the users on them, 
then you should be secure enough.

Varley, Roger wrote:

IIS will handle the https. That means that actually the connection 
between IIS and tomcat is not secure, so take that into 
consideration as 
you make your decision.

   

Thanks Daniel. Both the IIS server and Tomcat are located on the same server behind a firewall - so that really shouldn't be an issue should it? Even if they were on different servers behind a firewall given that I'm not worried about internal snooping it's still not an issue - or am I missing something important here?

Regards
Roger
 

Varley, Roger wrote:

   

Hi

I have Tomcat running behind Microsofts IIS Web server. All 
 

requests go first to IIS and IIS forwards any URL specified 
in workers.properties to Tomcat. All standard stuff and it 
works well. I now need to use HTTPS to send a request to IIS 
which is going to be forwarded to Tomcat. My question is 
where does the authentication take place? Does IIS handle the 
authentication and certificates *before* it passes the 
request to Tomcat or does IIS pass control to Tomcat 
expecting it to handle the authentication and certificates? 
Or do I need to configure both IIS and Tomcat to handle HTTPS?
   

Regards
Roger 

_
 

_
   

This e-mail and the documents attached are confidential and intended 
solely for the addressee; it may also be privileged. If you 
 

receive this 
   

e-mail in error, please notify the sender immediately and destroy it.
As its integrity cannot be secured on the Internet, the Atos 
 

Origin group 
   

liability cannot be triggered for the message content. Although the 
sender endeavours to maintain a computer virus-free network, 
 

the sender 
   

does not warrant that this transmission is virus-free and 
 

will not be 
   

liable for any damages resulting from any virus transmitted.
_
 

_
   

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



__
This e-mail and the documents attached are confidential and intended 
solely for the addressee; it may also be privileged. If you receive this 
e-mail in error, please notify the sender immediately and destroy it.
As its integrity cannot be secured on the Internet, the Atos Origin group 
liability cannot be triggered for the message content. Although the 
sender endeavours to maintain a computer virus-free network, the sender 
does not warrant that this transmission is virus-free and will not be 
liable for any damages resulting from any virus transmitted.
__

-
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: Tomcat 5.0.19, IIS, Windows XP

2004-04-16 Thread Jay Rutten
After scrounging around in the Event Viewer and lots of other places, I have
come up with the idea that the load balancer was having problems. This was
in the event log:

Event Type: Warning
Event Source:   Apache Jakarta Connector2
Event Category: None
Event ID:   2
Date:   4/14/2004
Time:   2:49:02 PM
User:   N/A
Computer:   OCEAN
Description:
Error: [jk_worker_lb.c (427)]: lb.service() worker failed 12 for
ajp13:localhost:8009

My solution was to remove the load balancer from the worker2.properties file
(removing all lb references from the file listed below) and things started
working.


-Original Message-
From: Jay Rutten [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 01, 2004 10:52 AM
To: [EMAIL PROTECTED]
Subject: Tomcat 5.0.19, IIS, Windows XP

I am having problems getting the examples to work in an out of the box
scenario. Here is what I have installed:

1) JSDK 1.4.2_02 (auto-upgraded to 1.4.2_02-b03) with JAVA_HOME set
appropriately.
2) Tomcat 5.0.19 installed and running as a service. The only options
changed during install were the directory (changed to C:\Java\tomcat5.0.19)
and installing as a service. It appears to be working as going to
http://localhost:8080 brings up the manager appropriately. I can also get to
the examples with http://localhost:8080/jsp-examples.
3) JK2 redirector installed using the install4iis.js script included in the
zip file. I made a minor change to the script to create the Filters for the
default web site, which I am confident is correct. You don't need the change
if you have a Filter currently set up at that level. I copied the
workers2.properties.sample to my TOMCAT\conf area (killing the .samples). I
did have to change it slightly since the examples changed. Here are the
current contents:

[shm]
info=Scoreboard. Required for reconfiguration and status with multiprocess
servers.
file=anon

# Defines a load balancer named lb. Use even if you only have one machine.
[lb:lb]

# Example socket channel, override port and host.
[channel.socket:localhost:8009]
port=8009
host=127.0.0.1

# define the worker
[ajp13:localhost:8009]
channel=channel.socket:localhost:8009
group=lb

# Map the Tomcat examples webapp to the Web server uri space
[uri:/examples/*]
group=lb

[uri:/jsp-examples/*]
group=lb

[uri:/servlets-examples/*]
group=lb

[status:]
info=Status worker, displays runtime information

[uri:/jkstatus/*]
info=The Tomcat /jkstatus handler
group=status:

I can successfully go to http://localhost/jkstatus. However, when I go to
http://localhost/jsp-examples, the browser just hangs. It doesn't even time
out. I also notice that in the application event log, there is the following
warning:

Event Type: Warning
Event Source:   Apache Jakarta Connector2
Event Category: None
Event ID:   2
Date:   4/1/2004
Time:   10:33:11 AM
User:   N/A
Computer:   OCEAN
Description:
Error: [jk_isapi_plugin.c (496)]: HttpExtensionProc worker is NULL


- Is the default server.xml sufficient to getting to these examples? Do I
have to uncomment the invoker servlet?
- What are the possible values that go in workers2.properties? I have
noticed in several examples on the web that a tomcatid value is used for the
uri entries, but it typically goes go localhost:8009. Do I need a worker
specification for each uri entry?

Any direction on where I could look would be greatly appreciated...



-
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.0.19, IIS, Windows XP

2004-04-01 Thread Jay Rutten
I am having problems getting the examples to work in an out of the box
scenario. Here is what I have installed:

1) JSDK 1.4.2_02 (auto-upgraded to 1.4.2_02-b03) with JAVA_HOME set
appropriately.
2) Tomcat 5.0.19 installed and running as a service. The only options
changed during install were the directory (changed to C:\Java\tomcat5.0.19)
and installing as a service. It appears to be working as going to
http://localhost:8080 brings up the manager appropriately. I can also get to
the examples with http://localhost:8080/jsp-examples.
3) JK2 redirector installed using the install4iis.js script included in the
zip file. I made a minor change to the script to create the Filters for the
default web site, which I am confident is correct. You don't need the change
if you have a Filter currently set up at that level. I copied the
workers2.properties.sample to my TOMCAT\conf area (killing the .samples). I
did have to change it slightly since the examples changed. Here are the
current contents:

[shm]
info=Scoreboard. Required for reconfiguration and status with multiprocess
servers.
file=anon

# Defines a load balancer named lb. Use even if you only have one machine.
[lb:lb]

# Example socket channel, override port and host.
[channel.socket:localhost:8009]
port=8009
host=127.0.0.1

# define the worker
[ajp13:localhost:8009]
channel=channel.socket:localhost:8009
group=lb

# Map the Tomcat examples webapp to the Web server uri space
[uri:/examples/*]
group=lb

[uri:/jsp-examples/*]
group=lb

[uri:/servlets-examples/*]
group=lb

[status:]
info=Status worker, displays runtime information

[uri:/jkstatus/*]
info=The Tomcat /jkstatus handler
group=status:

I can successfully go to http://localhost/jkstatus. However, when I go to
http://localhost/jsp-examples, the browser just hangs. It doesn't even time
out. I also notice that in the application event log, there is the following
warning:

Event Type: Warning
Event Source:   Apache Jakarta Connector2
Event Category: None
Event ID:   2
Date:   4/1/2004
Time:   10:33:11 AM
User:   N/A
Computer:   OCEAN
Description:
Error: [jk_isapi_plugin.c (496)]: HttpExtensionProc worker is NULL


- Is the default server.xml sufficient to getting to these examples? Do I
have to uncomment the invoker servlet?
- What are the possible values that go in workers2.properties? I have
noticed in several examples on the web that a tomcatid value is used for the
uri entries, but it typically goes go localhost:8009. Do I need a worker
specification for each uri entry?

Any direction on where I could look would be greatly appreciated...



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



RE: Tomcat 5.0.19, IIS, Windows XP

2004-04-01 Thread LILES, DAVID (CONTRACTOR)
I may be off base but do you have a webapp.exl file with a context?

ref: www.dynamichostings.com/TomCat5IIS5.do

-Original Message-
From: Jay Rutten [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 01, 2004 12:52 PM
To: [EMAIL PROTECTED]
Subject: Tomcat 5.0.19, IIS, Windows XP


I am having problems getting the examples to work in an out of the box
scenario. Here is what I have installed:

1) JSDK 1.4.2_02 (auto-upgraded to 1.4.2_02-b03) with JAVA_HOME set
appropriately.
2) Tomcat 5.0.19 installed and running as a service. The only options
changed during install were the directory (changed to C:\Java\tomcat5.0.19)
and installing as a service. It appears to be working as going to
http://localhost:8080 brings up the manager appropriately. I can also get to
the examples with http://localhost:8080/jsp-examples.
3) JK2 redirector installed using the install4iis.js script included in the
zip file. I made a minor change to the script to create the Filters for the
default web site, which I am confident is correct. You don't need the change
if you have a Filter currently set up at that level. I copied the
workers2.properties.sample to my TOMCAT\conf area (killing the .samples). I
did have to change it slightly since the examples changed. Here are the
current contents:

[shm]
info=Scoreboard. Required for reconfiguration and status with multiprocess
servers.
file=anon

# Defines a load balancer named lb. Use even if you only have one machine.
[lb:lb]

# Example socket channel, override port and host.
[channel.socket:localhost:8009]
port=8009
host=127.0.0.1

# define the worker
[ajp13:localhost:8009]
channel=channel.socket:localhost:8009
group=lb

# Map the Tomcat examples webapp to the Web server uri space
[uri:/examples/*]
group=lb

[uri:/jsp-examples/*]
group=lb

[uri:/servlets-examples/*]
group=lb

[status:]
info=Status worker, displays runtime information

[uri:/jkstatus/*]
info=The Tomcat /jkstatus handler
group=status:

I can successfully go to http://localhost/jkstatus. However, when I go to
http://localhost/jsp-examples, the browser just hangs. It doesn't even time
out. I also notice that in the application event log, there is the following
warning:

Event Type: Warning
Event Source:   Apache Jakarta Connector2
Event Category: None
Event ID:   2
Date:   4/1/2004
Time:   10:33:11 AM
User:   N/A
Computer:   OCEAN
Description:
Error: [jk_isapi_plugin.c (496)]: HttpExtensionProc worker is NULL


- Is the default server.xml sufficient to getting to these examples? Do I
have to uncomment the invoker servlet?
- What are the possible values that go in workers2.properties? I have
noticed in several examples on the web that a tomcatid value is used for the
uri entries, but it typically goes go localhost:8009. Do I need a worker
specification for each uri entry?

Any direction on where I could look would be greatly appreciated...



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



WebDAV with Tomcat and IIS/isapi_redirect.dll

2004-03-26 Thread Ingo Rockel
Hi there,

has anyone a working setup with Tomcat and IIS/isapi_redirect.dll where 
the WebDAV commands like PROPFIND are passed to the Tomcat-Servlets and 
are not processed by the IIS (and answered with a 404)?

I tried isapi_redirect.dll and isapi_redirector2.dll without any luck so 
far.

Any Ideas?

Thanks,

	Ingo

--
PIRONET NDH AG
Ingo Rockel - Produktentwicklung
Maarweg 149-161, 50825 Koeln
Tel.: +49 (0)221-770-1788 / Fax: +49 (0)221-770-1005
mailto:[EMAIL PROTECTED] - http://www.pironet-ndh.com
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Tomcat and IIS question

2004-02-27 Thread John MccLain


-Original Message-
From: Ben Souther [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 26, 2004 3:43 PM
To: Tomcat Users List
Subject: Re: Tomcat and IIS question


I imagine that you've got Tomcat and IIS communicating behind a firewall, if
not on the same machine.  If only IIS is exposed to the internet, why would
you need communication between the two to be encrypted?

We are producing a medical app. As part of the new HIPAA requirements,
we are to take all precautions necessary to ensure that personal health
information is securely
transmitted electronically. If someone should break through all other
security measures,
the data will still be encrypted, and we have reduced our liability.

Also, If you aren't relying on IIS for encryption, why use it at all?  Why
not just use Tomcat as a stand alone and install the certificate there?

 IIS needs to run so that our clients can continue to administer their
other
apps (which could be ASP) in the same manner as they are used too,
without having our app interfere. What we need is roundtrip encryption - yes
it will be slow through IIS-
but if you have any other ideas for this kind of scenario, please tell me as
I am not an sys admin.
I am a humble software engineer


Are you running ASP apps too?



On Thursday 26 February 2004 06:51 pm, you wrote:
 I believe there is a misunderstanding (I think???)...
 I already have tomcat talking to IIS, and IIS talking securely with the
 client. The problem is that IIS decrypts ssl requests to process them. In
 the case of a servlet request, it forwards the decrypted request to Tomcat
 and Tomcat sends the response decrypted back to IIS (I think???). I want
 all requests and responses to be encrypted. How can I have all
 communication secure???

 -Original Message-
 From: Ben Souther [mailto:[EMAIL PROTECTED]
 Sent: Thursday, February 26, 2004 2:58 PM
 To: Tomcat Users List
 Subject: Re: Tomcat and IIS question


 http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk/iishowto.html

 On Thursday 26 February 2004 05:19 pm, you wrote:
  Can I be running IIS and Tomcat concurrently and have specific webapps
  directed to each for processing. I am assuming that Tomcat will be
  running as a web server as well as servlet container and that IIS is of
  course running as a web server. The goal is to elminate the port number
  from the address window for all requests, to use tomcat/ssl for dynamic
  webapps,

 and

  for other static webapss, have them run through IIS. The general
question
  is--how can I accomplish this goal???
 
 
  -
  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]


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


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



Tomcat and IIS question

2004-02-26 Thread John MccLain
Can I be running IIS and Tomcat concurrently and have specific webapps
directed to each for processing. I am assuming that Tomcat will be running
as a web server as well as servlet container and that IIS is of course
running as a web server. The goal is to elminate the port number from the
address window for all requests, to use tomcat/ssl for dynamic webapps, and
for other static webapss, have them run through IIS. The general question
is--how can I accomplish this goal???


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



Re: Tomcat and IIS question

2004-02-26 Thread Ben Souther
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk/iishowto.html


On Thursday 26 February 2004 05:19 pm, you wrote:
 Can I be running IIS and Tomcat concurrently and have specific webapps
 directed to each for processing. I am assuming that Tomcat will be running
 as a web server as well as servlet container and that IIS is of course
 running as a web server. The goal is to elminate the port number from the
 address window for all requests, to use tomcat/ssl for dynamic webapps, and
 for other static webapss, have them run through IIS. The general question
 is--how can I accomplish this goal???


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

2004-02-26 Thread John MccLain
I believe there is a misunderstanding (I think???)...
I already have tomcat talking to IIS, and IIS talking securely with the
client. The problem is that IIS decrypts ssl requests to process them. In
the case of a servlet request, it forwards the decrypted request to Tomcat
and Tomcat sends the response decrypted back to IIS (I think???). I want all
requests and responses to be encrypted. How can I have all communication
secure???

-Original Message-
From: Ben Souther [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 26, 2004 2:58 PM
To: Tomcat Users List
Subject: Re: Tomcat and IIS question


http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk/iishowto.html


On Thursday 26 February 2004 05:19 pm, you wrote:
 Can I be running IIS and Tomcat concurrently and have specific webapps
 directed to each for processing. I am assuming that Tomcat will be running
 as a web server as well as servlet container and that IIS is of course
 running as a web server. The goal is to elminate the port number from the
 address window for all requests, to use tomcat/ssl for dynamic webapps,
and
 for other static webapss, have them run through IIS. The general question
 is--how can I accomplish this goal???


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


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



Re: Tomcat and IIS question

2004-02-26 Thread Ben Souther
I imagine that you've got Tomcat and IIS communicating behind a firewall, if 
not on the same machine.  If only IIS is exposed to the internet, why would 
you need communication between the two to be encrypted?

Also, If you aren't relying on IIS for encryption, why use it at all?  Why 
not just use Tomcat as a stand alone and install the certificate there?

Are you running ASP apps too?



On Thursday 26 February 2004 06:51 pm, you wrote:
 I believe there is a misunderstanding (I think???)...
 I already have tomcat talking to IIS, and IIS talking securely with the
 client. The problem is that IIS decrypts ssl requests to process them. In
 the case of a servlet request, it forwards the decrypted request to Tomcat
 and Tomcat sends the response decrypted back to IIS (I think???). I want
 all requests and responses to be encrypted. How can I have all
 communication secure???

 -Original Message-
 From: Ben Souther [mailto:[EMAIL PROTECTED]
 Sent: Thursday, February 26, 2004 2:58 PM
 To: Tomcat Users List
 Subject: Re: Tomcat and IIS question


 http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk/iishowto.html

 On Thursday 26 February 2004 05:19 pm, you wrote:
  Can I be running IIS and Tomcat concurrently and have specific webapps
  directed to each for processing. I am assuming that Tomcat will be
  running as a web server as well as servlet container and that IIS is of
  course running as a web server. The goal is to elminate the port number
  from the address window for all requests, to use tomcat/ssl for dynamic
  webapps,

 and

  for other static webapss, have them run through IIS. The general question
  is--how can I accomplish this goal???
 
 
  -
  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]


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



SocketException - JK2, Tomcat 4.1.29, IIS 5.1

2004-01-08 Thread Frank Febbraro
When accessing pages on my Tomcat server via IIS and isapi_redirector2.dll I
get the following errors on every page request.

The errors below are for a simple page invokation like
http://localhost/asis/index.jsp

Each page is returned successfully, but there are reams of errors generated.

Thanks for any help. I have included the catalina.out, isapi.log,
jk2.properties and workers2.properties file.

Thanks again,
Frank

In the TOMCAT LOG I get:

SEVERE: Error, processing connection
java.net.SocketException: Software caused connection abort: recv failed
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
at org.apache.jk.common.ChannelSocket.read(ChannelSocket.java:548)
at
org.apache.jk.common.ChannelSocket.receive(ChannelSocket.java:486)
at
org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:603)
at
org.apache.jk.common.SocketConnection.runIt(ChannelSocket.java:786)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.jav
a:666)
at java.lang.Thread.run(Thread.java:536)
StandardContext[/asis]:  Mapped to servlet 'default' with servlet path
'/includes/style.css' and path info 'null' and update=true
Jan 8, 2004 10:23:06 AM org.apache.jk.common.ChannelSocket processConnection
SEVERE: Error, processing connection
java.net.SocketException: Software caused connection abort: recv failed
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
at org.apache.jk.common.ChannelSocket.read(ChannelSocket.java:548)
at
org.apache.jk.common.ChannelSocket.receive(ChannelSocket.java:486)
at
org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:603)
at
org.apache.jk.common.SocketConnection.runIt(ChannelSocket.java:786)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.jav
a:666)
at java.lang.Thread.run(Thread.java:536)

In the ISAPI LOG I get:
[Thu Jan 08 10:23:06 2004] (error ) [jk_worker_ajp13.c (341)]
ajp13.service() error sending, reconnect channel.socket:localhost:8009 -1 0
No error
[Thu Jan 08 10:23:06 2004] (error ) [jk_service_iis.c (157)]
jk_ws_service_t::head, ServerSupportFunction failed
[Thu Jan 08 10:23:06 2004] (error ) [jk_handler_response.c (178)]
handler.response() Error sending response[Thu Jan 08 10:23:06 2004] (error )
[jk_worker_ajp13.c (416)]  ajp13.service() ajpGetReply recoverable error 3
[Thu Jan 08 10:23:06 2004] (error ) [jk_service_iis.c (157)]
jk_ws_service_t::head, ServerSupportFunction failed
[Thu Jan 08 10:23:06 2004] (error ) [jk_handler_response.c (178)]
handler.response() Error sending response[Thu Jan 08 10:23:06 2004] (error )
[jk_worker_ajp13.c (416)]  ajp13.service() ajpGetReply recoverable error 3
[Thu Jan 08 10:23:06 2004] (error ) [jk_worker_ajp13.c (512)]
ajp13.service() Error  forwarding ajp13:localhost:8009 1 0

My jk2.properties file:

# Handler configuration
#
handler.list=request,container,channelSocket

# Socket configuration
#
channelSocket.port=8009
channelSocket.address=127.0.0.1
channelSocket.maxPort=port+10


My workers2.properties file:
# shared memory
#
[shm]
file=D:/tomcat-4.1.29/work/shm.file
size=1048576

# alternate logging to keep mod_jk2 logging separate from IIS logging
#
[logger.file:0]
file=D:/tomcat-4.1.29/logs/jk2.log
[workerEnv:]
info=Global server options
timing=1
debug=0
logger=logger.file:0

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

# define the ajp13 worker
#
[ajp13:localhost:8009]
channel=channel.socket:localhost:8009

# Uri mapping examples - jsp files only
#
[uri:/asis/*]
worker=ajp13:localhost:8009



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



Re: SocketException - JK2, Tomcat 4.1.29, IIS 5.1

2004-01-08 Thread Frank Febbraro
In worker2.properties I changed the following and the errors disappeared:

I added keepalive=0 (supposedly the default) to the channel.socket so it now
looks like this

# IP socket channel
#
[channel.socket:localhost:8009]
port=8009
host=127.0.0.1
keepalive=0

There is no field description on this page.
http://projects.accessibilityforum.org/tomcat-docs/jk2/jk2/configwebcom.html

But it worked so I guess that is good.

Frank

- Original Message - 
From: Frank Febbraro [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Sent: Thursday, January 08, 2004 10:43 AM
Subject: SocketException - JK2, Tomcat 4.1.29, IIS 5.1


 When accessing pages on my Tomcat server via IIS and isapi_redirector2.dll
I
 get the following errors on every page request.

 The errors below are for a simple page invokation like
 http://localhost/asis/index.jsp

 Each page is returned successfully, but there are reams of errors
generated.

 Thanks for any help. I have included the catalina.out, isapi.log,
 jk2.properties and workers2.properties file.

 Thanks again,
 Frank

 In the TOMCAT LOG I get:

 SEVERE: Error, processing connection
 java.net.SocketException: Software caused connection abort: recv failed
 at java.net.SocketInputStream.socketRead0(Native Method)
 at java.net.SocketInputStream.read(SocketInputStream.java:129)
 at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
 at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
 at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
 at org.apache.jk.common.ChannelSocket.read(ChannelSocket.java:548)
 at
 org.apache.jk.common.ChannelSocket.receive(ChannelSocket.java:486)
 at

org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:603)
 at
 org.apache.jk.common.SocketConnection.runIt(ChannelSocket.java:786)
 at

org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.jav
 a:666)
 at java.lang.Thread.run(Thread.java:536)
 StandardContext[/asis]:  Mapped to servlet 'default' with servlet path
 '/includes/style.css' and path info 'null' and update=true
 Jan 8, 2004 10:23:06 AM org.apache.jk.common.ChannelSocket
processConnection
 SEVERE: Error, processing connection
 java.net.SocketException: Software caused connection abort: recv failed
 at java.net.SocketInputStream.socketRead0(Native Method)
 at java.net.SocketInputStream.read(SocketInputStream.java:129)
 at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
 at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
 at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
 at org.apache.jk.common.ChannelSocket.read(ChannelSocket.java:548)
 at
 org.apache.jk.common.ChannelSocket.receive(ChannelSocket.java:486)
 at

org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:603)
 at
 org.apache.jk.common.SocketConnection.runIt(ChannelSocket.java:786)
 at

org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.jav
 a:666)
 at java.lang.Thread.run(Thread.java:536)

 In the ISAPI LOG I get:
 [Thu Jan 08 10:23:06 2004] (error ) [jk_worker_ajp13.c (341)]
 ajp13.service() error sending, reconnect channel.socket:localhost:8009 -1
0
 No error
 [Thu Jan 08 10:23:06 2004] (error ) [jk_service_iis.c (157)]
 jk_ws_service_t::head, ServerSupportFunction failed
 [Thu Jan 08 10:23:06 2004] (error ) [jk_handler_response.c (178)]
 handler.response() Error sending response[Thu Jan 08 10:23:06 2004]
(error )
 [jk_worker_ajp13.c (416)]  ajp13.service() ajpGetReply recoverable error 3
 [Thu Jan 08 10:23:06 2004] (error ) [jk_service_iis.c (157)]
 jk_ws_service_t::head, ServerSupportFunction failed
 [Thu Jan 08 10:23:06 2004] (error ) [jk_handler_response.c (178)]
 handler.response() Error sending response[Thu Jan 08 10:23:06 2004]
(error )
 [jk_worker_ajp13.c (416)]  ajp13.service() ajpGetReply recoverable error 3
 [Thu Jan 08 10:23:06 2004] (error ) [jk_worker_ajp13.c (512)]
 ajp13.service() Error  forwarding ajp13:localhost:8009 1 0

 My jk2.properties file:

 # Handler configuration
 #
 handler.list=request,container,channelSocket

 # Socket configuration
 #
 channelSocket.port=8009
 channelSocket.address=127.0.0.1
 channelSocket.maxPort=port+10


 My workers2.properties file:
 # shared memory
 #
 [shm]
 file=D:/tomcat-4.1.29/work/shm.file
 size=1048576

 # alternate logging to keep mod_jk2 logging separate from IIS logging
 #
 [logger.file:0]
 file=D:/tomcat-4.1.29/logs/jk2.log
 [workerEnv:]
 info=Global server options
 timing=1
 debug=0
 logger=logger.file:0

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

 # define the ajp13 worker
 #
 [ajp13:localhost:8009]
 channel=channel.socket:localhost:8009

 # Uri mapping examples - jsp files only
 #
 [uri:/asis/*]
 worker=ajp13:localhost:8009

RE: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on AJP13 connector

2003-11-28 Thread Bhavdeep Sharma
Hi,

After not able to connect IIS5.0 on Win2K with Tomcat 4.0, JDK 1.4 using
JK1.2
I tried to connect IIS 5 on Win2K with Tomcat 3.2, JDK 1.3. This
configuration used to worked on my system in the past. But today I am not
able run even this.

The contents of my isapi.log are given below. Any clue will be helpful.
P.S. Both Tomcat and IIS run fine and JSP page is served fine if run without
IIS.


Isapi.log:
[Fri Nov 28 19:54:30 2003]  [jk_uri_worker_map.c (464)]: Attempting to map
URI '/examples/jsp/num/numguess.jsp'
[Fri Nov 28 19:54:30 2003]  [jk_uri_worker_map.c (529)]:
jk_uri_worker_map_t::map_uri_to_worker, Found a suffix match ajp12 - *.jsp
[Fri Nov 28 19:54:30 2003]  [jk_isapi_plugin.c (721)]: HttpFilterProc
[/examples/jsp/num/numguess.jsp] is a servlet url - should redirect to ajp12
[Fri Nov 28 19:54:30 2003]  [jk_isapi_plugin.c (784)]: HttpFilterProc check
if [/examples/jsp/num/numguess.jsp] is points to the web-inf directory
[jk_isapi_plugin.c (408)]: HttpFilterProc started
[jk_isapi_plugin.c (429)]: In HttpFilterProc test redirection of
/jakarta/isapi_redirect.dll
[jk_uri_worker_map.c (345)]: Into jk_uri_worker_map_t::map_uri_to_worker
[jk_uri_worker_map.c (435)]: jk_uri_worker_map_t::map_uri_to_worker, done
without a match
[jk_isapi_plugin.c (452)]: HttpFilterProc [/jakarta/isapi_redirect.dll] is
not a servlet url
[jk_isapi_plugin.c (461)]: HttpFilterProc check if
[/jakarta/isapi_redirect.dll] is points to the web-inf directory
[jk_isapi_plugin.c (517)]: HttpExtensionProc started
[jk_worker.c (123)]: Into wc_get_worker_for_name ajp12
[jk_worker.c (127)]: wc_get_worker_for_name, done  found a worker
[jk_isapi_plugin.c (539)]: HttpExtensionProc got a worker for name ajp12
[jk_ajp12_worker.c (223)]: Into jk_worker_t::get_endpoint
[jk_ajp12_worker.c (121)]: Into jk_endpoint_t::service
[jk_connect.c (108)]: Into jk_open_socket
[jk_connect.c (115)]: jk_open_socket, try to connect socket = 2440
[jk_connect.c (124)]: jk_open_socket, after connect ret = 0
[jk_connect.c (132)]: jk_open_socket, set TCP_NODELAY to on
[jk_connect.c (140)]: jk_open_socket, return, sd = 2440
[jk_ajp12_worker.c (134)]: In jk_endpoint_t::service, sd = 2440
[jk_ajp12_worker.c (357)]: Into ajpv12_handle_request
[jk_ajp12_worker.c (361)]: ajpv12_handle_request, sending the ajp12 start
sequence
[jk_ajp12_worker.c (413)]: ajpv12_handle_request, sending the headers
[jk_ajp12_worker.c (432)]: ajpv12_handle_request, sending the terminating
mark
[jk_ajp12_worker.c (477)]: ajpv12_handle_request done
[jk_ajp12_worker.c (148)]: In jk_endpoint_t::service, sent request
[jk_ajp12_worker.c (493)]: Into ajpv12_handle_response
[jk_ajp12_worker.c (507)]: ajpv12_handle_response, read Status: 404 Not
Found
[jk_ajp12_worker.c (535)]: ajpv12_handle_response, read Status=404 Not Found
[jk_ajp12_worker.c (507)]: ajpv12_handle_response, read Content-Type:
text/html
[jk_ajp12_worker.c (535)]: ajpv12_handle_response, read
Content-Type=text/html
[jk_ajp12_worker.c (547)]: ajpv12_handle_response, allocating header arrays
[jk_ajp12_worker.c (507)]: ajpv12_handle_response, read Content-Length: 201
[jk_ajp12_worker.c (535)]: ajpv12_handle_response, read Content-Length=201
[jk_ajp12_worker.c (507)]: ajpv12_handle_response, read Servlet-Engine:
Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.0; Windows 2000 5.0
x86; java.vendor=Sun Microsystems Inc.)
[jk_ajp12_worker.c (535)]: ajpv12_handle_response, read
Servlet-Engine=Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.0;
Windows 2000 5.0 x86; java.vendor=Sun Microsystems Inc.)
[jk_ajp12_worker.c (507)]: ajpv12_handle_response, read 
[jk_ajp12_worker.c (509)]: ajpv12_handle_response, headers are done
[jk_ajp12_worker.c (568)]: ajpv12_handle_response, starting response
[jk_isapi_plugin.c (201)]: Into jk_ws_service_t::start_response
[jk_ajp12_worker.c (579)]: ajpv12_handle_response, reading response body
[jk_isapi_plugin.c (335)]: Into jk_ws_service_t::write
[jk_ajp12_worker.c (595)]: ajpv12_handle_response, response body is done
[jk_ajp12_worker.c (607)]: ajpv12_handle_response done
[jk_isapi_plugin.c (551)]: HttpExtensionProc service() returned OK
[jk_ajp12_worker.c (163)]: Into jk_endpoint_t::done

Thanks
Bhavdeep

-Original Message-
From: Wendell Holmes [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 2:04 AM
To: 'Tomcat Users List'
Subject: RE: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat
on AJP13 connector


Looks like you've set up a worker for ajp12 instead of ajp13.

[jk_ajp12_worker.c (242)]: Into
jk_worker_t::get_endpoint


Wendell


-Original Message-
From: Bhavdeep Sharma [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 25, 2003 7:21 AM
To: Tomcat Users List
Subject: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on
AJP13 connector


Hi all,

I am running tomcat 4.0 as service on Win 2K
I am trying to connect IIS to tomcat on AJP 13 connector using JK1.2
(isapi_redirect_1.2.5.dll)

I try to access the sample JSP page using IIS

RE: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on AJP13 connector

2003-11-27 Thread Bhavdeep Sharma
Thanks all (especially Walter do Valle, Wendell Holmes, Stphane Brogi) for
the help. I will check on the link and try what they suggest.

Just an update that now I am getting the following error.

/jakarta/isapi_redirect_1.2.5.dll


type Status report
message /jakarta/isapi_redirect_1.2.5.dll
description The requested resource (/jakarta/isapi_redirect_1.2.5.dll) is
not available.

regards,
Bhavdeep

-Original Message-
From: Stphane Brogi [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 9:29 PM
To: Tomcat Users List
Subject: RE: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat
on AJP13 connector


You will find more infos here.

http://www.onjava.com/pub/a/onjava/2002/12/18/tomcat.html

Remember to restart iis and tomcat after modify properties files
(workers.properties; uriworkermap.properties)


Stphane Brogi

-Message d'origine-
De : Walter do Valle [mailto:[EMAIL PROTECTED]
Envoy : mercredi 26 novembre 2003 12:48
 : Tomcat Users List
Objet : Re: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat
on AJP13 connector



Try this

It helps me a lot.

http://www.getnet.net/~rbarr/TomcatOnIIS/default.htm


  - Original Message -
  From: Bhavdeep Sharma
  To: Tomcat Users List
  Sent: Tuesday, November 25, 2003 11:21 AM
  Subject: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on
AJP13 connector


  Hi all,

  I am running tomcat 4.0 as service on Win 2K
  I am trying to connect IIS to tomcat on AJP 13 connector using JK1.2
  (isapi_redirect_1.2.5.dll)

  I try to access the sample JSP page using IIS and get the error Page
cannot
  be displayed
  The same JSP page works fine if I access it directly from Tomcat.
  I have AJP 1.3 entry in server.xml file as un-commented.

  To verify that IIS is connecting to Tomcat or not I stopped the Tomcat
  service and then try to access the JSP page from IIS. I still get exactly
  the same error.
  Even the ISAPI log is also same irrespective of that Tomcat service is
  running or not.

  The content of the ISAPI log is pasted bellow.

  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (696)]: HttpFilterProc
  started
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (759)]: In HttpFilterProc
  Virtual Host redirection of /bhsharma/examples/jsp/num/numguess.jsp
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (460)]: Into
  jk_uri_worker_map_t::map_uri_to_worker
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
  URI '/bhsharma/examples/jsp/num/numguess.jsp'
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (599)]:
  jk_uri_worker_map_t::map_uri_to_worker, done without a match
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (765)]: In HttpFilterProc
  test Default redirection of /examples/jsp/num/numguess.jsp
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (460)]: Into
  jk_uri_worker_map_t::map_uri_to_worker
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
  URI '/examples/jsp/num/numguess.jsp'
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (558)]:
  jk_uri_worker_map_t::map_uri_to_worker, Found a suffix match ajp13 -
*.jsp
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (775)]: HttpFilterProc
  [/examples/jsp/num/numguess.jsp] is a servlet url - should redirect to
ajp13
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (838)]: HttpFilterProc
check
  if [/examples/jsp/num/numguess.jsp] is points to the web-inf directory
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (878)]: HttpExtensionProc
  started
  [Tue Nov 25 17:21:18 2003]  [jk_worker.c (132)]: Into
wc_get_worker_for_name
  ajp13
  [Tue Nov 25 17:21:18 2003]  [jk_worker.c (136)]: wc_get_worker_for_name,
  done  found a worker
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (913)]: HttpExtensionProc
got
  a worker for name ajp13
  [Tue Nov 25 17:21:18 2003]  [jk_ajp12_worker.c (242)]: Into
  jk_worker_t::get_endpoint
  [Tue Nov 25 17:21:18 2003]  [jk_ajp12_worker.c (137)]: Into
  jk_endpoint_t::service
  [Tue Nov 25 17:21:18 2003]  [jk_connect.c (158)]: Into jk_open_socket
  [Tue Nov 25 17:21:18 2003]  [jk_connect.c (165)]: jk_open_socket, try to
  connect socket = 2852
  [Tue Nov 25 17:21:19 2003]  [jk_connect.c (174)]: jk_open_socket, after
  connect ret = -1
  [Tue Nov 25 17:21:19 2003]  [jk_connect.c (203)]: jk_open_socket,
connect()
  failed errno = 61
  [Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (151)]: In
  jk_endpoint_t::service, sd = -1
  [Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (169)]: In
  jk_endpoint_t::service, Error sd = -1
  [Tue Nov 25 17:21:19 2003]  [jk_isapi_plugin.c (928)]: HttpExtensionProc
  error, service() failed
  [Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (180)]: Into
  jk_endpoint_t::done


  I searched the Google on jk_open_socket, connect() failed errno = 61.
Got
  similarly faced problem but not able to get/understand the solution that
  will work for me

Re: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on AJP13 connector

2003-11-27 Thread Antony Paul
Hi Bhavdeep Sharma,
I tested the sample given at the link
http://www.getnet.net/~rbarr/TomcatOnIIS/default.htm. I downloaded the zip
file and configured IIS as specified in the docs. It works fine. But I dont
know it is JK2 or JK. One thing to remember is you have to put the DLL in
the bin directory. Putting it at other places wont work. After this I
configured as per the docs in
http://localhost/tomcat-docs/jk2/jk/iishowto.html. Again here you have to
put the DLL in win32\i386 directory.

Antony Paul

- Original Message -
From: Bhavdeep Sharma [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Sent: Thursday, November 27, 2003 6:06 PM
Subject: RE: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on
AJP13 connector


Thanks all (especially Walter do Valle, Wendell Holmes, Stphane Brogi) for
the help. I will check on the link and try what they suggest.

Just an update that now I am getting the following error.

/jakarta/isapi_redirect_1.2.5.dll


type Status report
message /jakarta/isapi_redirect_1.2.5.dll
description The requested resource (/jakarta/isapi_redirect_1.2.5.dll) is
not available.

regards,
Bhavdeep

-Original Message-
From: Stphane Brogi [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 9:29 PM
To: Tomcat Users List
Subject: RE: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat
on AJP13 connector


You will find more infos here.

http://www.onjava.com/pub/a/onjava/2002/12/18/tomcat.html

Remember to restart iis and tomcat after modify properties files
(workers.properties; uriworkermap.properties)


Stphane Brogi

-Message d'origine-
De : Walter do Valle [mailto:[EMAIL PROTECTED]
Envoy : mercredi 26 novembre 2003 12:48
 : Tomcat Users List
Objet : Re: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat
on AJP13 connector



Try this

It helps me a lot.

http://www.getnet.net/~rbarr/TomcatOnIIS/default.htm


  - Original Message -
  From: Bhavdeep Sharma
  To: Tomcat Users List
  Sent: Tuesday, November 25, 2003 11:21 AM
  Subject: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on
AJP13 connector


  Hi all,

  I am running tomcat 4.0 as service on Win 2K
  I am trying to connect IIS to tomcat on AJP 13 connector using JK1.2
  (isapi_redirect_1.2.5.dll)

  I try to access the sample JSP page using IIS and get the error Page
cannot
  be displayed
  The same JSP page works fine if I access it directly from Tomcat.
  I have AJP 1.3 entry in server.xml file as un-commented.

  To verify that IIS is connecting to Tomcat or not I stopped the Tomcat
  service and then try to access the JSP page from IIS. I still get exactly
  the same error.
  Even the ISAPI log is also same irrespective of that Tomcat service is
  running or not.

  The content of the ISAPI log is pasted bellow.

  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (696)]: HttpFilterProc
  started
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (759)]: In HttpFilterProc
  Virtual Host redirection of /bhsharma/examples/jsp/num/numguess.jsp
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (460)]: Into
  jk_uri_worker_map_t::map_uri_to_worker
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
  URI '/bhsharma/examples/jsp/num/numguess.jsp'
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (599)]:
  jk_uri_worker_map_t::map_uri_to_worker, done without a match
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (765)]: In HttpFilterProc
  test Default redirection of /examples/jsp/num/numguess.jsp
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (460)]: Into
  jk_uri_worker_map_t::map_uri_to_worker
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
  URI '/examples/jsp/num/numguess.jsp'
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (558)]:
  jk_uri_worker_map_t::map_uri_to_worker, Found a suffix match ajp13 -
*.jsp
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (775)]: HttpFilterProc
  [/examples/jsp/num/numguess.jsp] is a servlet url - should redirect to
ajp13
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (838)]: HttpFilterProc
check
  if [/examples/jsp/num/numguess.jsp] is points to the web-inf directory
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (878)]: HttpExtensionProc
  started
  [Tue Nov 25 17:21:18 2003]  [jk_worker.c (132)]: Into
wc_get_worker_for_name
  ajp13
  [Tue Nov 25 17:21:18 2003]  [jk_worker.c (136)]: wc_get_worker_for_name,
  done  found a worker
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (913)]: HttpExtensionProc
got
  a worker for name ajp13
  [Tue Nov 25 17:21:18 2003]  [jk_ajp12_worker.c (242)]: Into
  jk_worker_t::get_endpoint
  [Tue Nov 25 17:21:18 2003]  [jk_ajp12_worker.c (137)]: Into
  jk_endpoint_t::service
  [Tue Nov 25 17:21:18 2003]  [jk_connect.c (158)]: Into jk_open_socket
  [Tue Nov 25 17:21:18 2003]  [jk_connect.c (165)]: jk_open_socket, try to
  connect

Re: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on AJP13 connector

2003-11-26 Thread Walter do Valle

Try this

It helps me a lot.

http://www.getnet.net/~rbarr/TomcatOnIIS/default.htm


  - Original Message - 
  From: Bhavdeep Sharma 
  To: Tomcat Users List 
  Sent: Tuesday, November 25, 2003 11:21 AM
  Subject: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on AJP13 
connector


  Hi all,

  I am running tomcat 4.0 as service on Win 2K
  I am trying to connect IIS to tomcat on AJP 13 connector using JK1.2
  (isapi_redirect_1.2.5.dll)

  I try to access the sample JSP page using IIS and get the error Page cannot
  be displayed 
  The same JSP page works fine if I access it directly from Tomcat.
  I have AJP 1.3 entry in server.xml file as un-commented.

  To verify that IIS is connecting to Tomcat or not I stopped the Tomcat
  service and then try to access the JSP page from IIS. I still get exactly
  the same error. 
  Even the ISAPI log is also same irrespective of that Tomcat service is
  running or not.

  The content of the ISAPI log is pasted bellow. 

  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (696)]: HttpFilterProc
  started
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (759)]: In HttpFilterProc
  Virtual Host redirection of /bhsharma/examples/jsp/num/numguess.jsp
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (460)]: Into
  jk_uri_worker_map_t::map_uri_to_worker
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
  URI '/bhsharma/examples/jsp/num/numguess.jsp'
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (599)]:
  jk_uri_worker_map_t::map_uri_to_worker, done without a match
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (765)]: In HttpFilterProc
  test Default redirection of /examples/jsp/num/numguess.jsp
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (460)]: Into
  jk_uri_worker_map_t::map_uri_to_worker
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
  URI '/examples/jsp/num/numguess.jsp'
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (558)]:
  jk_uri_worker_map_t::map_uri_to_worker, Found a suffix match ajp13 - *.jsp
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (775)]: HttpFilterProc
  [/examples/jsp/num/numguess.jsp] is a servlet url - should redirect to ajp13
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (838)]: HttpFilterProc check
  if [/examples/jsp/num/numguess.jsp] is points to the web-inf directory
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (878)]: HttpExtensionProc
  started
  [Tue Nov 25 17:21:18 2003]  [jk_worker.c (132)]: Into wc_get_worker_for_name
  ajp13
  [Tue Nov 25 17:21:18 2003]  [jk_worker.c (136)]: wc_get_worker_for_name,
  done  found a worker
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (913)]: HttpExtensionProc got
  a worker for name ajp13
  [Tue Nov 25 17:21:18 2003]  [jk_ajp12_worker.c (242)]: Into
  jk_worker_t::get_endpoint
  [Tue Nov 25 17:21:18 2003]  [jk_ajp12_worker.c (137)]: Into
  jk_endpoint_t::service
  [Tue Nov 25 17:21:18 2003]  [jk_connect.c (158)]: Into jk_open_socket
  [Tue Nov 25 17:21:18 2003]  [jk_connect.c (165)]: jk_open_socket, try to
  connect socket = 2852
  [Tue Nov 25 17:21:19 2003]  [jk_connect.c (174)]: jk_open_socket, after
  connect ret = -1
  [Tue Nov 25 17:21:19 2003]  [jk_connect.c (203)]: jk_open_socket, connect()
  failed errno = 61
  [Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (151)]: In
  jk_endpoint_t::service, sd = -1
  [Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (169)]: In
  jk_endpoint_t::service, Error sd = -1
  [Tue Nov 25 17:21:19 2003]  [jk_isapi_plugin.c (928)]: HttpExtensionProc
  error, service() failed
  [Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (180)]: Into
  jk_endpoint_t::done


  I searched the Google on jk_open_socket, connect() failed errno = 61. Got
  similarly faced problem but not able to get/understand the solution that
  will work for me.

  Your help is highly appreciated. 

  Thanks,
  Bhavdeep

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


RE: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on AJP13 connector

2003-11-26 Thread Stphane Brogi
You will find more infos here.

http://www.onjava.com/pub/a/onjava/2002/12/18/tomcat.html

Remember to restart iis and tomcat after modify properties files
(workers.properties; uriworkermap.properties)


Stphane Brogi

-Message d'origine-
De : Walter do Valle [mailto:[EMAIL PROTECTED]
Envoy : mercredi 26 novembre 2003 12:48
 : Tomcat Users List
Objet : Re: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat
on AJP13 connector



Try this

It helps me a lot.

http://www.getnet.net/~rbarr/TomcatOnIIS/default.htm


  - Original Message -
  From: Bhavdeep Sharma
  To: Tomcat Users List
  Sent: Tuesday, November 25, 2003 11:21 AM
  Subject: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on
AJP13 connector


  Hi all,

  I am running tomcat 4.0 as service on Win 2K
  I am trying to connect IIS to tomcat on AJP 13 connector using JK1.2
  (isapi_redirect_1.2.5.dll)

  I try to access the sample JSP page using IIS and get the error Page
cannot
  be displayed
  The same JSP page works fine if I access it directly from Tomcat.
  I have AJP 1.3 entry in server.xml file as un-commented.

  To verify that IIS is connecting to Tomcat or not I stopped the Tomcat
  service and then try to access the JSP page from IIS. I still get exactly
  the same error.
  Even the ISAPI log is also same irrespective of that Tomcat service is
  running or not.

  The content of the ISAPI log is pasted bellow.

  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (696)]: HttpFilterProc
  started
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (759)]: In HttpFilterProc
  Virtual Host redirection of /bhsharma/examples/jsp/num/numguess.jsp
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (460)]: Into
  jk_uri_worker_map_t::map_uri_to_worker
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
  URI '/bhsharma/examples/jsp/num/numguess.jsp'
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (599)]:
  jk_uri_worker_map_t::map_uri_to_worker, done without a match
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (765)]: In HttpFilterProc
  test Default redirection of /examples/jsp/num/numguess.jsp
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (460)]: Into
  jk_uri_worker_map_t::map_uri_to_worker
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
  URI '/examples/jsp/num/numguess.jsp'
  [Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (558)]:
  jk_uri_worker_map_t::map_uri_to_worker, Found a suffix match ajp13 -
*.jsp
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (775)]: HttpFilterProc
  [/examples/jsp/num/numguess.jsp] is a servlet url - should redirect to
ajp13
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (838)]: HttpFilterProc
check
  if [/examples/jsp/num/numguess.jsp] is points to the web-inf directory
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (878)]: HttpExtensionProc
  started
  [Tue Nov 25 17:21:18 2003]  [jk_worker.c (132)]: Into
wc_get_worker_for_name
  ajp13
  [Tue Nov 25 17:21:18 2003]  [jk_worker.c (136)]: wc_get_worker_for_name,
  done  found a worker
  [Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (913)]: HttpExtensionProc
got
  a worker for name ajp13
  [Tue Nov 25 17:21:18 2003]  [jk_ajp12_worker.c (242)]: Into
  jk_worker_t::get_endpoint
  [Tue Nov 25 17:21:18 2003]  [jk_ajp12_worker.c (137)]: Into
  jk_endpoint_t::service
  [Tue Nov 25 17:21:18 2003]  [jk_connect.c (158)]: Into jk_open_socket
  [Tue Nov 25 17:21:18 2003]  [jk_connect.c (165)]: jk_open_socket, try to
  connect socket = 2852
  [Tue Nov 25 17:21:19 2003]  [jk_connect.c (174)]: jk_open_socket, after
  connect ret = -1
  [Tue Nov 25 17:21:19 2003]  [jk_connect.c (203)]: jk_open_socket,
connect()
  failed errno = 61
  [Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (151)]: In
  jk_endpoint_t::service, sd = -1
  [Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (169)]: In
  jk_endpoint_t::service, Error sd = -1
  [Tue Nov 25 17:21:19 2003]  [jk_isapi_plugin.c (928)]: HttpExtensionProc
  error, service() failed
  [Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (180)]: Into
  jk_endpoint_t::done


  I searched the Google on jk_open_socket, connect() failed errno = 61.
Got
  similarly faced problem but not able to get/understand the solution that
  will work for me.

  Your help is highly appreciated.

  Thanks,
  Bhavdeep

  -
  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 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on AJP13 connector

2003-11-25 Thread Bhavdeep Sharma
Hi all,

I am running tomcat 4.0 as service on Win 2K
I am trying to connect IIS to tomcat on AJP 13 connector using JK1.2
(isapi_redirect_1.2.5.dll)

I try to access the sample JSP page using IIS and get the error Page cannot
be displayed 
The same JSP page works fine if I access it directly from Tomcat.
I have AJP 1.3 entry in server.xml file as un-commented.

To verify that IIS is connecting to Tomcat or not I stopped the Tomcat
service and then try to access the JSP page from IIS. I still get exactly
the same error. 
Even the ISAPI log is also same irrespective of that Tomcat service is
running or not.

The content of the ISAPI log is pasted bellow. 

[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (696)]: HttpFilterProc
started
[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (759)]: In HttpFilterProc
Virtual Host redirection of /bhsharma/examples/jsp/num/numguess.jsp
[Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (460)]: Into
jk_uri_worker_map_t::map_uri_to_worker
[Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
URI '/bhsharma/examples/jsp/num/numguess.jsp'
[Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (599)]:
jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (765)]: In HttpFilterProc
test Default redirection of /examples/jsp/num/numguess.jsp
[Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (460)]: Into
jk_uri_worker_map_t::map_uri_to_worker
[Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
URI '/examples/jsp/num/numguess.jsp'
[Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (558)]:
jk_uri_worker_map_t::map_uri_to_worker, Found a suffix match ajp13 - *.jsp
[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (775)]: HttpFilterProc
[/examples/jsp/num/numguess.jsp] is a servlet url - should redirect to ajp13
[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (838)]: HttpFilterProc check
if [/examples/jsp/num/numguess.jsp] is points to the web-inf directory
[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (878)]: HttpExtensionProc
started
[Tue Nov 25 17:21:18 2003]  [jk_worker.c (132)]: Into wc_get_worker_for_name
ajp13
[Tue Nov 25 17:21:18 2003]  [jk_worker.c (136)]: wc_get_worker_for_name,
done  found a worker
[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (913)]: HttpExtensionProc got
a worker for name ajp13
[Tue Nov 25 17:21:18 2003]  [jk_ajp12_worker.c (242)]: Into
jk_worker_t::get_endpoint
[Tue Nov 25 17:21:18 2003]  [jk_ajp12_worker.c (137)]: Into
jk_endpoint_t::service
[Tue Nov 25 17:21:18 2003]  [jk_connect.c (158)]: Into jk_open_socket
[Tue Nov 25 17:21:18 2003]  [jk_connect.c (165)]: jk_open_socket, try to
connect socket = 2852
[Tue Nov 25 17:21:19 2003]  [jk_connect.c (174)]: jk_open_socket, after
connect ret = -1
[Tue Nov 25 17:21:19 2003]  [jk_connect.c (203)]: jk_open_socket, connect()
failed errno = 61
[Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (151)]: In
jk_endpoint_t::service, sd = -1
[Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (169)]: In
jk_endpoint_t::service, Error sd = -1
[Tue Nov 25 17:21:19 2003]  [jk_isapi_plugin.c (928)]: HttpExtensionProc
error, service() failed
[Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (180)]: Into
jk_endpoint_t::done


I searched the Google on jk_open_socket, connect() failed errno = 61. Got
similarly faced problem but not able to get/understand the solution that
will work for me.

Your help is highly appreciated. 

Thanks,
Bhavdeep

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



RE: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on AJP13 connector

2003-11-25 Thread Wendell Holmes
Looks like you've set up a worker for ajp12 instead of ajp13.

[jk_ajp12_worker.c (242)]: Into
jk_worker_t::get_endpoint


Wendell


-Original Message-
From: Bhavdeep Sharma [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 25, 2003 7:21 AM
To: Tomcat Users List
Subject: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on
AJP13 connector


Hi all,

I am running tomcat 4.0 as service on Win 2K
I am trying to connect IIS to tomcat on AJP 13 connector using JK1.2
(isapi_redirect_1.2.5.dll)

I try to access the sample JSP page using IIS and get the error Page cannot
be displayed 
The same JSP page works fine if I access it directly from Tomcat.
I have AJP 1.3 entry in server.xml file as un-commented.

To verify that IIS is connecting to Tomcat or not I stopped the Tomcat
service and then try to access the JSP page from IIS. I still get exactly
the same error. 
Even the ISAPI log is also same irrespective of that Tomcat service is
running or not.

The content of the ISAPI log is pasted bellow. 

[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (696)]: HttpFilterProc
started
[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (759)]: In HttpFilterProc
Virtual Host redirection of /bhsharma/examples/jsp/num/numguess.jsp
[Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (460)]: Into
jk_uri_worker_map_t::map_uri_to_worker
[Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
URI '/bhsharma/examples/jsp/num/numguess.jsp'
[Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (599)]:
jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (765)]: In HttpFilterProc
test Default redirection of /examples/jsp/num/numguess.jsp
[Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (460)]: Into
jk_uri_worker_map_t::map_uri_to_worker
[Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
URI '/examples/jsp/num/numguess.jsp'
[Tue Nov 25 17:21:18 2003]  [jk_uri_worker_map.c (558)]:
jk_uri_worker_map_t::map_uri_to_worker, Found a suffix match ajp13 - *.jsp
[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (775)]: HttpFilterProc
[/examples/jsp/num/numguess.jsp] is a servlet url - should redirect to ajp13
[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (838)]: HttpFilterProc check
if [/examples/jsp/num/numguess.jsp] is points to the web-inf directory
[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (878)]: HttpExtensionProc
started
[Tue Nov 25 17:21:18 2003]  [jk_worker.c (132)]: Into wc_get_worker_for_name
ajp13
[Tue Nov 25 17:21:18 2003]  [jk_worker.c (136)]: wc_get_worker_for_name,
done  found a worker
[Tue Nov 25 17:21:18 2003]  [jk_isapi_plugin.c (913)]: HttpExtensionProc got
a worker for name ajp13
[Tue Nov 25 17:21:18 2003]  [jk_ajp12_worker.c (242)]: Into
jk_worker_t::get_endpoint
[Tue Nov 25 17:21:18 2003]  [jk_ajp12_worker.c (137)]: Into
jk_endpoint_t::service
[Tue Nov 25 17:21:18 2003]  [jk_connect.c (158)]: Into jk_open_socket
[Tue Nov 25 17:21:18 2003]  [jk_connect.c (165)]: jk_open_socket, try to
connect socket = 2852
[Tue Nov 25 17:21:19 2003]  [jk_connect.c (174)]: jk_open_socket, after
connect ret = -1
[Tue Nov 25 17:21:19 2003]  [jk_connect.c (203)]: jk_open_socket, connect()
failed errno = 61
[Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (151)]: In
jk_endpoint_t::service, sd = -1
[Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (169)]: In
jk_endpoint_t::service, Error sd = -1
[Tue Nov 25 17:21:19 2003]  [jk_isapi_plugin.c (928)]: HttpExtensionProc
error, service() failed
[Tue Nov 25 17:21:19 2003]  [jk_ajp12_worker.c (180)]: Into
jk_endpoint_t::done


I searched the Google on jk_open_socket, connect() failed errno = 61. Got
similarly faced problem but not able to get/understand the solution that
will work for me.

Your help is highly appreciated. 

Thanks,
Bhavdeep

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


Tomcat + jk + IIS

2003-11-12 Thread Marco Shimomoto








Hello,



I want to get running a test
server with Tomcat (4.x) and IIS on a Windows 2000. Ive read all JK
documentation at Jakarta, tried unsuccessfully to get them working.

Does anybody know another
source of information guide on doing this?



Thanks in advance,

Marco






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

RE: Tomcat + jk + IIS

2003-11-12 Thread Tom Lyle
http://www.onjava.com/pub/a/onjava/2002/12/18/tomcat.html

-Original Message-
From: Marco Shimomoto [mailto:[EMAIL PROTECTED]
Sent: 12 November 2003 15:52
To: Tomcat Users List
Subject: Tomcat + jk + IIS


Hello,

I want to get running a test server with Tomcat (4.x) and IIS on a Windows
2000. I’ve read all JK documentation at Jakarta, tried unsuccessfully to get
them working.
Does anybody know another source of information guide on doing this?

Thanks in advance,
Marco


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



Tomcat Service crashes in Tomcat Via IIS environment...

2003-11-12 Thread Bond


Hello Everyone,

   I have a on going problem with our application, and
I can't seem to find any reason for the strange
behavior of tomcat.  My Enviroment:

I have Tomcat 4.1.X installed on a Windows 2000
server.  I have connected this instance of Tomcat to
the machine's IIS server.  On IIS, I am using SSL.

Now, Most of the time, The site works Great, without a
bump.  But Randomly(or what appears to be randomly)
The Tomcat Service will Crash, And we have to restart
it.  I have been threw the logs, both from IIS and
Tomcat.  The IIS logs tell me very little, I've
checked the pages being served up right before the
crash and they work perfectly.  And they are never the
same pages.  We get the standard page can not be found
error...due to the fact that the tomcat service has
crashed.  I have looked at the Tomcat Logs, and I
don't see anything that jumps out out me, although my
tomcat knowledge is somewhat limited...  Here is a
block of the log during the error...

error occured at 19:35ish

*LOG

[Sun Nov 09 19:33:22 2003]  [jk_isapi_plugin.c (657)]:
HttpFilterProc started
[Sun Nov 09 19:33:22 2003]  [jk_isapi_plugin.c (705)]:
In HttpFilterProc Virtual Host redirection of
/siemens.tabithasoftware.com/members/processlogin.jsp
[Sun Nov 09 19:33:22 2003]  [jk_uri_worker_map.c
(447)]: Into jk_uri_worker_map_t::map_uri_to_worker
[Sun Nov 09 19:33:22 2003]  [jk_uri_worker_map.c
(464)]: Attempting to map URI
'/siemens.tabithasoftware.com/members/processlogin.jsp'
[Sun Nov 09 19:33:22 2003]  [jk_uri_worker_map.c
(489)]: jk_uri_worker_map_t::map_uri_to_worker, Found
a context match ajp13 - /
[Sun Nov 09 19:33:22 2003]  [jk_isapi_plugin.c (721)]:
HttpFilterProc [/members/processlogin.jsp] is a
servlet url - should redirect to ajp13
[Sun Nov 09 19:33:22 2003]  [jk_isapi_plugin.c (784)]:
HttpFilterProc check if [/members/processlogin.jsp] is
points to the web-inf directory
[Sun Nov 09 19:33:22 2003]  [jk_isapi_plugin.c (824)]:
HttpExtensionProc started
[Sun Nov 09 19:33:22 2003]  [jk_worker.c (132)]: Into
wc_get_worker_for_name ajp13
[Sun Nov 09 19:33:22 2003]  [jk_worker.c (136)]:
wc_get_worker_for_name, done  found a worker
[Sun Nov 09 19:33:22 2003]  [jk_isapi_plugin.c (860)]:
HttpExtensionProc got a worker for name ajp13
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (1352)]:
Into jk_worker_t::get_endpoint
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (1075)]:
Into jk_endpoint_t::service
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (280)]:
Into ajp_marshal_into_msgb
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (413)]:
ajp_marshal_into_msgb - Done
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (612)]:
sending to ajp13 #331
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (853)]:
ajp_send_request 2: request body to send 0 - request
body to resend 0
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (651)]:
ajp_connection_tcp_get_message: Error -
jk_tcp_socket_recvfull failed
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (1009)]:
Error reading reply
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (1146)]:
In jk_endpoint_t::service, ajp_get_reply failed in
send loop 0
[Sun Nov 09 19:33:22 2003]  [jk_connect.c (116)]: Into
jk_open_socket
[Sun Nov 09 19:33:22 2003]  [jk_connect.c (123)]:
jk_open_socket, try to connect socket = 3640
[Sun Nov 09 19:33:22 2003]  [jk_connect.c (132)]:
jk_open_socket, after connect ret = 0
[Sun Nov 09 19:33:22 2003]  [jk_connect.c (140)]:
jk_open_socket, set TCP_NODELAY to on
[Sun Nov 09 19:33:22 2003]  [jk_connect.c (148)]:
jk_open_socket, return, sd = 3640
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (588)]:
In jk_endpoint_t::ajp_connect_to_endpoint, connected
sd = 3640
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (612)]:
sending to ajp13 #331
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (853)]:
ajp_send_request 2: request body to send 0 - request
body to resend 0
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (698)]:
received from ajp13 #123
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (461)]:
ajp_unmarshal_response: status = 200
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (466)]:
ajp_unmarshal_response: Number of headers is = 2
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (506)]:
ajp_unmarshal_response: Header[0] [Set-Cookie] =
[JSESSIONID=3B0538CEFCC0B9D3553BE0892401B4C3; Path=/]
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (506)]:
ajp_unmarshal_response: Header[1] [Content-Type] =
[text/html;charset=ISO-8859-1]
[Sun Nov 09 19:33:22 2003]  [jk_isapi_plugin.c (428)]:
Into jk_ws_service_t::start_response
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (698)]:
received from ajp13 #8188
[Sun Nov 09 19:33:22 2003]  [jk_isapi_plugin.c (562)]:
Into jk_ws_service_t::write
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (698)]:
received from ajp13 #12
[Sun Nov 09 19:33:22 2003]  [jk_isapi_plugin.c (562)]:
Into jk_ws_service_t::write
[Sun Nov 09 19:33:22 2003]  [jk_ajp_common.c (698)]:
received from ajp13 #2399
[Sun Nov 09 19:33:22 2003]  [jk_isapi_plugin.c (562)]:
Into jk_ws_service_t::write
[Sun Nov 09 19:33:22

Tomcat standalone vs Tomcat with IIS

2003-11-07 Thread ashish . gadre
Hi there,

We have a web application(non-J2EE), which interacts with JTS layer that in
turn talks to the Database(SQL). Now this application was earlier hosted in
iPlanet which we now want to shift to Tomcat (Tomcat 4.1.27 with JDK
1.4.2).

What i am confused about is that would it be better to have a web-server
like IIS (as per clients req) interfacing Tomcat or can we do with a
standalone implementation of TOMCAT?? Our userbase would be close to 1600
with upto 300 concurrent users. The static content is not much and the web
interface is almost entirely comprised of JSPs.

I have read the archives available on the net regarding the advantages and
disadvantages of using APACHE and TOMCAT vs TOMCAT-standalone, but still i
wanted to get the information specific to IIS.
Any help is highly appreciated..

Thanks and regards,
Ashish Gadre
Polaris Software Labs
Tel : +91-022-28290019 Extension-1188


This e-Mail may contain proprietary and confidential information and is sent for the 
intended recipient(s) only. 
If by an addressing or transmission error this mail has been misdirected to you, you 
are requested to delete this mail immediately.
You are also hereby notified that any use, any form of reproduction, dissemination, 
copying, disclosure, modification,
distribution and/or publication of this e-mail message, contents or its attachment 
other than by its intended recipient/s is strictly prohibited.

Visit Us at http://www.polaris.co.in

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

Re: Tomcat standalone vs Tomcat with IIS

2003-11-07 Thread Bill Barker

[EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 Hi there,

 We have a web application(non-J2EE), which interacts with JTS layer that
in
 turn talks to the Database(SQL). Now this application was earlier hosted
in
 iPlanet which we now want to shift to Tomcat (Tomcat 4.1.27 with JDK
 1.4.2).

 What i am confused about is that would it be better to have a web-server
 like IIS (as per clients req) interfacing Tomcat or can we do with a
 standalone implementation of TOMCAT?? Our userbase would be close to 1600
 with upto 300 concurrent users. The static content is not much and the web
 interface is almost entirely comprised of JSPs.

 I have read the archives available on the net regarding the advantages and
 disadvantages of using APACHE and TOMCAT vs TOMCAT-standalone, but still i
 wanted to get the information specific to IIS.
 Any help is highly appreciated..


I don't use IIS myself, but the issues are much the same as they are for
Apache.  Since you've read them, I won't re-hash them here.  The only
IIS-specific thing I could mention is that the support for
isapi_redirector.dll bugs is close to that for mod_jk.

 Thanks and regards,
 Ashish Gadre
 Polaris Software Labs
 Tel : +91-022-28290019 Extension-1188









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



ssl tomcat through IIS

2003-10-29 Thread Meichun Li
I am new to this email list. This question might be in the arhive, but I 
couldn't find it. Could someone help me or tell me where I can find the 
resources. I have ssl applied in IIS, but I can't make it work with 
Tomcat 4. 

Thanks a lot!
Meichun

-- 




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



Tomcat 4.1, IIS : configuring IIS log output

2003-10-22 Thread Kent Boogaart
Hi all,

My first post here. I am trying to get IIS to output the details of requests
forwarded onto Tomcat rather than just the name of the ISAPI redirector DLL.
For example, if IIS receives a GET request http://host/folder/index.jsp; it
logs:

[date] [time] [c-ip] GET /jakarta/isapi_redirector2.dll - 200
Mozilla/4.0+(compatible;+MSIE+5.01;+Windows+NT+5.0)

I would prefer something like this in the log:

[date] [time] [c-ip] GET /folder/index.jsp - 200
Mozilla/4.0+(compatible;+MSIE+5.01;+Windows+NT+5.0)

This question has been asked before
(http://www.mail-archive.com/[EMAIL PROTECTED]/msg32127.html)
but I cannot find an answer anywhere. Can anyone point me in the right
direction?

Thanks,
Kent

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



Using tomcat with IIS

2003-10-21 Thread Langenfeld, Jens
Hello Mr Helpman,

for an amount of time, I try to use IIS to serve my JBOSS/TOMCAT servlet -context. It 
is part of a commercial ERP, wich usually works with apache. Even, without any 
dedicated webserver, only tomcat/jboss it works ok. I did everything as described in 
your good and understandable IIS-Howto and so the samples are served perfectly. But my 
context is totally ignored (404-Error). 

the uriworkermap.properties looks like that:

default.worker=ajp13

/admin=$(default.worker)
/admin/*=$(default.worker)
/examples=$(default.worker)
/examples/*=$(default.worker)

if I add lines like:
/ROOT=$(default.worker)
/ROOT/*=$(default.worker)

I get IIS iis_redirect.log entries like the following (1):



the display of the tomcat.bat run jkconf is  attached at the end of the mail (2).

I work with jboss 2.2.2 tomcat 3.3.1 IIS 5

If you need any further information, tell me. I' ll be grateful for any kind of help.

so long, Jens

(1)


[Tue Oct 21 15:20:32 2003]  [jk_uri_worker_map.c (351)]: Into 
jk_uri_worker_map_t::map_uri_to_worker
[Tue Oct 21 15:20:32 2003]  [jk_uri_worker_map.c (368)]: Attempting to map URI 
'/localhost/ROOT/login.html'
[Tue Oct 21 15:20:32 2003]  [jk_uri_worker_map.c (456)]: 
jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Oct 21 15:20:32 2003]  [jk_isapi_plugin.c (678)]: In HttpFilterProc test Default 
redirection of /ROOT/login.html
[Tue Oct 21 15:20:32 2003]  [jk_uri_worker_map.c (351)]: Into 
jk_uri_worker_map_t::map_uri_to_worker
[Tue Oct 21 15:20:32 2003]  [jk_uri_worker_map.c (368)]: Attempting to map URI 
'/ROOT/login.html'
[Tue Oct 21 15:20:32 2003]  [jk_uri_worker_map.c (391)]: 
jk_uri_worker_map_t::map_uri_to_worker, Found a context match ajp13 - /ROOT/
[Tue Oct 21 15:20:32 2003]  [jk_isapi_plugin.c (688)]: HttpFilterProc 
[/ROOT/login.html] is a servlet url - should redirect to ajp13
[Tue Oct 21 15:20:32 2003]  [jk_isapi_plugin.c (737)]: HttpFilterProc check if 
[/ROOT/login.html] is points to the web-inf directory
[Tue Oct 21 15:20:32 2003]  [jk_isapi_plugin.c (777)]: HttpExtensionProc started
[Tue Oct 21 15:20:32 2003]  [jk_worker.c (123)]: Into wc_get_worker_for_name ajp13
[Tue Oct 21 15:20:32 2003]  [jk_worker.c (127)]: wc_get_worker_for_name, done  found a 
worker
[Tue Oct 21 15:20:32 2003]  [jk_isapi_plugin.c (799)]: HttpExtensionProc got a worker 
for name ajp13
[Tue Oct 21 15:20:32 2003]  [jk_ajp13_worker.c (865)]: Into jk_worker_t::get_endpoint
[Tue Oct 21 15:20:32 2003]  [jk_ajp13_worker.c (775)]: Into jk_endpoint_t::service
[Tue Oct 21 15:20:32 2003]  [jk_ajp13.c (403)]: Into ajp13_marshal_into_msgb
[Tue Oct 21 15:20:32 2003]  [jk_ajp13.c (537)]: ajp13_marshal_into_msgb - Done
[Tue Oct 21 15:20:32 2003]  [jk_ajp13_worker.c (206)]: sending to ajp13 #515
[Tue Oct 21 15:20:32 2003]  [jk_ajp13_worker.c (645)]: send_request 2: request body to 
send 0 - request body to resend 0
[Tue Oct 21 15:20:32 2003]  [jk_ajp13_worker.c (258)]: received from ajp13 #45
[Tue Oct 21 15:20:32 2003]  [jk_ajp13.c (584)]: ajp13_unmarshal_response: status = 404
[Tue Oct 21 15:20:32 2003]  [jk_ajp13.c (591)]: ajp13_unmarshal_response: Number of 
headers is = 2
[Tue Oct 21 15:20:32 2003]  [jk_ajp13.c (634)]: ajp13_unmarshal_response: Header[0] 
[Content-Type] = [text/html]
[Tue Oct 21 15:20:32 2003]  [jk_ajp13.c (634)]: ajp13_unmarshal_response: Header[1] 
[Content-Length] = [176]
[Tue Oct 21 15:20:32 2003]  [jk_isapi_plugin.c (415)]: Into 
jk_ws_service_t::start_response
[Tue Oct 21 15:20:32 2003]  [jk_ajp13_worker.c (258)]: received from ajp13 #180
[Tue Oct 21 15:20:32 2003]  [jk_isapi_plugin.c (549)]: Into jk_ws_service_t::write
[Tue Oct 21 15:20:32 2003]  [jk_ajp13_worker.c (258)]: received from ajp13 #2
[Tue Oct 21 15:20:32 2003]  [jk_isapi_plugin.c (811)]: HttpExtensionProc service() 
returned OK
[Tue Oct 21 15:20:32 2003]  [jk_ajp13_worker.c (549)]: Into jk_endpoint_t::done
[Tue Oct 21 15:23:03 2003]  [jk_isapi_plugin.c (626)]: HttpFilterProc started
[Tue Oct 21 15:23:03 2003]  [jk_isapi_plugin.c (672)]: In HttpFilterProc Virtual Host 
redirection of /localhost/index.html
[Tue Oct 21 15:23:03 2003]  [jk_uri_worker_map.c (351)]: Into 
jk_uri_worker_map_t::map_uri_to_worker
[Tue Oct 21 15:23:03 2003]  [jk_uri_worker_map.c (368)]: Attempting to map URI 
'/localhost/index.html'
[Tue Oct 21 15:23:03 2003]  [jk_uri_worker_map.c (456)]: 
jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Oct 21 15:23:03 2003]  [jk_isapi_plugin.c (678)]: In HttpFilterProc test Default 
redirection of /index.html
[Tue Oct 21 15:23:03 2003]  [jk_uri_worker_map.c (351)]: Into 
jk_uri_worker_map_t::map_uri_to_worker
[Tue Oct 21 15:23:03 2003]  [jk_uri_worker_map.c (368)]: Attempting to map URI 
'/index.html'
[Tue Oct 21 15:23:03 2003]  [jk_uri_worker_map.c (456)]: 
jk_uri_worker_map_t::map_uri_to_worker, done without a match
[Tue Oct 21 15:23:03 2003]  [jk_isapi_plugin.c (728)]: HttpFilterProc [/index.html] is 
not a servlet url
[Tue Oct 21 15:23:03 2003]  [jk_isapi_plugin.c

  1   2   3   4   5   >