php - Can access WSDL only with proxy. Straight access does not work -
i getting error:
fatal error: uncaught soapfault exception: [wsdl] soap-error: parsing wsdl: couldn't load 'http://217.194.255.193:8080/work/ws/ws1.1cws?wsdl' : failed load external entity
when try access wsdl in browser cyclic authorization issue if password doesnt fit.
i have tried use several anonymizers, of them act browser itself, 1 of anonymous services worked , managed see file.
anybody has ideas can cause such problem?
here code using:
ini_set("soap.wsdl_cache_enabled", "0"); header('content-type: text/html; charset=utf-8'); $client = new soapclient("http://217.194.255.193:8080/work/ws/ws1.1cws?wsdl", array( 'login' => 'log', 'password' => 'pass', 'trace' => true, 'features' => soap_use_xsi_array_type, ) );
Comments
Post a Comment