Re: Using IIS with Tomcat 4.1.29 (tomcat using port 1977)

2004-02-22 Thread George Hester
No it doesn't matter:

Use the redirector found here:

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

-- 
George Hester
__
Sara Murillo [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]
 Hi,
 
 I'm trying to get Tomcat and IIS working together.
 
 I have Tomcat using port 1977 because port 8080 is already in use by Oracle.
 
 I've attempted to get everything working (by following steps I've found 
 online).
 
 So far, no luck.
 
 http://localhost:1977.takes me to Tomcat's index page
 http://localhost...STILL gives me a page not found
 
 How can I get Tomcat working with IIS when Tomcat is using a port other than 
 8080?  Does it even matter that I'm not using port 8080?
 
 Any help would be greatly appreciated.
 
 Thanks,
 Sara
 
 _
 Store more e-mails with MSN Hotmail Extra Storage - 4 plans to choose from! 
 http://click.atdmt.com/AVE/go/onm00200362ave/direct/01/


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



Using IIS with Tomcat 4.1.29 (tomcat using port 1977)

2004-02-19 Thread Sara Murillo
Hi,

I'm trying to get Tomcat and IIS working together.

I have Tomcat using port 1977 because port 8080 is already in use by Oracle.

I've attempted to get everything working (by following steps I've found 
online).

So far, no luck.

http://localhost:1977.takes me to Tomcat's index page
http://localhost...STILL gives me a page not found
How can I get Tomcat working with IIS when Tomcat is using a port other than 
8080?  Does it even matter that I'm not using port 8080?

Any help would be greatly appreciated.

Thanks,
Sara
_
Store more e-mails with MSN Hotmail Extra Storage – 4 plans to choose from! 
http://click.atdmt.com/AVE/go/onm00200362ave/direct/01/

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


Re: Enabling SSL on specific URLs using IIS and Tomcat

2004-01-09 Thread Bill Barker
I'm going to take a stab-in-the-dark, and guess that you didn't change the
value of the 'redirectPort' on the Connector to be '443'.

cprs-develop [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
Hello All:

I am running Apache Tomcat 4.1.27, with IIS 5.0 on Windows 2000
Professional configured to serve the JSP pages using the ISAPI
redirector.

I have also configured SSL support using the Windows IIS management
console.

Currently JSP pages can be accessed using the
http://SomeHost/SomeDirectory or https://SomeHost/SomeDirectory URL.

I am trying to specify URLs that should be available only through SSL.
For this, I have added the security-constraint section in web.xml for
the relevant webapp directory.

web-app
. . . . .
/welcome-file-list

!-- All resources under the /SSL directory should only be available via
SSL --

security-constraint
web-resource-collection
web-resource-nameSSL/web-resource-name
url-pattern/SSL/*/url-pattern
/web-resource-collection
user-data-constraint
transport-guaranteeCONFIDENTIAL/transport-guarantee
/user-data-constraint
  /security-constraint

/web-app

Now, when I try to access the resources under the /SSL directory, (using
http or https) IIS gives me a Page not found error message.

However, if I disable IIS and run Tomcat independently, directory
security is enabled, and everything works fine, i.e., if I use
http://SomeHost/webapp/SSL, it automatically redirects to
https://SomeHost/webapp/SSL.

I found an earlier thread
(http://mikal.org/interests/java/tomcat/archive/view?mesg=44502) which
mentions that the ISAPI redirector may be to blame, but I am not sure if
it applies in this scenario.

Any help would be greatly appreciated.

Thanks,
Vic




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



Enabling SSL on specific URLs using IIS and Tomcat

2004-01-08 Thread cprs-develop
Hello All:

I am running Apache Tomcat 4.1.27, with IIS 5.0 on Windows 2000
Professional configured to serve the JSP pages using the ISAPI
redirector. 

I have also configured SSL support using the Windows IIS management
console. 

Currently JSP pages can be accessed using the
http://SomeHost/SomeDirectory or https://SomeHost/SomeDirectory URL.

I am trying to specify URLs that should be available only through SSL.
For this, I have added the security-constraint section in web.xml for
the relevant webapp directory.

web-app
. . . . .
/welcome-file-list

!-- All resources under the /SSL directory should only be available via
SSL --

security-constraint
web-resource-collection
web-resource-nameSSL/web-resource-name
url-pattern/SSL/*/url-pattern
/web-resource-collection
user-data-constraint
transport-guaranteeCONFIDENTIAL/transport-guarantee
/user-data-constraint
  /security-constraint
  
/web-app

Now, when I try to access the resources under the /SSL directory, (using
http or https) IIS gives me a Page not found error message. 

However, if I disable IIS and run Tomcat independently, directory
security is enabled, and everything works fine, i.e., if I use
http://SomeHost/webapp/SSL, it automatically redirects to
https://SomeHost/webapp/SSL.

I found an earlier thread
(http://mikal.org/interests/java/tomcat/archive/view?mesg=44502) which
mentions that the ISAPI redirector may be to blame, but I am not sure if
it applies in this scenario.

Any help would be greatly appreciated.

Thanks,
Vic




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



RE: Enabling SSL on specific URLs using IIS and Tomcat

2004-01-08 Thread Shapira, Yoav

Howdy,
Almost certainly the ISAPI Redirector's fault, since as you mention
Tomcat works fine by itself.  What if you only allow https access to
secure URLs?

Yoav Shapira
Millennium ChemInformatics


-Original Message-
From: cprs-develop [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 08, 2004 2:33 PM
To: [EMAIL PROTECTED]
Subject: Enabling SSL on specific URLs using IIS and Tomcat
Importance: High

Hello All:

I am running Apache Tomcat 4.1.27, with IIS 5.0 on Windows 2000
Professional configured to serve the JSP pages using the ISAPI
redirector.

I have also configured SSL support using the Windows IIS management
console.

Currently JSP pages can be accessed using the
http://SomeHost/SomeDirectory or https://SomeHost/SomeDirectory URL.

I am trying to specify URLs that should be available only through SSL.
For this, I have added the security-constraint section in web.xml for
the relevant webapp directory.

web-app
. . . . .
/welcome-file-list

!-- All resources under the /SSL directory should only be available
via
SSL --

security-constraint
web-resource-collection
   web-resource-nameSSL/web-resource-name
   url-pattern/SSL/*/url-pattern
/web-resource-collection
user-data-constraint
   transport-guaranteeCONFIDENTIAL/transport-guarantee
/user-data-constraint
  /security-constraint

/web-app

Now, when I try to access the resources under the /SSL directory,
(using
http or https) IIS gives me a Page not found error message.

However, if I disable IIS and run Tomcat independently, directory
security is enabled, and everything works fine, i.e., if I use
http://SomeHost/webapp/SSL, it automatically redirects to
https://SomeHost/webapp/SSL.

I found an earlier thread
(http://mikal.org/interests/java/tomcat/archive/view?mesg=44502) which
mentions that the ISAPI redirector may be to blame, but I am not sure
if
it applies in this scenario.

Any help would be greatly appreciated.

Thanks,
Vic




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




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


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



RE: Enabling SSL on specific URLs using IIS and Tomcat

2004-01-08 Thread cprs-develop
Hi:

That's what I have been trying to do. If you can recommend any alternate
method to allow only https access to secure URLs, I would greatly
appreciate it.

Thanks,
Vic


-Original Message-
From: Shapira, Yoav [mailto:[EMAIL PROTECTED] 
Sent: Thursday, January 08, 2004 2:38 PM
To: Tomcat Users List
Subject: RE: Enabling SSL on specific URLs using IIS and Tomcat



Howdy,
Almost certainly the ISAPI Redirector's fault, since as you mention
Tomcat works fine by itself.  What if you only allow https access to
secure URLs?

Yoav Shapira
Millennium ChemInformatics


-Original Message-
From: cprs-develop [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 08, 2004 2:33 PM
To: [EMAIL PROTECTED]
Subject: Enabling SSL on specific URLs using IIS and Tomcat
Importance: High

Hello All:

I am running Apache Tomcat 4.1.27, with IIS 5.0 on Windows 2000 
Professional configured to serve the JSP pages using the ISAPI 
redirector.

I have also configured SSL support using the Windows IIS management 
console.

Currently JSP pages can be accessed using the 
http://SomeHost/SomeDirectory or https://SomeHost/SomeDirectory URL.

I am trying to specify URLs that should be available only through SSL. 
For this, I have added the security-constraint section in web.xml for

the relevant webapp directory.

web-app
. . . . .
/welcome-file-list

!-- All resources under the /SSL directory should only be available
via
SSL --

security-constraint
web-resource-collection
   web-resource-nameSSL/web-resource-name
   url-pattern/SSL/*/url-pattern
/web-resource-collection
user-data-constraint
   transport-guaranteeCONFIDENTIAL/transport-guarantee
/user-data-constraint
  /security-constraint

/web-app

Now, when I try to access the resources under the /SSL directory,
(using
http or https) IIS gives me a Page not found error message.

However, if I disable IIS and run Tomcat independently, directory 
security is enabled, and everything works fine, i.e., if I use 
http://SomeHost/webapp/SSL, it automatically redirects to 
https://SomeHost/webapp/SSL.

I found an earlier thread
(http://mikal.org/interests/java/tomcat/archive/view?mesg=44502) which 
mentions that the ISAPI redirector may be to blame, but I am not sure
if
it applies in this scenario.

Any help would be greatly appreciated.

Thanks,
Vic




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




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


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





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



RE: Enabling SSL on specific URLs using IIS and Tomcat

2004-01-08 Thread Oscar Carrillo
This is one of the reasons why I like to use Apache in front of Tomcat. 
It's pretty easy to do with Apache. Not to mention IIS is a bear to get to 
work under Linux ;) I would imagine there is a similar config for IIS 
though.

Oscar

On Thu, 8 Jan 2004, cprs-develop wrote:

 Hi:
 
 That's what I have been trying to do. If you can recommend any alternate
 method to allow only https access to secure URLs, I would greatly
 appreciate it.
 
 Thanks,
 Vic
 
 
 -Original Message-
 From: Shapira, Yoav [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, January 08, 2004 2:38 PM
 To: Tomcat Users List
 Subject: RE: Enabling SSL on specific URLs using IIS and Tomcat
 
 
 
 Howdy,
 Almost certainly the ISAPI Redirector's fault, since as you mention
 Tomcat works fine by itself.  What if you only allow https access to
 secure URLs?
 
 Yoav Shapira
 Millennium ChemInformatics
 
 
 -Original Message-
 From: cprs-develop [mailto:[EMAIL PROTECTED]
 Sent: Thursday, January 08, 2004 2:33 PM
 To: [EMAIL PROTECTED]
 Subject: Enabling SSL on specific URLs using IIS and Tomcat
 Importance: High
 
 Hello All:
 
 I am running Apache Tomcat 4.1.27, with IIS 5.0 on Windows 2000 
 Professional configured to serve the JSP pages using the ISAPI 
 redirector.
 
 I have also configured SSL support using the Windows IIS management 
 console.
 
 Currently JSP pages can be accessed using the 
 http://SomeHost/SomeDirectory or https://SomeHost/SomeDirectory URL.
 
 I am trying to specify URLs that should be available only through SSL. 
 For this, I have added the security-constraint section in web.xml for
 
 the relevant webapp directory.
 
 web-app
 . . . . .
 /welcome-file-list
 
 !-- All resources under the /SSL directory should only be available
 via
 SSL --
 
 security-constraint
 web-resource-collection
  web-resource-nameSSL/web-resource-name
  url-pattern/SSL/*/url-pattern
 /web-resource-collection
 user-data-constraint
  transport-guaranteeCONFIDENTIAL/transport-guarantee
 /user-data-constraint
   /security-constraint
 
 /web-app
 
 Now, when I try to access the resources under the /SSL directory,
 (using
 http or https) IIS gives me a Page not found error message.
 
 However, if I disable IIS and run Tomcat independently, directory 
 security is enabled, and everything works fine, i.e., if I use 
 http://SomeHost/webapp/SSL, it automatically redirects to 
 https://SomeHost/webapp/SSL.
 
 I found an earlier thread
 (http://mikal.org/interests/java/tomcat/archive/view?mesg=44502) which 
 mentions that the ISAPI redirector may be to blame, but I am not sure
 if
 it applies in this scenario.
 
 Any help would be greatly appreciated.
 
 Thanks,
 Vic
 
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 This e-mail, including any attachments, is a confidential business
 communication, and may contain information that is confidential,
 proprietary and/or privileged.  This e-mail is intended only for the
 individual(s) to whom it is addressed, and may not be saved, copied,
 printed, disclosed or used by anyone else.  If you are not the(an)
 intended recipient, please immediately delete this e-mail from your
 computer system and notify the sender.  Thank you.
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 
 -
 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]



Using IIS with Tomcat

2002-12-02 Thread Watson, Nicholas
I have two COTS applications. One that requires the use of IIS and another
that requires the use of Tomcat. I want to run both applications with their
corrisponding web servers on the same box. I have turned off pooling in IIS.
What configuration changes need to be made in tomcat in order to run the two
web servers at the same time. 

Thanks,
Nicholas W. Watson
Software Engineer
Concurrent Technologies Corporation
Phone: (814) 269-2653
Email: [EMAIL PROTECTED]


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




RE: Using IIS with Tomcat

2002-12-02 Thread Durham David Cntr 805CSS/SCBE
You don't need to make any changes to either server to get them running on the same 
machine.  However, if you want to run them both out of port 80 then you need to look 
at configuring the Isapi redirector, which you can read all about in the docs under 
ajp connector (scroll down to the IIS section).

 -Original Message-
 From: Watson, Nicholas [mailto:[EMAIL PROTECTED]]
 Sent: Monday, December 02, 2002 2:14 PM
 To: '[EMAIL PROTECTED]'
 Subject: Using IIS with Tomcat
 
 
 I have two COTS applications. One that requires the use of 
 IIS and another
 that requires the use of Tomcat. I want to run both 
 applications with their
 corrisponding web servers on the same box. I have turned off 
 pooling in IIS.
 What configuration changes need to be made in tomcat in order 
 to run the two
 web servers at the same time. 
 
 Thanks,
 Nicholas W. Watson
 Software Engineer
 Concurrent Technologies Corporation
 Phone: (814) 269-2653
 Email: [EMAIL PROTECTED]
 
 
 --
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]
 
 

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




Using IIS and Tomcat without integration.

2002-09-09 Thread Richard Elsberry

Hello all,

A general integration question. I've got an asp application that I am 
attempting to merge with a jsp application and have not had any luck 
integrating the two. (two full days perusing the tomcat archives)

This got me to thinking. Is it really necessary that they be integrated. 
The two apps can run independent of one another so why can't I just 
create a link from within the asp program (where users login) to the 
tomcat application?

Are there sercurity or session issues that I'm not anticipating? There 
won't be a lot of traffic to the site but data security is essential.

Any thoughts would be greatly appreciated.

Thanks, Richard



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




Re: Using IIS and Tomcat without integration.

2002-09-09 Thread Mark Eggers

Hmmm,

I suppose you could create a sessionid or cookie with
the asp code and pass that to tomcat.  You would then
have your tomcat instance listening on port 8443 (or
change it to 443 if you're not running something there
already) and do the link.

Getting Tomcat integrated with IIS is not terribly
complicated, but I have found it to be not as easily
accomplished as the Tomcat/Apache integration (go
figure).

To start, you'll need the to get the connector
isapi_redirect.dll from Tomcat 3.3 or later in order
to get this working.  You can find the
isapi_redirect.dll at the following location.


http://jakarta.apache.org/builds/jakarta-tomcat/release/v3.3.1/bin/win32/i386/

Then, you'll get to follow:

http://jakarta.apache.org/tomcat/tomcat-3.3-doc/tomcat-iis-howto.html

Unfortunately, Tomcat 4.0.x does not have the
automatic registry settings generation that Tomcat 3.3
has.  You'll have to generate them by hand. 
Fortunately the documentation lists the entries
necessary for the registry, along with examples and
default settings (where appropriate).

Basically, where the Tomcat 3.3.x documentation tells
you to generate the files using jkconf parameter to
start Tomcat, you'll get to do those by hand.

It's not pretty, but it works.  I'm currently running
Tomcat 4.04, Cocoon 2.1-dev, and Jetspeed through IIS
on a Windows/2000 Professional machine with
jdk1.3.1_04.

If you need specific help covering a part of the
documentation or installation, I'll do my best via
email.

/mde/

just my two cents . . . .

__
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes
http://finance.yahoo.com

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




Using IIS with Tomcat

2002-01-25 Thread htay_san

Hi,
I'd like to ask you a question about Tomcat Web
Server.I used  tomcat to run a jsp pages using the
(http://localhost:8080/myFolder)address ,but now I
want to use school web server
address(http://proj6.ict.np.edu.sg/myFolder) .
So how can I use the school address?

Thanks a lot,
Htay San

__
Do You Yahoo!?
Great stuff seeking new owners in Yahoo! Auctions! 
http://auctions.yahoo.com

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Using IIS with Tomcat

2002-01-25 Thread Hessing Ingo


Hi,

see this tutorial on integrating IIS and Tomcat 4:

http://www.vacodi.com/howto/tomcat/iisnt/index.html

There is also a howto for the Tomcat 3.2.X version:

http://www.verysimple.com/scripts/support_tc_iis.html

bestWISHES

Ingo Hessing

 -Ursprüngliche Nachricht-
 Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Gesendet: Freitag, 25. Januar 2002 06:15
 An: [EMAIL PROTECTED]
 Betreff: Using IIS with Tomcat
 
 
 Hi,
 I'd like to ask you a question about Tomcat Web
 Server.I used  tomcat to run a jsp pages using the
 (http://localhost:8080/myFolder)address ,but now I
 want to use school web server
 address(http://proj6.ict.np.edu.sg/myFolder) .
 So how can I use the school address?
 
 Thanks a lot,
 Htay San
 
 __
 Do You Yahoo!?
 Great stuff seeking new owners in Yahoo! Auctions! 
 http://auctions.yahoo.com
 
 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]
 
 

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




I'm getting errors when I run JSP's using IIS and TOMCAT

2001-07-17 Thread John Sullivan
Title: I'm getting errors when I run JSP's using IIS and TOMCAT





Hi,
 I'm having problems getting JSP's to run with TOMCAT and IIS. I've followed the instructions at Jakarta.apache.org and I've also followed the instructions at www.verysimple.com/scripts/support_tc_iis.html

Everything appears ok. When I start all the services, Tomcat runs ok, IIS starts and the redirector appears with a green arrow. When the services first start these lines appear in the isapi.log file:

 [jk_uri_worker_map.c (335)]: jk_uri_worker_map_t::uri_worker_map_close, NULL parameter
 [jk_uri_worker_map.c (185)]: In jk_uri_worker_map_t::uri_worker_map_free, NULL parameters


I'm assuming that that is OK. When I call a JSP I then get an IE page saying


The Page is unavailable. The page you are looking for is currently unavailable. 
The Web site might be experiencing technical difficulties, or you may need 
to adjust your browser settings.


and the following lines in the isapi.log: 


[jk_connect.c (143)]: jk_open_socket, connect() failed errno = 61
[jk_ajp12_worker.c (152)]: In ::service, Error sd = -1
[jk_isapi_plugin.c (554)]: HttpExtensjk_endpoint_tionProc error, service() failed
[jk_connect.c (143)]: jk_open_socket, connect() failed errno = 61
[jk_ajp12_worker.c (152)]: In jk_endpoint_t::service, Error sd = -1
[jk_isapi_plugin.c (554)]: HttpExtensionProc error, service() failed


I'm assuming that these lines indicate an error.


Does anyome have an idea whats going on here?


Take Care,


John Sullivan





RE: I'm getting errors when I run JSP's using IIS and TOMCAT

2001-07-17 Thread Robert Finneran
Title: I'm getting errors when I run JSP's using IIS and TOMCAT



Things 
to check:

Be 
careful that your registry setting are pointing to the right place for the 
workers.properties and uriworkermap.properties files.
Look 
under HKEY_LOCALMACHINE\SOFTWARE\Apache Software Foundation\Jakarta Isapi 
Redirector\1.0 for these settings.


  -Original Message-From: John Sullivan 
  [mailto:[EMAIL PROTECTED]]Sent: Tuesday, July 17, 2001 4:45 
  PMTo: [EMAIL PROTECTED]Subject: I'm getting 
  errors when I run JSP's using IIS and TOMCAT
  Hi,  
  I'm having problems getting JSP's to run with TOMCAT and 
  IIS. I've followed the instructions at Jakarta.apache.org and I've also 
  followed the instructions at 
  www.verysimple.com/scripts/support_tc_iis.html
  Everything appears ok. When I start all the services, Tomcat 
  runs ok, IIS starts and the redirector appears with a green arrow. When 
  the services first start these lines appear in the isapi.log file:
   [jk_uri_worker_map.c (335)]: jk_uri_worker_map_t::uri_worker_map_close, 
  NULL parameter  [jk_uri_worker_map.c (185)]: In 
  jk_uri_worker_map_t::uri_worker_map_free, NULL parameters 
  I'm assuming that that is OK. When I call a JSP I then 
  get an IE page saying 
  "The Page is unavailable. The page you are looking for is 
  currently unavailable. The Web site might be 
  experiencing technical difficulties, or you may need to adjust your browser settings." 
  and the following lines in the isapi.log: 
  [jk_connect.c (143)]: jk_open_socket, connect() failed errno = 
  61 [jk_ajp12_worker.c (152)]: In ::service, Error sd = 
  -1 [jk_isapi_plugin.c (554)]: 
  HttpExtensjk_endpoint_tionProc error, service() failed [jk_connect.c (143)]: jk_open_socket, connect() failed errno = 
  61 [jk_ajp12_worker.c (152)]: In 
  jk_endpoint_t::service, Error sd = -1 [jk_isapi_plugin.c (554)]: HttpExtensionProc error, service() 
  failed 
  I'm assuming that these lines indicate an error. 
  Does anyome have an idea whats going on here? 
  Take Care, 
  John Sullivan 


RE: I'm getting errors when I run JSP's using IIS and TOMCAT

2001-07-17 Thread John Sullivan
Title: RE: I'm getting errors when I run JSP's using IIS and TOMCAT





I've checked the registry settings, All the registry Keys appear fine. The worker_file string points to the workers.properties and the worker_mount_file points to the uriworkermap.properties file.

Thanks 


-Original Message-
From: Robert Finneran [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 18 July 2001 9:57 AM
To: [EMAIL PROTECTED]
Subject: RE: I'm getting errors when I run JSP's using IIS and TOMCAT



Things to check:


Be careful that your registry setting are pointing to the right place for the workers.properties and uriworkermap.properties files.

Look under HKEY_LOCALMACHINE\SOFTWARE\Apache Software Foundation\Jakarta Isapi Redirector\1.0 for these settings.


-Original Message-
From: John Sullivan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 17, 2001 4:45 PM
To: [EMAIL PROTECTED]
Subject: I'm getting errors when I run JSP's using IIS and TOMCAT



Hi, 
 I'm having problems getting JSP's to run with TOMCAT and IIS. I've followed the instructions at Jakarta.apache.org and I've also followed the instructions at www.verysimple.com/scripts/support_tc_iis.html

Everything appears ok. When I start all the services, Tomcat runs ok, IIS starts and the redirector appears with a green arrow. When the services first start these lines appear in the isapi.log file:

 [jk_uri_worker_map.c (335)]: jk_uri_worker_map_t::uri_worker_map_close, NULL parameter 
 [jk_uri_worker_map.c (185)]: In jk_uri_worker_map_t::uri_worker_map_free, NULL parameters 
I'm assuming that that is OK. When I call a JSP I then get an IE page saying 
The Page is unavailable. The page you are looking for is currently unavailable. 
The Web site might be experiencing technical difficulties, or you may need 
to adjust your browser settings. 
and the following lines in the isapi.log: 
[jk_connect.c (143)]: jk_open_socket, connect() failed errno = 61 
[jk_ajp12_worker.c (152)]: In ::service, Error sd = -1 
[jk_isapi_plugin.c (554)]: HttpExtensjk_endpoint_tionProc error, service() failed 
[jk_connect.c (143)]: jk_open_socket, connect() failed errno = 61 
[jk_ajp12_worker.c (152)]: In jk_endpoint_t::service, Error sd = -1 
[jk_isapi_plugin.c (554)]: HttpExtensionProc error, service() failed 
I'm assuming that these lines indicate an error. 
Does anyome have an idea whats going on here? 
Take Care, 
John Sullivan 





RE: I'm getting errors when I run JSP's using IIS and TOMCAT

2001-07-17 Thread Robert Finneran
Title: RE: I'm getting errors when I run JSP's using IIS and TOMCAT



Did 
you set these in workers.properties? 

workers.tomcat_home=c:\Tomcat-3.2.1\tomcat
workers.java_home=c:\jdk1.3.1

## You should configure your 
environment slash... ps=\ on NT and / on UNIX# and maybe something different 
elsewhere.#ps=\

  -Original Message-From: John Sullivan 
  [mailto:[EMAIL PROTECTED]]Sent: Tuesday, July 17, 2001 5:04 
  PMTo: '[EMAIL PROTECTED]'Subject: RE: I'm 
  getting errors when I run JSP's using IIS and TOMCAT
  I've checked the registry settings, All the registry 
  Keys appear fine. The worker_file string points to the 
  workers.properties and the worker_mount_file points to the 
  uriworkermap.properties file.
  Thanks 
  -Original Message- From: 
  Robert Finneran [mailto:[EMAIL PROTECTED]] 
  Sent: Wednesday, 18 July 2001 9:57 AM To: [EMAIL PROTECTED] Subject: RE: 
  I'm getting errors when I run JSP's using IIS and TOMCAT 
  Things to check: 
  Be careful that your registry setting are pointing to the 
  right place for the workers.properties and uriworkermap.properties 
  files.
  Look under HKEY_LOCALMACHINE\SOFTWARE\Apache Software 
  Foundation\Jakarta Isapi Redirector\1.0 for these settings. 
  -Original Message- From: John 
  Sullivan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 17, 2001 4:45 PM To: 
  [EMAIL PROTECTED] Subject: I'm getting 
  errors when I run JSP's using IIS and TOMCAT 
  Hi,  I'm having problems getting 
  JSP's to run with TOMCAT and IIS. I've followed the instructions at 
  Jakarta.apache.org and I've also followed the instructions at 
  www.verysimple.com/scripts/support_tc_iis.html
  Everything appears ok. When I start all the services, Tomcat 
  runs ok, IIS starts and the redirector appears with a green arrow. When 
  the services first start these lines appear in the isapi.log file:
   
  [jk_uri_worker_map.c (335)]: jk_uri_worker_map_t::uri_worker_map_close, NULL 
  parameter  
  [jk_uri_worker_map.c (185)]: In jk_uri_worker_map_t::uri_worker_map_free, NULL 
  parameters I'm assuming that that is OK. When I 
  call a JSP I then get an IE page saying "The Page is 
  unavailable. The page you are looking for is currently unavailable. 
  The Web site might be experiencing technical 
  difficulties, or you may need to adjust your browser 
  settings." and the following lines in the isapi.log: 
  [jk_connect.c (143)]: jk_open_socket, connect() failed 
  errno = 61 [jk_ajp12_worker.c (152)]: In ::service, 
  Error sd = -1 [jk_isapi_plugin.c (554)]: 
  HttpExtensjk_endpoint_tionProc error, service() failed [jk_connect.c (143)]: jk_open_socket, connect() failed errno = 61 
  [jk_ajp12_worker.c (152)]: In jk_endpoint_t::service, 
  Error sd = -1 [jk_isapi_plugin.c (554)]: 
  HttpExtensionProc error, service() failed I'm assuming 
  that these lines indicate an error. Does anyome have 
  an idea whats going on here? Take Care, 
  John Sullivan 


RE: I'm getting errors when I run JSP's using IIS and TOMCAT

2001-07-17 Thread John Sullivan
Title: RE: I'm getting errors when I run JSP's using IIS and TOMCAT





Bill,
 Thanks, I found an errors logged in the JVM.log file which notified me of a problem in the server.xml. Once this was fixed the logs stopped appearing in the isapi.log file. 

Saying all of that when I try to display a *.jsp page I now get HTTP 404 page not found error. 
Any Ideas



-Original Message-
From: Bruyn, Bill [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 18 July 2001 10:05 AM
To: '[EMAIL PROTECTED]'
Subject: FW: I'm getting errors when I run JSP's using IIS and TOMCAT



It seems more likely that Tomcat isn't running on the port you have your
worker pointed at (e.g., localhost:8007). You might consider posting the
entire contents of your log...


-Original Message-
From: Robert Finneran [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 17, 2001 4:57 PM
To: [EMAIL PROTECTED]
Subject: RE: I'm getting errors when I run JSP's using IIS and TOMCAT



Things to check:

Be careful that your registry setting are pointing to the right place for
the workers.properties and uriworkermap.properties files.
Look under HKEY_LOCALMACHINE\SOFTWARE\Apache Software Foundation\Jakarta
Isapi Redirector\1.0 for these settings.



-Original Message-
From: John Sullivan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 17, 2001 4:45 PM
To: [EMAIL PROTECTED]
Subject: I'm getting errors when I run JSP's using IIS and TOMCAT




Hi, 
 I'm having problems getting JSP's to run with TOMCAT and IIS. I've
followed the instructions at Jakarta.apache.org and I've also followed the
instructions at www.verysimple.com/scripts/support_tc_iis.html


Everything appears ok. When I start all the services, Tomcat runs ok, IIS
starts and the redirector appears with a green arrow. When the services
first start these lines appear in the isapi.log file:


 [jk_uri_worker_map.c (335)]:
jk_uri_worker_map_t::uri_worker_map_close, NULL parameter 
 [jk_uri_worker_map.c (185)]: In
jk_uri_worker_map_t::uri_worker_map_free, NULL parameters 


I'm assuming that that is OK. When I call a JSP I then get an IE page
saying 


The Page is unavailable. The page you are looking for is currently
unavailable. 
The Web site might be experiencing technical difficulties, or you may need 
to adjust your browser settings. 


and the following lines in the isapi.log: 


[jk_connect.c (143)]: jk_open_socket, connect() failed errno = 61 
[jk_ajp12_worker.c (152)]: In ::service, Error sd = -1 
[jk_isapi_plugin.c (554)]: HttpExtensjk_endpoint_tionProc error, service()
failed 
[jk_connect.c (143)]: jk_open_socket, connect() failed errno = 61 
[jk_ajp12_worker.c (152)]: In jk_endpoint_t::service, Error sd = -1 
[jk_isapi_plugin.c (554)]: HttpExtensionProc error, service() failed 


I'm assuming that these lines indicate an error. 


Does anyome have an idea whats going on here? 


Take Care, 


John Sullivan 





RE: I'm getting errors when I run JSP's using IIS and TOMCAT

2001-07-17 Thread John Sullivan
Title: RE: I'm getting errors when I run JSP's using IIS and TOMCAT





Yes, Thanks 
-Original Message-
From: Robert Finneran [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 18 July 2001 10:15 AM
To: [EMAIL PROTECTED]
Subject: RE: I'm getting errors when I run JSP's using IIS and TOMCAT



Did you set these in workers.properties? 


workers.tomcat_home=c:\Tomcat-3.2.1\tomcat
workers.java_home=c:\jdk1.3.1


#
# You should configure your environment slash... ps=\ on NT and / on UNIX
# and maybe something different elsewhere.
#
ps=\


-Original Message-
From: John Sullivan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 17, 2001 5:04 PM
To: '[EMAIL PROTECTED]'
Subject: RE: I'm getting errors when I run JSP's using IIS and TOMCAT



I've checked the registry settings, All the registry Keys appear fine. The worker_file string points to the workers.properties and the worker_mount_file points to the uriworkermap.properties file.

Thanks 
-Original Message- 
From: Robert Finneran [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, 18 July 2001 9:57 AM 
To: [EMAIL PROTECTED] 
Subject: RE: I'm getting errors when I run JSP's using IIS and TOMCAT 



Things to check: 
Be careful that your registry setting are pointing to the right place for the workers.properties and uriworkermap.properties files.

Look under HKEY_LOCALMACHINE\SOFTWARE\Apache Software Foundation\Jakarta Isapi Redirector\1.0 for these settings. 
-Original Message- 
From: John Sullivan [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 17, 2001 4:45 PM 
To: [EMAIL PROTECTED] 
Subject: I'm getting errors when I run JSP's using IIS and TOMCAT 



Hi, 
 I'm having problems getting JSP's to run with TOMCAT and IIS. I've followed the instructions at Jakarta.apache.org and I've also followed the instructions at www.verysimple.com/scripts/support_tc_iis.html

Everything appears ok. When I start all the services, Tomcat runs ok, IIS starts and the redirector appears with a green arrow. When the services first start these lines appear in the isapi.log file:

 [jk_uri_worker_map.c (335)]: jk_uri_worker_map_t::uri_worker_map_close, NULL parameter 
 [jk_uri_worker_map.c (185)]: In jk_uri_worker_map_t::uri_worker_map_free, NULL parameters 
I'm assuming that that is OK. When I call a JSP I then get an IE page saying 
The Page is unavailable. The page you are looking for is currently unavailable. 
The Web site might be experiencing technical difficulties, or you may need 
to adjust your browser settings. 
and the following lines in the isapi.log: 
[jk_connect.c (143)]: jk_open_socket, connect() failed errno = 61 
[jk_ajp12_worker.c (152)]: In ::service, Error sd = -1 
[jk_isapi_plugin.c (554)]: HttpExtensjk_endpoint_tionProc error, service() failed 
[jk_connect.c (143)]: jk_open_socket, connect() failed errno = 61 
[jk_ajp12_worker.c (152)]: In jk_endpoint_t::service, Error sd = -1 
[jk_isapi_plugin.c (554)]: HttpExtensionProc error, service() failed 
I'm assuming that these lines indicate an error. 
Does anyome have an idea whats going on here? 
Take Care, 
John Sullivan 





Tip: Avoiding A 404 With *.jsp In Virtual Directories Using IIS 5 Tomcat On Windows 2000

2001-07-10 Thread Russell, Steve

Hi;

I just spent some more time hair pulling for something I'm sure other people
will experience.  I am posting my solution here so that it will end up in
the archives.

I have IIS 5, Tomcat 3.2, jdk 1.3.1 working together on windows 2000.

I like to keep all of my work in C:\Projectsmany good reasons to do
this.

I set up C:\Projects as a virtual directory in IIS.

I kept getting a 404 whenever I tried to access my test.jsp page.

I solved the problem by adding this line to server.xml in my Tomcat\conf
dir, and then rebooting tomcat:

Context path=/Projects docBase=C:/InetPub/wwwroot/Projects
debug=0 reloadable=true/ 

Good Luck

Steve




Steve Russell

Web Developer III
ValueOptions - Lifescape
703-205-6589
[EMAIL PROTECTED]


**
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. If you have received this email in error please notify
the sender by email, delete and destroy this message and its 
attachments.


**