RE: Installing Tomcat and IIS

2006-12-20 Thread Simon Renshaw
Thanks again!

Today I will try to install version 1.2.

Maybe I'll get it to work.

My other sites are OWA and a few Wikis (uses PHP).

-Original Message-
From: LiuYan 刘研 [mailto:[EMAIL PROTECTED] 
Sent: 19 décembre, 2006 21:51
To: users@tomcat.apache.org
Subject: RE: Installing Tomcat and IIS


I normally need to access http://localhost:9191/luntbuild to see my
application. So in theory with that filter thing installed correctly I
should be able to access it by going to http://localhost/luntbuild?
Yes, that's our goal of integration.

But for IIS, /luntbuild does not exist. How does it figure out that it is a
Tomcat dir?
Have you configured URI mapping ?
I use jk1.2 (not jk2), I have a uriworkermap.properties file which saved
from my former tomcat installtion.
It seems that new version tomcat does not contained this file. Here is the
original content in uriworkermap.properties file:
# uriworkermap.properties - IIS
#
# This file provides sample mappings for example ajp13w
# worker defined in workermap.properties.minimal
# The general sytax for this file is:
# [URL]=[Worker name]

/servlet-examples/*=ajp13w

# Optionally filter out all .jpeg files inside that context
# For no mapping the url has to start with exclamation (!)

!/servlet-examples/*.jpeg=ajp13w


Maybe you need map the uri of your application (/luntbuild) to 'ajp13'. I
simply mapped all uri (/*) to 'ajp13',.
If you use jk2 which that article used, you can read the last paragraph of
http://www.iis-resources.com/modules/AMS/article.php?storyid=485page=2

Also, I'm running a few websites on this server. Does this have an impact
on the Tomcat/IIS integration?
Does your websites use only 1 script language ?
We have 3 websites on the same server, the main website only use ASP, the
other two websites only use JSP, they works ok now.
But when I try to installing 'awstats' which use PERL/CGI, I can't get PERL
and JSP running at the same time.


-- 
View this message in context: 
http://www.nabble.com/Installing-Tomcat-and-IIS-tf2821771.html#a7983783
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Installing Tomcat and IIS

2006-12-19 Thread LiuYan 刘研

I normally need to access http://localhost:9191/luntbuild to see my
application. So in theory with that filter thing installed correctly I
should be able to access it by going to http://localhost/luntbuild?
Yes, that's our goal of integration.

But for IIS, /luntbuild does not exist. How does it figure out that it is a
Tomcat dir?
Have you configured URI mapping ?
I use jk1.2 (not jk2), I have a uriworkermap.properties file which saved
from my former tomcat installtion.
It seems that new version tomcat does not contained this file. Here is the
original content in uriworkermap.properties file:
# uriworkermap.properties - IIS
#
# This file provides sample mappings for example ajp13w
# worker defined in workermap.properties.minimal
# The general sytax for this file is:
# [URL]=[Worker name]

/servlet-examples/*=ajp13w

# Optionally filter out all .jpeg files inside that context
# For no mapping the url has to start with exclamation (!)

!/servlet-examples/*.jpeg=ajp13w


Maybe you need map the uri of your application (/luntbuild) to 'ajp13'. I
simply mapped all uri (/*) to 'ajp13',.
If you use jk2 which that article used, you can read the last paragraph of
http://www.iis-resources.com/modules/AMS/article.php?storyid=485page=2

Also, I'm running a few websites on this server. Does this have an impact
on the Tomcat/IIS integration?
Does your websites use only 1 script language ?
We have 3 websites on the same server, the main website only use ASP, the
other two websites only use JSP, they works ok now.
But when I try to installing 'awstats' which use PERL/CGI, I can't get PERL
and JSP running at the same time.


-- 
View this message in context: 
http://www.nabble.com/Installing-Tomcat-and-IIS-tf2821771.html#a7983783
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Installing Tomcat and IIS

2006-12-18 Thread Simon Renshaw
I normally need to access http://localhost:9191/luntbuild to see my 
application. So in theory with that filter thing installed correctly I should 
be able to access it by going to http://localhost/luntbuild?

But for IIS, /luntbuild does not exist. How does it figure out that it is a 
Tomcat dir?

Also, I'm running a few websites on this server. Does this have an impact on 
the Tomcat/IIS integration?

-Original Message-
From: LiuYan 刘研 [mailto:[EMAIL PROTECTED] 
Sent: 17 décembre, 2006 21:12
To: users@tomcat.apache.org
Subject: RE: Installing Tomcat and IIS


Is the last two paragraphs of that article what you want?
1.start IIS, start Tomcat
2.browse http://localhost/servlets-examples/  or something else to test your
installation



Simon Renshaw-2 wrote:
 
 And once it is installed, how is it supposed to work? That part is missing
 from the article :)
 
 -Original Message-
 From: LiuYan 刘研 [mailto:[EMAIL PROTECTED] 
 Sent: 14 décembre, 2006 23:22
 To: users@tomcat.apache.org
 Subject: Re: Installing Tomcat and IIS
 
 
 That article is good, I've integrated Tomcat  IIS successfully by
 following
 that article step by step.
 
 Step 5,6,7 are important
 -
 Step 5. Create the Tomcat Application Pool
 Step 6. Create the Virtual Directory
 Step 7. Create and Enable the Tomcat Web Service Extension
 -
 I have ever omitted step 7, and I can't get it run. Step 7 is important
 for
 IIS6.
 
 
 Simon Renshaw-2 wrote:
 
 Hi,
 
 Since it looks like my problems with Tomcat are caused by the firewall
 we're using, it is time to try Plan B.
 
 Plan B would be to install Tomcat on the same server where IIS is
 located and have both of them use port 80. 
 
 I found a tutorial at
 http://www.iis-resources.com/modules/AMS/article.php?storyid=485page=0
 that does that. Unfortunately, it is using something that hasn't been
 maintained in a year and the article is kinda confusing. Look like it is
 missing some information.
 
 Does anybody have experience with that? Pointers would be appreciated.
 
 Thanks,
 Simon
 
 
 
 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 -- 
 View this message in context:
 http://www.nabble.com/Installing-Tomcat-and-IIS-tf2821771.html#a7886051
 Sent from the Tomcat - User mailing list archive at Nabble.com.
 
 
 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Installing-Tomcat-and-IIS-tf2821771.html#a7922672
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Installing Tomcat and IIS

2006-12-17 Thread LiuYan 刘研

Is the last two paragraphs of that article what you want?
1.start IIS, start Tomcat
2.browse http://localhost/servlets-examples/  or something else to test your
installation



Simon Renshaw-2 wrote:
 
 And once it is installed, how is it supposed to work? That part is missing
 from the article :)
 
 -Original Message-
 From: LiuYan 刘研 [mailto:[EMAIL PROTECTED] 
 Sent: 14 décembre, 2006 23:22
 To: users@tomcat.apache.org
 Subject: Re: Installing Tomcat and IIS
 
 
 That article is good, I've integrated Tomcat  IIS successfully by
 following
 that article step by step.
 
 Step 5,6,7 are important
 -
 Step 5. Create the Tomcat Application Pool
 Step 6. Create the Virtual Directory
 Step 7. Create and Enable the Tomcat Web Service Extension
 -
 I have ever omitted step 7, and I can't get it run. Step 7 is important
 for
 IIS6.
 
 
 Simon Renshaw-2 wrote:
 
 Hi,
 
 Since it looks like my problems with Tomcat are caused by the firewall
 we're using, it is time to try Plan B.
 
 Plan B would be to install Tomcat on the same server where IIS is
 located and have both of them use port 80. 
 
 I found a tutorial at
 http://www.iis-resources.com/modules/AMS/article.php?storyid=485page=0
 that does that. Unfortunately, it is using something that hasn't been
 maintained in a year and the article is kinda confusing. Look like it is
 missing some information.
 
 Does anybody have experience with that? Pointers would be appreciated.
 
 Thanks,
 Simon
 
 
 
 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 -- 
 View this message in context:
 http://www.nabble.com/Installing-Tomcat-and-IIS-tf2821771.html#a7886051
 Sent from the Tomcat - User mailing list archive at Nabble.com.
 
 
 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Installing-Tomcat-and-IIS-tf2821771.html#a7922672
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Installing Tomcat and IIS

2006-12-15 Thread Simon Renshaw
And once it is installed, how is it supposed to work? That part is missing from 
the article :)

-Original Message-
From: LiuYan 刘研 [mailto:[EMAIL PROTECTED] 
Sent: 14 décembre, 2006 23:22
To: users@tomcat.apache.org
Subject: Re: Installing Tomcat and IIS


That article is good, I've integrated Tomcat  IIS successfully by following
that article step by step.

Step 5,6,7 are important
-
Step 5. Create the Tomcat Application Pool
Step 6. Create the Virtual Directory
Step 7. Create and Enable the Tomcat Web Service Extension
-
I have ever omitted step 7, and I can't get it run. Step 7 is important for
IIS6.


Simon Renshaw-2 wrote:
 
 Hi,
 
 Since it looks like my problems with Tomcat are caused by the firewall
 we're using, it is time to try Plan B.
 
 Plan B would be to install Tomcat on the same server where IIS is
 located and have both of them use port 80. 
 
 I found a tutorial at
 http://www.iis-resources.com/modules/AMS/article.php?storyid=485page=0
 that does that. Unfortunately, it is using something that hasn't been
 maintained in a year and the article is kinda confusing. Look like it is
 missing some information.
 
 Does anybody have experience with that? Pointers would be appreciated.
 
 Thanks,
 Simon
 
 
 
 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Installing-Tomcat-and-IIS-tf2821771.html#a7886051
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Installing Tomcat and IIS

2006-12-14 Thread LiuYan 刘研

That article is good, I've integrated Tomcat  IIS successfully by following
that article step by step.

Step 5,6,7 are important
-
Step 5. Create the Tomcat Application Pool
Step 6. Create the Virtual Directory
Step 7. Create and Enable the Tomcat Web Service Extension
-
I have ever omitted step 7, and I can't get it run. Step 7 is important for
IIS6.


Simon Renshaw-2 wrote:
 
 Hi,
 
 Since it looks like my problems with Tomcat are caused by the firewall
 we're using, it is time to try Plan B.
 
 Plan B would be to install Tomcat on the same server where IIS is
 located and have both of them use port 80. 
 
 I found a tutorial at
 http://www.iis-resources.com/modules/AMS/article.php?storyid=485page=0
 that does that. Unfortunately, it is using something that hasn't been
 maintained in a year and the article is kinda confusing. Look like it is
 missing some information.
 
 Does anybody have experience with that? Pointers would be appreciated.
 
 Thanks,
 Simon
 
 
 
 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Installing-Tomcat-and-IIS-tf2821771.html#a7886051
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]