Domande taggate «http-status-code-415»

14
POST JSON non riesce con 415 tipo di supporto non supportato, Spring 3 mvc
Sto cercando di inviare una richiesta POST a un servlet. La richiesta viene inviata tramite jQuery in questo modo: var productCategory = new Object(); productCategory.idProductCategory = 1; productCategory.description = "Descrizione2"; newCategory(productCategory); dove si trova newCategory function newCategory(productCategory) { $.postJSON("ajax/newproductcategory", productCategory, function( idProductCategory) { console.debug("Inserted: " + idProductCategory); }); } e …

15
Http 415 Errore di tipo di supporto non supportato con JSON
Sto chiamando un servizio REST con una richiesta JSON e risponde con un HTTP 415 "Unsupported Media Type"errore. Il tipo di contenuto della richiesta è impostato su ("Content-Type", "application/json; charset=utf8"). Funziona bene se non includo un oggetto JSON nella richiesta. Sto usando la google-gson-2.2.4libreria per JSON. Ho provato a utilizzare …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.