gpt4 book ai didi

c# - ASP.Net MVC 4 用于 PUT 请求响应 409 - 冲突

转载 作者:可可西里 更新时间:2023-11-01 16:33:53 25 4
gpt4 key购买 nike

我们正在开发一个包含 asp.net mvc 4 站点和适用于 ios 和 Android 的移动应用程序的项目。我们希望API(用于移动应用程序)和使用共享代码库的网站。我们创建了一个 API 区域,其中编写了“业务逻辑”和 API 响应,网站使用这些类。此外,还有将这些用作 API 的路由选项。

GET 和 POST 方法工作得很好,一切都像魅力一样,但是当涉及到 PUT - 更新方法 - 它崩溃

首先我们得到一个 403 错误代码,说写访问被禁止(实际上它只是数据库修改,所以我们不明白它可能是什么)。当我们允许在 IIS 中写入应用程序文件夹时,它发生了变化。

现在,对于每个 PUT 方法请求,我们都会收到“HTTP/1.1 409 冲突”。我们已经尝试并阅读了我们发现的几乎所有内容。有人知道是什么导致了这个问题吗?

编辑:这是一些代码:行动:

    [HttpPut]
[ApiAuth]
[ActionName("Workitem")]
public bool Workitem(int id, [FromBody]WorkItem model)
{
WorkItem item = Db.WorkItems.Find(id);
if (item == null)
{
Logger.Warn("JobRoute/PutWorkItem: not found workitem");
throw ErrorHelper.CreateApiException(HttpStatusCode.NotFound, "Not found workitem");
}
PreparePut(item);
item.Active = model.Active;
item.Name = model.Name;
Db.Entry(item).State = System.Data.Entity.EntityState.Modified;
try
{
Db.SaveChanges();
return true;
}
catch (System.Data.Entity.Infrastructure.DbUpdateConcurrencyException)
{
Logger.Warn("PUT User/User: Workitem not found");
throw ErrorHelper.CreateApiException(HttpStatusCode.NotFound, "Workitem not found");
}
}

这是模型。

public class WorkItem : BaseModel
{
public string Name { get; set; }
}

public class BaseModel
{
[Key]
public int Id { get; set; }
public Nullable<System.DateTime> InsertDate { get; set; }
public Nullable<System.DateTime> LastChangeDate { get; set; }
public bool Active { get; set; }
}

protected void PreparePut(BaseModel model)
{
PrepareModificationDate(model);
}

protected void PrepareModificationDate(BaseModel model)
{
model.LastChangeDate = DateTime.Now;
}

奇怪的是它在本地主机上工作,发布后却没有。

http://domain.com/api/work/workitem/ {ID}[放]对于授权,我们为 token 提供额外的 HTTP header 。

正文:Name=Test+Name&Active=true

原始形式:

PUT http://domain.com/api/work/workitem/1
HTTP/1.1 Host: domain.com
Connection: keep-alive
Content-Length: 22
Origin: chrome-extension://hgmloofddffdnphfgcellkdfbfbjeloo
X-Auth-Session: c796a0a5c1ea9395196bf47abdbb273a
User-Agent: Mozilla/5.0 (Windows NT
6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36
Content-Type: application/x-www-form-urlencoded
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: hu-HU,hu;q=0.8,en-US;q=0.6,en;q=0.4
Cookie:__RequestVerificationToken=eRxqkQZMPrRvY-ugp2tkge5UuAxS3arksJh7H17GE_H_ytSd_gLwpzTD3H276MoIgmyugoI3dMjh6M0Ursqomg2; ASP.NET_SessionId=dibvmeuiojsmphefbiifvkso

Name=Teszt&Active=true

响应是:

HTTP/1.1 409 Conflict
Date: Fri, 07 Feb 2014 15:20:22 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Type: text/html
Content-Length: 43
Via: 1.1 domain.com
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive

<body><h2>HTTP/1.1 409 Conflict</h2></body>

最佳答案

这是 IIS 配置问题。它需要一个额外的 ISAPI dll:

Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll

关于c# - ASP.Net MVC 4 用于 PUT 请求响应 409 - 冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21629306/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com