Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Re: TRACE and HEAD verbs ignored by handler

Reply
Thread Tools

Re: TRACE and HEAD verbs ignored by handler

 
 
Kevin Spencer
Guest
Posts: n/a
 
      07-01-2003
Did you update your web.config file with the same information?

HTH,

Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
http://www.takempis.com
Big things are made up of
lots of Little things.

"Rein Petersen" <> wrote in message
news:...
Hi Folks,

I've registered a handler in my application for *.xml files:

<httpHandlers>
<add verb="GET,POST,PUT,DELETE,HEAD,TRACE" path="*.xml"
type="XMLPlatform.XMLHandler,XMLPlatform" />
</httpHandlers>
I've ensured that mappings to *.xml using all verbs are configured in IIS:



Yet despite all this, IIS still seems to get in the way for HEAD and TRACE
calls. This is so very annoying (on top of all the other things it likes to
stand in the way of like session and security) and I hope someone can
suggest a work-around or reason why this happens. Otherwise, I'll have to
finally acknowledge that ASP.NET does actually suck after all and program
using ISAPI or scrap IIS altogether in favor of my own web server (I'd write
it in C#).

Rein



 
Reply With Quote
 
 
 
 
Rein Petersen
Guest
Posts: n/a
 
      07-02-2003
> Did you update your web.config file with the same information?

Yes:

<httpHandlers>
<add verb="GET,POST,PUT,DELETE,HEAD,TRACE" path="*.xml"
type="XMLPlatform.XMLHandler,XMLPlatform" />
</httpHandlers>

[excerpt from my web.config]

The handler works great for GET,POST,PUT,DELETE.... but forget about HEAD or
TRACE ...

Rein


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
A question on the HTML verbs GET and POST Marc ASP .Net 4 06-15-2008 11:08 AM
English grammar and Also Verbs....E_Book chinmay1077 C++ 0 05-01-2008 01:56 PM
verbs for custom http handler work only on dev machine? PJ6 ASP .Net 3 07-24-2007 06:04 PM
PHP and ASP.NET go HEAD to HEAD showme ASP .Net 13 07-10-2004 09:44 PM
A question about IHttpModule and verbs Kenneth Myhra ASP .Net 2 02-10-2004 01:48 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57