Roger Reynolds
Roger Reynolds

Reputation: 259

How do I Configure IIS to accept POST requests?

I know by default IIS doesn't accept post requests how can I change this setting. Can someone walk me through changing this (step by step).. Please?

Upvotes: 15

Views: 79452

Answers (2)

Pete Amundson
Pete Amundson

Reputation: 900

If you are using IIS 6 and lower:

From inside the IIS management screen right click on your website or virtual directory. Go to Properties then go to the Home Directory or Virtual Directory tab and click on the Configuration button. From there you can add/update extensions and what Verbs are accepted.


If you are using IIS 7:

From inside the IIS management screen click on Handler Mappings. You can add by clicking the links on the right side or double-click on an item to edit it.

picture of handler mappings location

Upvotes: 6

Jeroen
Jeroen

Reputation: 4023

If it's related to an asp.net app you might be able to set it in your web.config as described here.

Upvotes: -1

Related Questions