コード例 #1
0
ファイル: SoapServer.php プロジェクト: goetas/webservices
 public function getParameters(BindingOperation $bOperation, Request $request)
 {
     $message = $bOperation->getInput();
     $dom = new XMLDom();
     $dom->loadXMLStrict($request->getContent());
     list($heads, $body) = $this->getEnvelopeParts($dom);
     $params = $this->decodeMessage($body, $bOperation, $bOperation->getInput());
     return $params;
 }