RE: Multiserver instances and web server configuration

2006-09-06 Thread Snake
The easy way
Use the WSCONFIG tool once to create a new connector for your new instance
for any old site in IIS.
Now edit the properties of that site and look at the wildcard ISAPI filter,
you will note it is different from the one on the default site.
The default one will be

C:\JRun4\lib\wsconfig\1\jrun_iis6_wildcard.dll

The new one will be

C::\JRun4\lib\wsconfig\2\jrun_iis6_wildcard.dll

Every time you use the wsconfig, it creates a new connector, which can get
confusing as you don't need a new one each time, you only need one for each
instance otherwise you will forget which connector is for which instance, so
I just use the wsconfig once for each instance to create the required
connector, and then assign it to sites by hand.

Now for any site or folder, just the wildcard mapping to use that connector.

You may find my blog entry on the topic useful.

http://russ.michaels.me.uk/index.cfm/2006/7/8/Creating-new-secure-instances-
with-ColdFusion-MX7-multi-server

--
Russ

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED] 
Sent: 07 September 2006 00:57
To: CF-Talk
Subject: Re: Multiserver instances and web server configuration

Snake wrote:
> 
> All you have to do is select any folder in IIS, edit its properties 
> and change the ISAPI wildcard filter to use the connector for the 
> instance you want.

Okay well how do you do that?  Do I have to browse for a specific DLL
somewhere?

Can you give a path example?

Rick



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252323
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Multiserver instances and web server configuration

2006-09-06 Thread Rick Root
Snake wrote:
> 
> All you have to do is select any folder in IIS, edit its properties and
> change the ISAPI wildcard filter to use the connector for the instance you
> want.

Okay well how do you do that?  Do I have to browse for a specific DLL 
somewhere?

Can you give a path example?

Rick

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252308
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Multiserver instances and web server configuration

2006-09-06 Thread Snake
That is not true.

All you have to do is select any folder in IIS, edit its properties and
change the ISAPI wildcard filter to use the connector for the instance you
want.

Snake 

-Original Message-
From: Rob Wilkerson [mailto:[EMAIL PROTECTED] 
Sent: 06 September 2006 17:04
To: CF-Talk
Subject: Re: Multiserver instances and web server configuration

No.  ColdFusion instances are tied to the web server and, as a result, to
the site itself.  I don't know any any way to take this to a more granular
level.

On 9/6/06, Rick Root <[EMAIL PROTECTED]> wrote:
> Can I configure IIS and coldfusion (in multiserver mode) such that a 
> specific *PART* (read: directory) within a single web site uses a 
> DIFFERENT instance of Coldfusion than the rest of the web site?
>
> thanks.
>
> rick
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252305
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Multiserver instances and web server configuration

2006-09-06 Thread Rick Root
Rob Wilkerson wrote:
> Wow.  I guess it just seemed so counterintuitive (maybe my intuition
> is faulty) that I never tried to do that.  Or maybe I just never had a
> business case.  :-)  I agree with Mark, though, that this would be
> good blog-fodder.

Well there's definately no way to do it in the web site configuration 
tool.. so it must be a manual think ,which I'll have to look into further.

Rick

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252231
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Multiserver instances and web server configuration

2006-09-06 Thread Rob Wilkerson
Wow.  I guess it just seemed so counterintuitive (maybe my intuition
is faulty) that I never tried to do that.  Or maybe I just never had a
business case.  :-)  I agree with Mark, though, that this would be
good blog-fodder.

On 9/6/06, Dave Watts <[EMAIL PROTECTED]> wrote:
> > Do I understand correctly, then, that ColdFusion will allow
> > you to tie multiple CF Servers to a single virtual host using
> > the wsconfig utility?
>
> If they have different context roots, yes, I think so.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252229
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Multiserver instances and web server configuration

2006-09-06 Thread Dave Watts
> Do I understand correctly, then, that ColdFusion will allow 
> you to tie multiple CF Servers to a single virtual host using 
> the wsconfig utility?

If they have different context roots, yes, I think so.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252227
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Multiserver instances and web server configuration

2006-09-06 Thread Rob Wilkerson
Dave -

Do I understand correctly, then, that ColdFusion will allow you to tie
multiple CF Servers to a single virtual host using the wsconfig
utility?

On 9/6/06, Dave Watts <[EMAIL PROTECTED]> wrote:
> > Can I configure IIS and coldfusion (in multiserver mode) such
> > that a specific *PART* (read: directory) within a single web
> > site uses a DIFFERENT instance of Coldfusion than the rest of
> > the web site?
>
> Yes. Each CF server will require a unique context root. By default, CF's
> context root is "/". You'll need to change one of them to "/some_directory".
> It's been a while since I've done this so I can't give you step-by-step
> instructions, but this should get you started.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252226
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Multiserver instances and web server configuration

2006-09-06 Thread Mark A Kruger
Dave and Rick,

If you guys can figure out how to do this I'd love to know - it would make a
nice blog entry :)  I did not know this was possible in IIS - I always used
different site roots instead (www1, www2 ... Etc).

-mark
 

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, September 06, 2006 11:06 AM
To: CF-Talk
Subject: RE: Multiserver instances and web server configuration

> Can I configure IIS and coldfusion (in multiserver mode) such that a 
> specific *PART* (read: directory) within a single web site uses a 
> DIFFERENT instance of Coldfusion than the rest of the web site?

Yes. Each CF server will require a unique context root. By default, CF's
context root is "/". You'll need to change one of them to "/some_directory".
It's been a while since I've done this so I can't give you step-by-step
instructions, but this should get you started.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized instruction
at our training centers in Washington DC, Atlanta, Chicago, Baltimore,
Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252224
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Multiserver instances and web server configuration

2006-09-06 Thread Rob Wilkerson
No.  ColdFusion instances are tied to the web server and, as a result,
to the site itself.  I don't know any any way to take this to a more
granular level.

On 9/6/06, Rick Root <[EMAIL PROTECTED]> wrote:
> Can I configure IIS and coldfusion (in multiserver mode) such that a
> specific *PART* (read: directory) within a single web site uses a
> DIFFERENT instance of Coldfusion than the rest of the web site?
>
> thanks.
>
> rick
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252223
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Multiserver instances and web server configuration

2006-09-06 Thread Dave Watts
> Can I configure IIS and coldfusion (in multiserver mode) such 
> that a specific *PART* (read: directory) within a single web 
> site uses a DIFFERENT instance of Coldfusion than the rest of 
> the web site?

Yes. Each CF server will require a unique context root. By default, CF's
context root is "/". You'll need to change one of them to "/some_directory".
It's been a while since I've done this so I can't give you step-by-step
instructions, but this should get you started.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:25
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Multiserver instances and web server configuration

2006-09-06 Thread Rick Root
Can I configure IIS and coldfusion (in multiserver mode) such that a 
specific *PART* (read: directory) within a single web site uses a 
DIFFERENT instance of Coldfusion than the rest of the web site?

thanks.

rick

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252221
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4