Tagged Questions

3
votes
2answers
183 views

Read data from HTTP PUT

I am currently implementing a RESTful web service which talks XML using CodeIgniter and REST by Phil Sturgeon. I am now stuck at how to read XML from HTTP PUT. This is what I did. At the client side: ...
3
votes
5answers
3k views

Sending a file via HTTP PUT in PHP

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 ...
2
votes
1answer
1k views

PHP cURL HTTP PUT

I am trying to create a HTTP PUT request with cURL and I can't make it work. I ready many tutorials but none of them acutally worked. Here's my current code: $filedata = array('metadata' => ...
2
votes
1answer
660 views

How can a PHP REST API receive PUTted data?

I'm writing an API and want to follow the REST approach. As I understand it, if I want to let API users update specific records a PUT http://server/specific_resource type request should be supported. ...
2
votes
4answers
1k views

PHP upload file using PUT instead of POST

I read something about this on PHP docs, but it's not clear to me: Do the most widely used browsers (IE, FF, Chrome, Safari, Opera, ...) support this PUT method to upload files? What HTML should I ...
0
votes
0answers
106 views

PHP Pear PUT request [closed]

Possible Duplicate: PHP PEAR HTTP PUT Hello guys! I've got a serious problem while developing with PHP Pear library. I am working on an inteface for a REST repository which shall be able to ...