X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fexamples%2FKISS_XMLRPC_Client.php;h=ac7498d611caa9f87d6fd2af5a5de2eb7c89e497;hb=4c47eabee60a0266f3f27bf91528830b32da842e;hp=35380db9853759d19df1b1ca6c1bd7cb0e54896e;hpb=b562e34cf4f8c8fae7b8fe773e0eed71592b09c2;p=m6w6%2Fext-http diff --git a/docs/examples/KISS_XMLRPC_Client.php b/docs/examples/KISS_XMLRPC_Client.php index 35380db..ac7498d 100644 --- a/docs/examples/KISS_XMLRPC_Client.php +++ b/docs/examples/KISS_XMLRPC_Client.php @@ -7,7 +7,7 @@ class XmlRpcClient public function __construct($url, $namespace = '') { $this->namespace = $namespace; - $this->request = new HttpRequest($url, HTTP_POST); + $this->request = new HttpRequest($url, HTTP_METH_POST); $this->request->setContentType('text/xml'); } @@ -26,7 +26,7 @@ class XmlRpcClient if ($this->namespace) { $method = $this->namespace .'.'. $method; } - $this->request->setPostData(xmlrpc_encode_request($method, $params)); + $this->request->setRawPostData(xmlrpc_encode_request($method, $params)); $response = $this->request->send(); if ($response->getResponseCode() != 200) { throw new Exception($response->getBody(), $response->getResponseCode());