|
|
|
date: 23 Apr 2006 03:52:03 -0700,
group: microsoft.public.platformsdk.internet.server.isapi-dev
back
Re: Install ISAPI wildcard script map
Please clarify what you mean by "it's not working".
I have no details about your configuration nor results from actions, so I
really cannot help until you provide more information.
FYI:
Inserting wildcard application mappings into the global map does NOT assure
that the application mapping runs on every request, as documented on MSDN.
--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"gilad" wrote in message
news:1146121997.995673.84780@y43g2000cwc.googlegroups.com...
> Thanks David.
> The following command works fine, however I'm trying to insert into the
> global map. I tried replacing w3svc/1/root/scriptmaps with
> w3svc/scriptmaps but its not working. Please help.
>
> ChgList.vbs w3svc/1/root/scriptmaps first
> *,C:\Inetpub\wwwroot\CustomAuth\CustomAuth.dll,1 /insert /commit
>
> Thanks,
> Gilad.
>
>
> David Wang [Msft] wrote:
>> http://blogs.msdn.com/david.wang/archive/2006/01/24/HOWTO_Install_and_Use_CustomAuth_on_IIS_6.aspx
>>
>> It shows how to:
>> 1. configure a dual ISAPI Filter/Extension - using my sample script tools
>> to
>> manipulate Filters as will as script mappings.
>> 2. enable Web Service Extensions using built-in IIS script tools
>>
>> --
>> //David
>> IIS
>> http://blogs.msdn.com/David.Wang
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights.
>> //
>>
>> "gilad" wrote in message
>> news:1145789523.065264.44460@v46g2000cwv.googlegroups.com...
>> > Hi,
>> > Is there a sample of how to install wildcard script map ? (set it to
>> > allow in the web service extensions, add it to the wildcard application
>> > map etc)
>> >
>> > Thanks,
>> > Gilad.
>> >
>
date: Thu, 27 Apr 2006 01:26:20 -0700
author: David Wang [Msft]
Re: Install ISAPI wildcard script map
Please tell me what you are trying to accomplish - not how you want to
accomplish it.
Why do you want to insert it to the global ScriptMap, and how are you
viewing the global ScriptMap?
Due to how the ScriptMaps property works, as soon as you configured
W3SVC/1/ROOT/ScriptMaps, it stops inheriting values from the global
ScriptMap and thus will no longer see any global changes.
As for what the "1" means -- I recommend looking up ScriptMaps documentation
on MSDN.
I also recommend reading MSDN documentation on ScriptMaps and Filters to
understand how they work.
In general, you either have to learn how ScriptMaps and ISAPI Filters work
as well as what you want to accomplish in order to configure them properly,
or else you have to tell the same innfo to someone else and hope they tell
you how to configure it correctly.
--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"gilad" wrote in message
news:1146135523.940439.24360@i39g2000cwa.googlegroups.com...
> The command: "ChgList.vbs w3svc/1/root/scriptmaps first
> *,C:\Inetpub\wwwroot\CustomAuth\CustomAuth.dll,1 /insert /commit"
> works fine and insert the wildcard to the default web site. I want to
> insert it to the global map and tried replacing w3svc/1/root/scriptmaps
> with w3svc/scriptmaps. The script says SUCCESS but I don't see it
> defined in the GUI.
>
> another question is: In the string
> *,C:\Inetpub\wwwroot\CustomAuth\CustomAuth.dll,1 - what does 1 mean ?
>
> And most important - regarding the FYI, not run for every request ???
> so you're saying its just for testing ? What do you recommend - define
> both the filter and the wildcard to each and every web site ?
>
> Thanks,
> Gilad.
>
date: Fri, 28 Apr 2006 00:50:44 -0700
author: David Wang [Msft]
|
|