Webからデータを取得するためのこのコードがあります
String LOGIN_URL = "http://www.mywebsite.com/services/login.php";
RestClient client = new RestClient(LOGIN_URL );
client.AddParam("email", tbEmail.getText().toString());
client.AddParam("pwd", Password);
client.Execute(RequestMethod.GET);
String response = client.getResponse();
JSONObject jo = new JSONObject(response);
また、Android 2.3 のエミュレーターでは正常に動作し、応答は私のデータですが、Android 4.0.4 (CyanogenMod9) を搭載した携帯電話でこの同じコードを実行すると、応答は null になります。何が悪いのか教えてください。