473,411 Members | 2,184 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,411 software developers and data experts.

httpHandlers for child directories

How would I set up an httpHandler so that it would only apply to certain
child directories of the application?

I.E:
<httpHandlers>
<add verb="*" path="/files/*/*/*/*.aspx"
type="App.HttpHandlers.ThreeDeepPage, App" />
<add verb="*" path="/files/*/*/*.aspx"
type="App.HttpHandlers.TwoDeepPage, App" />
</httpHandlers>

The wildcard character for a directory causes an error, and before I even
tried it I thought it would. I am guessing I would probably have to do this
using a custom configSection, but I'm not sure how to do it.
TIA,

Grant
Nov 18 '05 #1
4 3308
Why don't you just list them out?

<add verb="*" path="/files/certain1/bob.axd", type="..." />
<add verb="*" path="/files/certain2/bob.axd", type="..." />
<add verb="*" path="/files/certain2/deeper/bob.axd", type="..." />

bill

"Grant Harmeyer" <ne*@internetapollo.com> wrote in message
news:eO**************@TK2MSFTNGP11.phx.gbl...
How would I set up an httpHandler so that it would only apply to certain
child directories of the application?

I.E:
<httpHandlers>
<add verb="*" path="/files/*/*/*/*.aspx"
type="App.HttpHandlers.ThreeDeepPage, App" />
<add verb="*" path="/files/*/*/*.aspx"
type="App.HttpHandlers.TwoDeepPage, App" />
</httpHandlers>

The wildcard character for a directory causes an error, and before I even
tried it I thought it would. I am guessing I would probably have to do this using a custom configSection, but I'm not sure how to do it.
TIA,

Grant

Nov 18 '05 #2
The directories will have dynamic names for years, months and days. Also,
the file names will be dynamic (managed by a file system of sorts that I
don't have much control over).

i.e:
<add verb="*" path="/files/2004/10/7/SomeFile.axd", type="..." />
<add verb="*" path="/files/2004/12/15/SomeFile2.axd", type="..." />

Considering that I have no idea how many files there may be or what the 2nd
or 3rd level directory names may be, I was hoping to use wildcards to
achieve this. It's an odd problem I know.

Grant
"William F. Robertson, Jr." <wfrobertson_at_kpmg_dot_com> wrote in message
news:On*************@TK2MSFTNGP12.phx.gbl...
Why don't you just list them out?

<add verb="*" path="/files/certain1/bob.axd", type="..." />
<add verb="*" path="/files/certain2/bob.axd", type="..." />
<add verb="*" path="/files/certain2/deeper/bob.axd", type="..." />

bill

"Grant Harmeyer" <ne*@internetapollo.com> wrote in message
news:eO**************@TK2MSFTNGP11.phx.gbl...
How would I set up an httpHandler so that it would only apply to certain
child directories of the application?

I.E:
<httpHandlers>
<add verb="*" path="/files/*/*/*/*.aspx"
type="App.HttpHandlers.ThreeDeepPage, App" />
<add verb="*" path="/files/*/*/*.aspx"
type="App.HttpHandlers.TwoDeepPage, App" />
</httpHandlers>

The wildcard character for a directory causes an error, and before I even
tried it I thought it would. I am guessing I would probably have to do

this
using a custom configSection, but I'm not sure how to do it.
TIA,

Grant


Nov 18 '05 #3
Hi there,
are you sure that HttpHandler is even able to handle child directories? I
red somewhere that for each subdirectory it's own configuration should be
done (I mean: bin directory, IIS configuration, web.config...).

Are you maybe mixing HttpModule with it?

Please correct me if I'm wrong,

Igor

"William F. Robertson, Jr." <wfrobertson_at_kpmg_dot_com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Okay, here is the path you want to take then.

<add verb="*" path="/files/Level1Handler.axd", type="..." />
<add verb="*" path="/files/Level2Handler.axd", type="..." />

In Global.cs, you will want to use HttpContext.RewritePath to achieve
this.

Here is a test snippet I used. You might want to explore the Request
object
to see if there is a better way, but RawUrl works for demostration
purposes.

protected void Application_BeginRequest( object sender, EventArgs e )
{
string url = Context.Request.RawUrl.ToUpper();
if ( url.EndsWith( "LEVEL1HANDLER.AXD" ) ) //this will covert
"files/*/Level1Handler.axd"
{
Context.RewritePath( "/files/Level1Handler.axd" );
}
else if ( url.EndsWith( "LEVEL2HANDLER.AXD" ) )
{
Context.RewritePath( "/files/Level2Hanlder.axd" );
}
}

I hope this is what you are looking for. Or atleast you can use this to
get
where you are going.

bill

"Grant Harmeyer" <ne*@internetapollo.com> wrote in message
news:u$**************@TK2MSFTNGP11.phx.gbl...
The directories will have dynamic names for years, months and days. Also,
the file names will be dynamic (managed by a file system of sorts that I
don't have much control over).

i.e:
<add verb="*" path="/files/2004/10/7/SomeFile.axd", type="..." />
<add verb="*" path="/files/2004/12/15/SomeFile2.axd", type="..." />

Considering that I have no idea how many files there may be or what the

2nd
or 3rd level directory names may be, I was hoping to use wildcards to
achieve this. It's an odd problem I know.

Grant
"William F. Robertson, Jr." <wfrobertson_at_kpmg_dot_com> wrote in
message
news:On*************@TK2MSFTNGP12.phx.gbl...
> Why don't you just list them out?
>
> <add verb="*" path="/files/certain1/bob.axd", type="..." />
> <add verb="*" path="/files/certain2/bob.axd", type="..." />
> <add verb="*" path="/files/certain2/deeper/bob.axd", type="..." />
>
> bill
>
> "Grant Harmeyer" <ne*@internetapollo.com> wrote in message
> news:eO**************@TK2MSFTNGP11.phx.gbl...
>> How would I set up an httpHandler so that it would only apply to certain >> child directories of the application?
>>
>> I.E:
>> <httpHandlers>
>> <add verb="*" path="/files/*/*/*/*.aspx"
>> type="App.HttpHandlers.ThreeDeepPage, App" />
>> <add verb="*" path="/files/*/*/*.aspx"
>> type="App.HttpHandlers.TwoDeepPage, App" />
>> </httpHandlers>
>>
>> The wildcard character for a directory causes an error, and before I even >> tried it I thought it would. I am guessing I would probably have to do
> this
>> using a custom configSection, but I'm not sure how to do it.
>>
>>
>> TIA,
>>
>> Grant
>>
>>
>
>



Nov 18 '05 #4
Yes, Handlers can "handle" child directories.

For each subdirectory, its full configuration should be done when each
subdirectory is set up as an application in IIS. If a subdirectory is not
set up as an application, it will pull it settings from the parent (root
application) directory. Each subdirectory can override its parent settings,
such as appSettings, etc.

http://msdn.microsoft.com/library/de...chitecture.asp

Infact if you try to change the authentication mode for a non-application
subdirectory, it will not allow it. It will give you some "machine beyond
application configuration error".

bill
"Igor K" <ig**@exor.hr> wrote in message
news:e7**************@TK2MSFTNGP15.phx.gbl...
Hi there,
are you sure that HttpHandler is even able to handle child directories? I
red somewhere that for each subdirectory it's own configuration should be
done (I mean: bin directory, IIS configuration, web.config...).

Are you maybe mixing HttpModule with it?

Please correct me if I'm wrong,

Igor

"William F. Robertson, Jr." <wfrobertson_at_kpmg_dot_com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Okay, here is the path you want to take then.

<add verb="*" path="/files/Level1Handler.axd", type="..." />
<add verb="*" path="/files/Level2Handler.axd", type="..." />

In Global.cs, you will want to use HttpContext.RewritePath to achieve
this.

Here is a test snippet I used. You might want to explore the Request
object
to see if there is a better way, but RawUrl works for demostration
purposes.

protected void Application_BeginRequest( object sender, EventArgs e )
{
string url = Context.Request.RawUrl.ToUpper();
if ( url.EndsWith( "LEVEL1HANDLER.AXD" ) ) //this will covert
"files/*/Level1Handler.axd"
{
Context.RewritePath( "/files/Level1Handler.axd" );
}
else if ( url.EndsWith( "LEVEL2HANDLER.AXD" ) )
{
Context.RewritePath( "/files/Level2Hanlder.axd" );
}
}

I hope this is what you are looking for. Or atleast you can use this to
get
where you are going.

bill

"Grant Harmeyer" <ne*@internetapollo.com> wrote in message
news:u$**************@TK2MSFTNGP11.phx.gbl...
The directories will have dynamic names for years, months and days. Also, the file names will be dynamic (managed by a file system of sorts that I don't have much control over).

i.e:
<add verb="*" path="/files/2004/10/7/SomeFile.axd", type="..." />
<add verb="*" path="/files/2004/12/15/SomeFile2.axd", type="..." />

Considering that I have no idea how many files there may be or what the

2nd
or 3rd level directory names may be, I was hoping to use wildcards to
achieve this. It's an odd problem I know.

Grant
"William F. Robertson, Jr." <wfrobertson_at_kpmg_dot_com> wrote in
message
news:On*************@TK2MSFTNGP12.phx.gbl...
> Why don't you just list them out?
>
> <add verb="*" path="/files/certain1/bob.axd", type="..." />
> <add verb="*" path="/files/certain2/bob.axd", type="..." />
> <add verb="*" path="/files/certain2/deeper/bob.axd", type="..." />
>
> bill
>
> "Grant Harmeyer" <ne*@internetapollo.com> wrote in message
> news:eO**************@TK2MSFTNGP11.phx.gbl...
>> How would I set up an httpHandler so that it would only apply to

certain
>> child directories of the application?
>>
>> I.E:
>> <httpHandlers>
>> <add verb="*" path="/files/*/*/*/*.aspx"
>> type="App.HttpHandlers.ThreeDeepPage, App" />
>> <add verb="*" path="/files/*/*/*.aspx"
>> type="App.HttpHandlers.TwoDeepPage, App" />
>> </httpHandlers>
>>
>> The wildcard character for a directory causes an error, and before I

even
>> tried it I thought it would. I am guessing I would probably have to do > this
>> using a custom configSection, but I'm not sure how to do it.
>>
>>
>> TIA,
>>
>> Grant
>>
>>
>
>



Nov 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: some guy with a computer | last post by:
I can not get a custom httpHandler to fire using machine.config and an assembly in the GAC. It will not work if I move the assembly to the GAC, even though I have it referenced correctly and add...
2
by: Luis | last post by:
Hi, I want to protected all files in my website, so I try to use httpHandlers, I put this in my WEB.CONFIG (at the end of page), but I can't protected the files type MDB, CSB, can someone help...
0
by: Chance Hopkins | last post by:
Does anyone know how to get a custom httpHandler to fire for all applications in machine.config for an assembly in the GAC, without using seperate location tags? For instance, this works for a...
1
by: Patrick Kristiansen | last post by:
Hi! I have on my website a root web.config file, and also created a subapplication "/publikationer". In my root web.config I've specified an HTTP-handler for some requests, but this is mirrored...
1
by: TJoker .NET | last post by:
I have this web control that need to process some special urls requested by the browser. So I created a class implementing IHttpHandler to deal with it. The problem here is that to properly use...
3
by: MWells | last post by:
I'm having an issue getting my HttpHandlers and HttpModules to play together nicely. My HttpHandlers take special document types (defined by extension) and process them specially. I might have...
0
by: tshad | last post by:
I have 2 controls that I need to run that I got of the Web. I have been using ScrollKeeper for awhile and was trying to add FreeTextBox to my site. But for some reason it won't run if ScrollKeeper...
5
by: Anonieko | last post by:
HttpHandlers - Learn Them. Use Them. Introduction There are many features in ASP.NET that are unfortunately underused. Sometimes a feature gets looked over because it's too complicated....
5
by: =?Utf-8?B?RGF2aWQgVGhpZWxlbg==?= | last post by:
Hi; We return files that are stored in our database using an httpHandler as follows: <httpHandlers> <add verb="*" path="report-view.*" type="ReportView"/> </httpHandlers> Now as I...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.