You need to sign in to do that
Don't have an account?

REST API not responding?
My php app that has been working fine for months is down today.
try {
$mylogin = $mySforceConnection->login($sfuser, $sfpass.$sftoken);
} catch (Exception $e){
$result['exception'] = $e;
}
$result is now returning:
"exception": {
"faultstring": "Could not connect to host",
"faultcode": "HTTP"
}
If I enter "http://soap.sforce.com/" in my browser I get host not found. It's not just me, http://downforeveryone.com/soap.sforce.com/ says it's down for everyone.
Is the API really down? Workbench works fine for me.
try {
$mylogin = $mySforceConnection->login($sfuser, $sfpass.$sftoken);
} catch (Exception $e){
$result['exception'] = $e;
}
$result is now returning:
"exception": {
"faultstring": "Could not connect to host",
"faultcode": "HTTP"
}
If I enter "http://soap.sforce.com/" in my browser I get host not found. It's not just me, http://downforeveryone.com/soap.sforce.com/ says it's down for everyone.
Is the API really down? Workbench works fine for me.
See Salesforce disabling TLS 1.0 (https://help.salesforce.com/apex/HTViewSolution?id=000221207)
All Answers
Where did you get the URL "http://soap.sforce.com/" from? As far as I know this is only used in the namespaces of the WSDL.
Finally, it might be worth checking trust.salesforce.com (http://trust.salesforce.com/) for any known issues.
Yes, I found soap.sforce.com in the php toolkit so thought to check if that was working.
See Salesforce disabling TLS 1.0 (https://help.salesforce.com/apex/HTViewSolution?id=000221207)