hot questions tagged http-put - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T19:01:40Z http://stackoverflow.com/feeds/tag?tagnames=http-put&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1691530/sending-a-file-via-http-put-in-php 1 Sending a file via HTTP PUT in PHP GrumpyCanuck 2009-11-07T01:07:36Z 2009-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-updates 2 How to submit RESTful partial updates? Gili 2008-10-24T00:02:01Z 2008-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>