org.apache.http.client.ClientProtocolException
I've made an Android application that uses a X509 certificate (that is in the folder res/raw/mykeystore.bks) to sign to remote server that respond on the 9006 port. the server ask me for a login (username, password). when i make an HTTPGet i've the following exeption: org.apache.http.client.ClientProtocolException Here is my implementation: The main Activity: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button b= (Button) findViewById(R.id.button1); b.setOnClickListener(new OnClickListener() { @Override public