i have a php soapserver running. it is written with the native php soap extension. This service loads a local file and handles it.
file_get_contents("C:/xampp/htdocs/test.xml");
but if i try to get a webserver file like this
file_get_contents("http://192.168.10.11/test.xml");
it doesnt work and the webservie returns "faild to load external entity http"
are there any restrictions in a php soapserver that i can't get file over http????
the actual problem is, that i want to call a webservice inside that soapserver. like a webservice chain... but this always fails with the above error message...
do you have any solutions for this?
Thanks a lot!