Jackalope\Transport\Jackrabbit\Request::executeDom PHP 메소드

executeDom() 공개 메소드

Returns a DOMDocument from the backend or throws exception. Does error handling for both connection errors and dcr:exception response
public executeDom ( boolean $forceMultiple = false ) : DOMDocument
$forceMultiple boolean whether to force parallel requests or not
리턴 DOMDocument The loaded XML response text.
    public function executeDom($forceMultiple = false)
    {
        $xml = $this->execute(null, $forceMultiple);
        // create new DOMDocument and load the response text.
        $dom = new DOMDocument();
        $dom->loadXML($xml);
        return $dom;
    }