I want to connect to a URL and disconnect after that. But after my Update on Android 4.1 (worked before on 2.3.7) it doesn't work anymore! :/
Why? I have no Idea:
public void insert_into_Mysql() {
URL url = new URL("http://***/insertOrder.php?product="+product+"&owner="+owner);
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
try {
openActivityOverview(product);
} finally {
urlConnection.disconnect();
}
Noting is inserted in the MySql-Table...
Thanks for Help! :)