i need some help here, i found here many answers from how to access values from a object. but no ways to deserealize an xml in an object usable, because when i try to use the function simplexml_load_string() from this xml:
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header />
<soapenv:Body>
<e:EnviarLoteRpsEnvio xmlns:e="http://www.betha.com.br/e-nota-contribuinte-ws">
... SOME IMPORTANT XML ...
</e:EnviarLoteRpsEnvio>
</soapenv:Body>
</soapenv:Envelope>
this loses some data that contains namespaces and show an incomplete result:
object(SimpleXMLElement)#1 (2) { ["Header"]=> object(SimpleXMLElement)#2 (0) { } ["Body"]=> object(SimpleXMLElement)#3 (0) { WOULD SHOW A LOT OF IMORTANT XML HERE, BUT DONT. } }
i know that to acess this values, we need specify the namespace and use xpath like:
$obj_xml_lote->registerXPathNamespace('e','http://www.betha.com.br/e-nota-contribuinte-ws');
all right, but instead to access, i need a complete object for send to an webservice. is this possible?
thanks for all the help.