我有 MVC-4 Web-API 服务器,我需要“手动”(通过 TCP)创建 HTTP 客户端来与之交谈。
public class UpdateUnitDetailsController : ApiController
{
// GET api/updateunitdetails
public IEnumerable<string> Get()
{
return new string[] { "value1", "value2" };
}
// GET api/updateunitdetails/5
public string Get(int id)
{
return "value";
}
// POST api/updateunitdetails
public void Post([FromBody]string value)
{
}
// POST api/updateunitdetails
public void Post()
{
}
// PUT api/updateunitdetails/5
public void Put(int id, [FromBody]string value)
{
}
// DELETE api/updateunitdetails/5
public void Delete(int id)
{
}
}
我做了一个简单的客户端并在服务器控制器的方法中设置断点。在客户端,我发送这个:
GET /api/updateunitdetails HTTP/1.1
Host: localhost:58743
Content-Type: */*
Content-Length: 10
home=sweet
它可以工作(调试器在Get
方法中停止)。但是,如果我更改GET
为POST
,则不会。此外,每当我发出POST
请求时,我都会在 Visual Studio 控制台中看到以下消息:
A first chance exception of type 'System.InvalidOperationException' occurred in System.Web.Http.dll
我想念什么?