I'm trying to develop a simple app that gets data from web service and displays it
It throws exception exactly when he calls response.execute(client)
package com.example.webbasedapp;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URI;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import android.util.Log;
public class GETMethods {
public String getInternetData() throws Exception{
    BufferedReader in=null;
    String Data=null;
    try{
        HttpClient client=new DefaultHttpClient();
        URI web=new URI("http://www.mybringback.com/");
        HttpGet request = new HttpGet();
        request.setURI(web);
        HttpResponse reponse=client.execute(request);
        Log.v("response code", reponse.getStatusLine()
                .getStatusCode() + ""); 
        InputStream inp=reponse.getEntity().getContent();
        in=new BufferedReader(new InputStreamReader(inp));
        StringBuffer buf=new StringBuffer();
        String l="";
        String nl=System.getProperty("line.separator");
        while((l=in.readLine())!=null){
            buf.append(l+nl);
        }
        in.close();
        Data=buf.toString();
        return Data;
    }finally{
        if(in!=null){
            try{
                in.close();
                return Data;
            }catch (Exception e){
                Log.d("error",e.toString());
            }
        }
    }
}
}
And this is my main activity
package com.example.webbasedapp;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.widget.TextView;
import android.widget.Toast;
public class Home extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_home);
    TextView test = (TextView) findViewById(R.id.data);
    GETMethods data = new GETMethods();
    String d = null;
    try {
        d = data.getInternetData();
        // test.setText(d);
    } catch (Exception e) {
        // TODO Auto-generated catch block
        d = "bla";
        Toast.makeText(this, e.getMessage(), Toast.LENGTH_SHORT).show();
        // Log.d("testW",e.getMessage());
    }
    test.setText(d);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.home, menu);
    return true;
}
}
 
     
     
    