Kesalahan ini sangat umum, dan saya mencoba semua solusi dan tidak ada yang berhasil. Saya telah menonaktifkan penerbitan WebDAV di panel kontrol dan menambahkan ini ke file konfigurasi web saya:
<handlers>
<remove name="WebDAV"/>
</handlers>
<modules runAllManagedModulesForAllRequests="true">
<remove name="WebDAVModule"/>
</modules>
Kesalahan masih berlanjut. Ini pengontrolnya:
static readonly IProductRepository repository = new ProductRepository();
public Product Put(Product p)
{
return repository.Add(p);
}
Implementasi metode:
public Product Add(Product item)
{
if (item == null)
{
throw new ArgumentNullException("item");
}
item.Id = _nextId++;
products.Add(item);
return item;
}
Dan di sinilah pengecualian dilemparkan:
client.BaseAddress = new Uri("http://localhost:5106/");
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
var response = await client.PostAsJsonAsync("api/products", product);//405 exception
Ada saran?