There is a wsdl url that is created on asp.net.
I can use soapUI, storm etc to connect to it. So the wsdl seems validated. I can open this wsdl in browsers. But when I try to submit this wsdl for online validation, the error says they cannot load the wsdl from the url I gave. And when I try to use
$c = new SoapClient('http://www.myclientssite.com/default.wsdl');
// I hide the site due to it is not for public.
I got the errors like
Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR:
Parsing WSDL: Couldn't load from
What I knew is
1) It shouldn't be my php set up issue, I have been using php to access wsdl all the time, on different platforms too. They all works, except this one. I have tried this one on different server too, they all give the same error.
2) wsdl provider said it was built by asp.net, and other asp.net has no problems to access this wsdl and parse the data.
Are there any known issues with use php to access asp.net generated wsdl? (there is another wsdl by the same data provider on the same server, I have no problem with that wsdl.)