I usually use this:
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost(postURL);
...
HttpResponse responsePOST = client.execute(post);
Is it possible to pass parameters in a combination of GET and POST in the same request?
I mean some parameters might be pretty long… and I dont want to use GET, I want POST, but to some I do want the GET.
So?
GET and POST are mutually exclusive, you do one or the other (or HEAD, PUT etc). A request cannot be both.