Salutations Markus, We are currently investigating this. I have created a Issue Tracker <https://code.google.com/p/googleappengine/issues/detail?id=12287> and I recommended 'Staring' the issue so you can get updates.
On Thursday, August 20, 2015 at 5:50:01 AM UTC-4, Markus Frosch wrote: > > I'm using AppEngine under Windows for development. I've tried to create > data in Datastore. > > Unfortunately CGI/FastCGI will gone every time I call the demo script > > https://github.com/amygdala/appengine_php_datastore_example/blob/master/datastore_connect.php > > > <https://cloud.githubusercontent.com/assets/1529283/9351156/5c24848a-4657-11e5-91e1-43a3e0631f98.png> > > > I've found that this line is producing the issue. > > $service_dataset->commit($dataset_id, $req, []); > > > After looking to the Datastore.php from this lib I've replaced return > value by a simple return. > > /** > > * Commit a transaction, optionally creating, deleting or modifying some > * entities. (datasets.commit) > * > * @param string $datasetId Identifies the dataset. > * @param Google_CommitRequest $postBody > * @param array $optParams Optional parameters. > * @return Google_Service_Datastore_CommitResponse > */ > public function commit($datasetId, > Google_Service_Datastore_CommitRequest $postBody, $optParams = array()) > { > $params = array('datasetId' => $datasetId, 'postBody' => $postBody); > $params = array_merge($params, $optParams); > return; > return $this->call('commit', array($params), > "Google_Service_Datastore_CommitResponse"); > } > > The issue was gone. As expected without data in the Google Datastore. > > After deploying this to the cloud the script is working well. So I think > it's only a local issue. > Is there anybody who have/has the same issue? > > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/da8eed80-4563-4251-90dc-62bce71dfaeb%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
