I have a website
(PHP) hosted in Yahoo small business and application
(Java) Hosted in Rackspace.
I am making a file_get_contents
from website to application. which works fine in my local. but when i try the same after deploying it in server does not work.
Here i am making arequest which sends list of training in JSON
format.
PHP part
$trainingArrayJson = file_get_contents('http://mywebapplication.com/publicTraining/getTrainingsAsJson/');
$trainingArray = json_decode($trainingArrayJson);
-------
-----
this is not working.
if i do
$trainingArrayJson = file_get_contents('http://localhost:8080/publicTraining/getTrainingsAsJson/');
$trainingArray = json_decode($trainingArrayJson);
this works fine.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…