Cakephp XML HTTP服务器如何从客户端获取请求

时间:2018-06-13 16:21:12

标签: xml api http cakephp

这是我的代码:

public function client() {  
    App::uses('Xml', 'Utility');
    $conditions = array('conditions' => array('title' => 'The title'));

    App::uses('HttpSocket', 'Network/Http');
    $http = new HttpSocket();
    $xml_data = Xml::fromArray( $conditions, array('pretty'=>'true'));
    $xml_string = $xml_data->asXML();
    $response = $http->get('http://localhost/cakephp/xml/server', $xml_string);
    //echo $response->body;
    echo $response->code;

    $this->set('xml', $response->body);
    $this->set('x', $xml_string);
}

public function server() {
    $this->layout=false;
     $this->response->type('application/xml');
    if($this->request->is('get')){
        $conditionXml = Xml::toArray($this->request->input('Xml::build'));
        //debug($conditionXml['conditions']);
         $title = $conditionXml['conditions']['title'];
       $posts = $this->Post->find('all', array('conditions' =>array('Post.title ='=>$title)));

        $posts = Xml::fromArray(array('posts' => array('post' => $posts)), array('pretty'=>'true', 'format'=>'tags'));
        $posts=$posts->asXML();
        $this->set('posts', $posts );
    }
}

如何在$xml_string中获取server?有什么想法吗?

1 个答案:

答案 0 :(得分:0)

$http->get来电中,您将$xml_string作为参数传递。您应该只需通过更改声明,就可以在server函数中接收它:

public function server($xml_string) {

请注意,此处可能会考虑URL编码问题;我从来没有使用过这种设置。