POST data not being received

Posted by Alexander on Server Fault See other posts from Server Fault or by Alexander
Published on 2010-03-07T08:36:58Z Indexed on 2010/03/08 20:51 UTC
Read the original article Hit count: 364

Filed under:
|
|
|
|

I've got an iPhone App that is supposed to send POST data to my server to register the device in a MySQL database so we can send notifications etc... to it. It sends it's unique identifier, device name, token, and a few other small things like passwords and usernames as a POST request to our server. The problem is that sometimes the server doesn't receive the data. And by this I mean, its not just receiving blank values for the POST inputs but, its not receiving ANY post data at all. I am logging all POST inputs to my server into some log files and when the script that relies on the POST data from the device fails (detects no data) I notice that its because NO POST data was sent. Is this a problem on the server, like refusing data or something or does this have to be on the client's side? What could be causing this?

© Server Fault or respective owner

Related posts about php

Related posts about post