Is there a way to determine how many connections there are per host header
defined for a website?

For instance if I have a website defined in IIS, lets say "CoolSite", I want
to know how many people are connected to:
CoolSite.com
www.CoolSite.com
my.CoolSite.com
admin.CoolSite.com

VB Script or VB.NET would be great.

Thanks for any thoughts.

Re: Script for Host Header Connections by David

David
Mon May 05 22:43:08 CDT 2008

On May 5, 8:50=A0am, "Bishop" <nos...@nospam.com> wrote:
> Is there a way to determine how many connections there are per host header=

> defined for a website?
>
> For instance if I have a website defined in IIS, lets say "CoolSite", I wa=
nt
> to know how many people are connected to:
> CoolSite.comwww.CoolSite.com
> my.CoolSite.com
> admin.CoolSite.com
>
> VB Script or VB.NET would be great.
>
> Thanks for any thoughts.


Not possible. IIS does not track connections by host-header.


//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//

Re: Script for Host Header Connections by Lognoul,

Lognoul,
Wed May 07 01:18:20 CDT 2008

I totally agree but using code, you can achieve this, or at least partially.
(I don't mean here it's easy, elegant or comprehensive :)).
A code snippet can be inserted to all pages. This could would simply read
from the header on every request and increment a log file or a DB.
Another solution is to use an ISAPI filter or app to do the same job

Marc

"David Wang" <w3.4you@gmail.com> wrote in message
news:8dcd3522-3c3f-4264-b71a-5e45479d9c2b@h1g2000prh.googlegroups.com...
> On May 5, 8:50 am, "Bishop" <nos...@nospam.com> wrote:
>> Is there a way to determine how many connections there are per host
>> header
>> defined for a website?
>>
>> For instance if I have a website defined in IIS, lets say "CoolSite", I
>> want
>> to know how many people are connected to:
>> CoolSite.comwww.CoolSite.com
>> my.CoolSite.com
>> admin.CoolSite.com
>>
>> VB Script or VB.NET would be great.
>>
>> Thanks for any thoughts.
>
>
> Not possible. IIS does not track connections by host-header.
>
>
> //David
> http://w3-4u.blogspot.com
> http://blogs.msdn.com/David.Wang
> //