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



这是我的代码:

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 );
}
}

我怎样才能获得server$xml_string?有什么想法吗?

$http->get调用中,将$xml_string作为参数传递。您应该能够在server函数中接收它,只需更改声明,如下所示:

public function server($xml_string) {

请注意,此处可能需要考虑 URL 编码问题;我从未使用过这种设置。

最新更新