Http POST in BlackBerry

What type of a POST do you use? If you are just passing key-value pairs, then it should be a POST of a “application/x-www-form-urlencoded” content-type. So, what lacks youe code is: 1). Set a proper content-type on your connection: httpConn.setRequestProperty(“Content-Type”, “application/x-www-form-urlencoded”); 2). Prepare the content to be sent to the server via the POST: URLEncodedPostData … Read more