I am learning how to use Soapclient in PHP and I get an error when trying to consume a service:
This returns the following error to me
Parsing WSDL BillServicePortBinding already defined
According to what I was investigating, it is because PHP does not support double namespaces, now it is said that the solution is to download the wsdl locally and consume it. The question is ... Can it be done locally? since php
$client = new SoapClient(null, array('location' => "http://localhost/soap.php", 'uri' => "http://test-uri/"));
Thanks again.