Questions tagged [http-put]

Using HTTP PUT allows for uploading a depiction of the specific resource.

Having difficulty overriding the Content-type in http.put while using Angular RC2

I'm encountering an issue in the latest version of rc2 that didn't exist in older versions and I'm unsure if it's a bug or something I'm doing wrong. The problem arises when making a http.put request where I need to set Content-ty ...

transmitting data using the PUT method in JSON format

My goal is to send the JSON string {'post_id': 3} to my server using a PUT method. However, I am encountering a 500 error from my server when I run it. Can someone please confirm if I am sending the JSON data correctly? HttpClient httpclient = new D ...

performing asynchronous iteration with HTTP PUT requests

I'm attempting to send multiple HTTP PUT requests to my server, but I am only able to successfully send one JSON object to the database. What could be missing in my code? var data1 = JSON.stringify(require('./abc.json')), data2 = JSON ...