Example #1
0
 protected function querySoap($query)
 {
     //"http://nlp.vse.cz:8080/tmrap/services/TMRAPService?wsdl"
     $client = new SoapClient($this->getUrl());
     $params = array('query' => $query, 'tmid' => $this->getTopicMap());
     if ($this->getSyntax() != '') {
         $params['syntax'] = $this->getSyntax();
     }
     $r = $client->getTolog($params);
     return $r->any;
 }