summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.5/samples/store-android/src/services/json/rpc/JSONRpc.java
blob: 927a840b86a44e90753b66d65a77fa9b91b1d6e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package services.json.rpc;

import java.io.IOException;

import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;
import org.json.JSONException;
import org.json.JSONObject;

public class JSONRpc {

	protected JSONRpc() {

	}

	public static JSONObject invoke(String serviceURI, String rpcRequest) throws JSONException{
		HttpClient httpClient = new DefaultHttpClient();
		HttpPost httpPost = new HttpPost(serviceURI);

		JSONObject result = null;
		try {
			httpPost.setHeader("Content-Type", "text/xml");
			httpPost.setEntity(new StringEntity(rpcRequest));

			HttpResponse httpResponse = httpClient.execute(httpPost);
			if (httpResponse.getStatusLine().getStatusCode() == 200) {
				String jsonResult = EntityUtils.toString(httpResponse.getEntity());
				result = new JSONObject(jsonResult);
			} else {
				String errorMessage = httpResponse.getStatusLine()
						.getReasonPhrase();
				System.out.println(errorMessage);
			}
		} catch (IOException e) {
			e.printStackTrace();
		}

		return result;
	}
}