Hello I am trying to create a app that send out a variable to server but it keep dying when I try to send the response to a server
here is the code
package com.example.door;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
public class MainActivity extends Activity {
Button opendoor;
Button closedoor;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Make Object for Buttons
// sendButton = (Button) findViewById(R.id.sendButton);
Button openbutton = (Button) findViewById(R.id.openButton);
Button closebutton = (Button) findViewById(R.id.closeButton);
}
//When the send button is clicked
public void open(View v)
{
String server ="http://devel.foo.bar/04r0450240";
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost =new HttpPost(server);
try{
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("led", "1"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
try {
httpclient.execute(httppost);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
} catch (IOException e) {
// TODO Auto-generated catch block
Log.i("HTTP Failed", e.toString());
}
return;
}
public void close(View v){
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://devel.foo.bar/04r0450240");
try {
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("led", "0"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
httpclient.execute(httppost);
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
Error 11-01 03:55:04.622: E/AndroidRuntime(1612): FATAL EXCEPTION: main 11-01 03:55:04.622: E/AndroidRuntime(1612): java.lang.IllegalStateException: Could not execute method of the activity 11-01 03:55:04.622: E/AndroidRuntime(1612): at android.view.View$1.onClick(View.java:3633) 11-01 03:55:04.622: E/AndroidRuntime(1612): at android.view.View.performClick(View.java:4240) 11-01 03:55:04.622: E/AndroidRuntime(1612): at android.view.View$PerformClick.run(View.java:17721) 11-01 03:55:04.622: E/AndroidRuntime(1612): at android.os.Handler.handleCallback(Handler.java:730) 11-01 03:55:04.622: E/AndroidRuntime(1612): at android.os.Handler.dispatchMessage(Handler.java:92) 11-01 03:55:04.622: E/AndroidRuntime(1612): at android.os.Looper.loop(Looper.java:137) 11-01 03:55:04.622: E/AndroidRuntime(1612): at android.app.ActivityThread.main(ActivityThread.java:5103) 11-01 03:55:04.622: E/AndroidRuntime(1612): at java.lang.reflect.Method.invokeNative(Native Method) 11-01 03:55:04.622: E/AndroidRuntime(1612): at java.lang.reflect.Method.invoke(Method.java:525) 11-01 03:55:04.622: E/AndroidRuntime(1612): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737) 11-01 03:55:04.622: E/AndroidRuntime(1612): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553) 11-01 03:55:04.622: E/AndroidRuntime(1612): at dalvik.system.NativeStart.main(Native Method) 11-01 03:55:04.622: E/AndroidRuntime(1612): Caused by: java.lang.reflect.InvocationTargetException 11-01 03:55:04.622: E/AndroidRuntime(1612): at java.lang.reflect.Method.invokeNative(Native Method) 11-01 03:55:04.622: E/AndroidRuntime(1612): at java.lang.reflect.Method.invoke(Method.java:525) 11-01 03:55:04.622: E/AndroidRuntime(1612): at android.view.View$1.onClick(View.java:3628) 11-01 03:55:04.622: E/AndroidRuntime(1612): ... 11 more 11-01 03:55:04.622: E/AndroidRuntime(1612): Caused by: android.os.NetworkOnMainThreadException 11-01 03:55:04.622: E/AndroidRuntime(1612): at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1133) 11-01 03:55:04.622: E/AndroidRuntime(1612): at java.net.InetAddress.lookupHostByName(InetAddress.java:385) 11-01 03:55:04.622: E/AndroidRuntime(1612): at java.net.InetAddress.getAllByNameImpl(InetAddress.java:236) 11-01 03:55:04.622: E/AndroidRuntime(1612): at java.net.InetAddress.getAllByName(InetAddress.java:214) 11-01 03:55:04.622: E/AndroidRuntime(1612): at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:137) 11-01 03:55:04.622: E/AndroidRuntime(1612): at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164) 11-01 03:55:04.622: E/AndroidRuntime(1612): at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119) 11-01 03:55:04.622: E/AndroidRuntime(1612): at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:360) 11-01 03:55:04.622: E/AndroidRuntime(1612): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555) 11-01 03:55:04.622: E/AndroidRuntime(1612): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487) 11-01 03:55:04.622: E/AndroidRuntime(1612): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:465) 11-01 03:55:04.622: E/AndroidRuntime(1612): at com.example.door.MainActivity.open(MainActivity.java:51) 11-01 03:55:04.622: E/AndroidRuntime(1612): ... 14 more 11-01 03:55:09.212: I/Process(1612): Sending signal. PID: 1612 SIG: 9
Thanks in advance Jeff