Nina: simplexml vs. SOAP xml

Beitrag lesen

Hi,

mache ich etwas falsch oder funktioniert es mit namespaces auch nicht?
<?
function display($in) {
    $xml = simplexml_load_file($in);
 print_r($xml);
    $manifest = $xml->children('http://www.w3.org/2003/05/soap-envelope');
 print_r($manifest);
}
echo display('regionen.xml');
?>