I am uploading an image (as base64encode) to a Json webservice. This works fine for Android for any image size, and works fine for iOS for smaller images (< 200k). But when I try to send an image over 200k on iOS I never get a response from the web service, in fact the web service never even seems to receive the post, and the httpclient eventually hits the 60 second timeout (which is way more time than is actually required). After timeout the httpclient status is returned as '0', and with a null ResponseText.
Has anyone else had this problem posting larger amounts of data to a Json web service from iOS? Is there a setting for iOS required to allow larger data, or a restriction with the httpclient in iOS?