I've got an app engine app set up. It's set up with billing and I have extension="curl.so" in my php.ini file so I think cUrl should work. It is set up to allow cross domain requests.
I'm attempting to send data (via a jquery ajax post) to the app, then have it use curl to send the data somewhere else.
If I send no data with the ajax request, the curl works and the final destination responds telling app engine that there's no data, app engine successfully passes it back to the ajax callback (as expected).
However if I send data along, the app engine responds with a 500 error. It appears to be breaking during the curl_exec.
Everything works fine if I run it through the local server.
Does anyone have any idea what might be inhibiting app engine from allowing this?