I have a big problem to get article body content with php (trought SOAP module) I prefer to use SOAP module instead of manual query to OTRS Database...
But when i do :
Code: Select all
$article_datas = $this->soapclient->__soapCall("Dispatch", array($this->user, $this->pass,
"TicketObject", "ArticleGet",
"ArticleID", $article_id,
));
$article_datas is an array with all data, and hash values... I can't do $article_datas['Body'] to get the body content... why ?
how to do that? (php)
thanks a lot