SV: [Mono-list] mod_mono and userdir

Steinar Herland steinar.herland@gecko.no
Wed, 12 Mar 2003 20:33:15 +0100


If it's HttpModule or an Apache module "doesn't matter". The request =
will have to be handled / rewritten on every request anyway.

I believe a HttpModule is preferred because it's a pure C# solution, and =
because of the simplicity:

if(Request.Path.IndexOf("~")>0){  //Use a RegEx here?
	//Do something
	HttpContext.Current.RewritePath("MyNewPath");
}
//Done...

Steinar

-----Opprinnelig melding-----
Fra: Eran Sandler [mailto:Eran.Sandler@smarteam.com]=20
Sendt: 12. mars 2003 16:17
Til: Daniel Lopez; mono-list@ximian.com
Emne: RE: [Mono-list] mod_mono and userdir

Hi Daniel,
=A0
You can write an HttpModule that upon initalization hooks to the =
BeginRequest event and it can parse the request URL and perform server =
redirect or directly write to the response.
=A0
I've done such things for different reasons (not the ones that you want) =
but you should bare in mind that on EVERY request that comes to that =
application it will pass through your module so except a decrease in =
performance.
=A0
I think you should try to resolve it at the apache module level. Perhaps =
by doing what I have suggested in my previous post (I'm not sure how to =
do that since I don't know Apache that well).
=A0
If you can redirect a request at the Apache=A0module level it seems like =
the most reasonable place to do that.
=A0
Eran
-----Original Message-----=20
From: Daniel Lopez [mailto:daniel@rawbyte.com]=20
Sent: =E3 12/03/2003 14:55=20
To: mono-list@ximian.com=20
Cc:=20
Subject: Re: [Mono-list] mod_mono and userdir

Yes, I already looked at the HttpApplication events and in the =
System.Web
namespace and could not find a path resolve event? Should I be looking
somwehre else?
The current place I am thinking on hooking is in BeginRequest

> There is a event that is called during path resolve, that could =
resolve that
> path into another physical path (just change it). I don't have time to =
make
> a poc now but take a look in MSDN.
>
> Cheers,
>=A0 Patrik
>
> > -----Original Message-----
> > From: Daniel Lopez [mailto:daniel@rawbyte.com]
> > Sent: Wednesday, March 12, 2003 12:35 PM
> > To: mono-list@ximian.com
> > Subject: [Mono-list] mod_mono and userdir
> >
> >
> >
> > I believe part of what I want can be accomplished with
> >
> > HttpContext.RewritePath()
> >
> > Not currently implemented in Mono, I=B4ll look into implementing it.
> > This can then be called from an HttpModule
> >
> > Cheers
> >
> > Daniel
> > _______________________________________________
> > Mono-list maillist=A0 -=A0 Mono-list@lists.ximian.com
> > http://lists.ximian.com/mailman/listinfo/mono-list
> >
_______________________________________________
Mono-list maillist=A0 -=A0 Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list