Bu hata çok yaygındır ve tüm çözümleri denedim ve hiçbiri işe yaramadı. Kontrol panelinde WebDAV yayınlamayı devre dışı bıraktım ve bunu web yapılandırma dosyama ekledim:
<handlers>
<remove name="WebDAV"/>
</handlers>
<modules runAllManagedModulesForAllRequests="true">
<remove name="WebDAVModule"/>
</modules>
Hata hala devam ediyor. Bu denetleyici:
static readonly IProductRepository repository = new ProductRepository();
public Product Put(Product p)
{
return repository.Add(p);
}
Yöntem uygulaması:
public Product Add(Product item)
{
if (item == null)
{
throw new ArgumentNullException("item");
}
item.Id = _nextId++;
products.Add(item);
return item;
}
Ve burası istisnanın ortaya çıktığı yerdir:
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
Herhangi bir öneri?