I keep getting a "null" exception when I run this code. If I manually type the url string into my browser the php script posts "{query_result:SUCCESS}" indicating it worked, but when I try it via this code I just get the Exception e as "null". Can anyone help?
protected String signUp(String username) {
        String link = "http://12.34.56.78/JSON_addUser.php";
        String data = "";
        BufferedReader bufferedReader;
        String result = "";
        String message;
        try {
            data += "?username=" + URLEncoder.encode(username, "UTF-8");
            link += data;
            URL url = new URL(link);
            HttpURLConnection con = (HttpURLConnection) url.openConnection();
            bufferedReader = new BufferedReader(new InputStreamReader(con.getInputStream()));
            result = bufferedReader.readLine();
            return result;
        } catch (Exception e) {
            message = "Exception trying:  " + link + "   Got: " + e.getMessage() + result;
            return message;
        }
    }
 
     
    