Re: [Mono-list] HttpHandler for *.jpg

2005-06-20 Thread Martin Hinks
Seems like a bug with passing the QS through to the handler, maybe file a BugZilla report unless anyone else has more info Martin On 6/20/05, Marc DM <[EMAIL PROTECTED]> wrote: > After a little bit of debugging, > I have discovered that when there are QueryString parameters, passed > such as

Re: [Mono-list] HttpHandler for *.jpg

2005-06-20 Thread Marc DM
After a little bit of debugging, I have discovered that when there are QueryString parameters, passed such as /images/pic1.jpg?thumb=1 the ProcessRequest method of the Handler doesn't get called. I added a line to the ProcessRequest medhod to write a log to a text file for each iteration of the

Re: [Mono-list] HttpHandler for *.jpg

2005-06-20 Thread Marc DM
*told you I was falling asleep* Everything is referenced with the correct case. The UPPERCASE filenames (in my previous email) was only that way for emphasis. In the config it says ".jpg" and all image files are renamed to .jpg (lowercase extension) before being deployed. I'm about to start Res

Re: [Mono-list] HttpHandler for *.jpg

2005-06-20 Thread Gonzalo Paniagua Javier
On Mon, 2005-06-20 at 02:53 -0500, Marc DM wrote: [...] > http://mysite/images/Beach12/DCS001.JPG?w=200 >to give me the image at the specified url, but proportionately >resized to 200px wide. > -APACHE CONFIG- > -/etc/apache2/sites-ava

Re: [Mono-list] HttpHandler for *.jpg

2005-06-20 Thread Martin Hinks
What part of the app is failing? Is the handler for .jpg types being called but the querystring is blank? Have you traced through the application? If you can find exactly what is failing we can file BugZilla reports. If the handler is working post some source and I'll take a look later. To find

[Mono-list] HttpHandler for *.jpg

2005-06-20 Thread Marc DM
(*falling asleep as I type this*) I have a HttpHandler that works on .NET but not on Mono. I need some help to sort it out. It is a HttpHandler to allow me to use a url like : http://mysite/images/Beach12/DCS001.JPG?w=200 to give me the image at the specified url, but proportionately