Ejemplo n.º 1
0
 private function loadFault(Operation $operation, DOMElement $node)
 {
     $fault = new Fault($operation, $node->getAttribute("name"));
     $fault->setDocumentation($this->getDocumentation($node));
     $operation->addFault($fault);
     return function () use($fault, $operation, $node) {
         list($name, $ns) = self::splitParts($node, $node->getAttribute("message"));
         $fault->setMessage($operation->getDefinition()->findMessage($name, $ns));
         $this->dispatcher->dispatch('portType.operation.fault', new FaultEvent($fault, $node));
     };
 }