I'm having the same problem, I think.
After creating a partner session, I'll query:
Code:
$query = "SELECT Id, Name from Account";
$resultObject = $mySforceConnection->query(($query));
print_r($resultObject);
and receive an empty response:
Code:
QueryResult Object ( [queryLocator] => [done] => 1 [records] => Array ( ) [size] => 0 )
the strange thing is, I can query a custom object just fine and get all the data I want out of it... it's just the standard objects that won't open up!
oh yeah, and I've re-downloaded the wsdl files from salesforce, put them on my server, and disabled my php's wsdl caching.
Bookmarks