iis 在net 6 Web API中允许PUT

qq24tv8q  于 2023-10-19  发布在  其他
关注(0)|答案(1)|浏览(155)

我从 Swagger 的错误,我尝试了谷歌arround和youtube,但没有发现问题,任何一个帮助我,非常感谢!
这是错误消息:

Error: Method Not Allowed

Response body
Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>405 - HTTP verb used to access this page is not allowed.</title>
<style type="text/css">
<!--
body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;}
fieldset{padding:0 15px 10px 15px;} 
h1{font-size:2.4em;margin:0;color:#FFF;}
h2{font-size:1.7em;margin:0;color:#CC0000;} 
h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} 
#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF;
background-color:#555555;}
#content{margin:0 0 0 2%;position:relative;}
.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}
-->
</style>
</head>
<body>
<div id="header"><h1>Server Error</h1></div>
<div id="content">
 <div class="content-container"><fieldset>
  <h2>405 - HTTP verb used to access this page is not allowed.</h2>
  <h3>The page you are looking for cannot be displayed because an invalid method (HTTP verb) was used to attempt access.</h3>
 </fieldset></div>
</div>
</body>
</html>
Response headers
 allow: GET,HEAD,OPTIONS,TRACE 
 content-length: 1293 
 content-type: text/html 
 date: Wed,27 Sep 2023 07:54:03 GMT 
 server: Microsoft-IIS/10.0

我想IIS 10允许PUT方法。这是我的web.config:

7z5jn7bk

7z5jn7bk1#

您可以尝试通过以下步骤从iis中删除WebDAV模块:
1.打开iis管理器,选择您的网站
1.点击中间窗格中的“模块”
1.选择WebDAV Module,单击从操作窗格中删除。
1.重新启动iis站点
为站点添加PUT:
1.打开iis,选择您的站点
1.双击请求过滤,转到HTTP动词部分
1.在操作窗格中单击允许 predicate
1.在动词中输入PUT

添加自定义标题:
1.转到您的站点,选择HTTP响应头
1.从操作窗格中选择添加
1.输入以下值:
名称:控制允许方法
值:GET,POST,PUT,POST,OPTIONS

相关问题