프로요 갤S 에서 테스트 중입니다.
http 연결이 될 때는 잘 실행되지만
http 서버에 접속할 수 없는 경우에는 프로그램이 죽는 황당한 상황이 발생하는군요.
Exception catch 부분에 들어가지도 않고 그냥 죽어 버립니다.

프로요 2.2로 업그레이드를 한 폰에서도 이런 현상이 나타나니 난감하네요...

    public void notifyPhoneOn(String ip, String msg)
    {
        log("try url ip="+ip);  // 잘 찍힘
        int port = 9091;
        try {
            URL url = new URL("http://" + ip + ":" + port+"/notify");
            URLConnection con = url.openConnection();
            String type = con.getContentType();
            BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
            String s = null;
            while ((s = in.readLine()) != null)
            {
            }
            in.close();
            log(ip+" notified ok"); // 연결 성공시에는 잘 찍힘
        }
        catch (ConnectException ex)
        {
            log("ConnectException ip="+ip+" ,msg="+msg+" ,"+ex);  // 연결실패에도 안찍히고 프로그램이 그냥 죽음
        }
        catch (Exception ex) {
            log("Exception ip="+ip+" ,msg="+msg+" ,"+ex);
        }
        catch (Throwable t)
        {
            log("Throwable ip="+ip+" ,msg="+msg+" ,"+t);
        }
    }