> Thanks for your reply but you're mistaken. You can affect all your
> applications by editing the global web.config file. IIS even offers a button
[quoted text clipped - 36 lines]
>> >
>> > Thanks for any advice.
"Juan T. Llibre" wrote:
> You *cannot*, categorically, state that *any* changes made
> to a global web.config are inheritable by all applications.
True. That why I *never* stated any such thing.
many != any;
A little careful reading can prevent a lot of these pointless arguments.
Speaking of many vs. any. *You* are the one who wrote:
> Any changes you make to the global web.config will be reflected
> in the web root's configuration, and not in individual applications.
This is wrong. Apparently hearing that you're dismissive, non-responsive
answer contains a mistake launches you into a sarcastic, patronizing snit.
Thanks for mentioning machine.config and the link. But they're hardly worth
the grief, are they?
Juan T. Llibre - 11 Mar 2008 21:59 GMT
re:
!>> Any changes you make to the global web.config will be reflected
!>> in the web root's configuration, and not in individual applications.
!> This is wrong.
Test it...and let us know what you find out.
re:
!> Apparently hearing that you're dismissive, non-responsive answer
!> contains a mistake launches you into a sarcastic, patronizing snit.
Bite me if you're not willing to test what I assert from both experience and research.
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
>> You *cannot*, categorically, state that *any* changes made
>> to a global web.config are inheritable by all applications.
[quoted text clipped - 15 lines]
> Thanks for mentioning machine.config and the link. But they're hardly worth
> the grief, are they?
mcqwerty - 12 Mar 2008 17:22 GMT
As I've previously noted in this thread, I got it working just as expected.
Everything is defined in global web.config and works for multiple
applications, httpHandlers and all.
So I consider your assertion to be tested and debunked.
> re:
> !>> Any changes you make to the global web.config will be reflected
[quoted text clipped - 32 lines]
> > Thanks for mentioning machine.config and the link. But they're hardly worth
> > the grief, are they?
Juan T. Llibre - 12 Mar 2008 18:07 GMT
<quote>
According to that thread httpHandlers in the various config files are merged
in reverse order than httpModules, etc.. So my handler with the path
elmah.axd needed to appear BEFORE the handler with the path *.axd,
not after as I was assuming.
So I moved it and everything works now.
</quote>
That's a new one for me. Thanks for the info.
The thread mentions that the ELMAH handler must go before the
.aspx handler, though, and not before the .axd handler. Is that correct ?
Which way did you change it ?
Before the .axd handler or before the .aspx handler, or before both ?
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
> As I've previously noted in this thread, I got it working just as expected.
> Everything is defined in global web.config and works for multiple
[quoted text clipped - 38 lines]
>> > Thanks for mentioning machine.config and the link. But they're hardly worth
>> > the grief, are they?
mcqwerty - 12 Mar 2008 19:00 GMT
That thread is somewhat out of date. Older version of ELMAH used a handler
with an aspx extension, but the latest uses axd.
I'm using axd so I moved it before the *.axd handler. It is also
incidentally above the *.aspx handler, but I don't think that is required.