hot questions tagged http-put - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T19:01:40Zhttp://stackoverflow.com/feeds/tag?tagnames=http-put&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1691530/sending-a-file-via-http-put-in-php1Sending a file via HTTP PUT in PHPGrumpyCanuck2009-11-07T01:07:36Z2009-11-08T19:10:12Z
<p>I've been struggling for several hours trying to figure out how to get this work. I'm trying to send a file via HTTP-PUT to an eXist db. There is user authentication for the server, so I was trying to do something like this:</p>
<p>I have the URL where the doc is to be PUTted to
I have the username and password for the eXist DB
I have the content that needs to be sent via the PUT</p>
<p>I tried getting to work with cURL but it would fail silently
I tried to use PHP streams, but kept getting "error 201/created" but no file was actually created.</p>
<p>Any help with this would be GREATLY appreciated.</p>
<p>Here's some sample code I tried using PHP streams</p>
<pre>
$data = file_get_contents($tmpFile);
$header = array(
"Authorization: Basic " . base64_encode($this->ci->config->item('ws_login') . ':' . $this->ci->config->item('ws_passwd')),
"Content-Type: text/xml"
);
$params = array(
'http' => array(
'method' => 'PUT',
'header' => $header,
'content' => $data));
$ctx = stream_context_create($params);
$response = file_get_contents($url, false, $ctx);
</pre>
http://stackoverflow.com/questions/232041/how-to-submit-restful-partial-updates2How to submit RESTful partial updates?Gili2008-10-24T00:02:01Z2008-10-24T01:26:02Z
<p>Sam Ruby, author of "RESTful Web Services" seems to come out against the use of HTTP PUT for partial updates: <a href="http://intertwingly.net/blog/2008/02/15/Embrace-Extend-then-Innovate" rel="nofollow">http://intertwingly.net/blog/2008/02/15/Embrace-Extend-then-Innovate</a></p>
<p>What isn't clear is how partial updates <em>should</em> take place. As I commented near the bottom of his blog, it isn't clear how using HTTP PATCH is any better than using a "patch document" against HTTP PUT.</p>
<p>It is worth noting that although Sam comes out against misusing HTTP PUT he doesn't seem to advocate the use of HTTP PATCH either.</p>
<p>How should one submit RESTful partial updates?</p>