Professional Android Application Development의 Chapter 5 Example인 Earthquake App을 만들어서
 
실행 했는데 아래 코드에서 에러가 나고 있습니다.
=========================================================================
   private void refreshEarthquakes() {
     URL url;
     
     try {
      String quakeFeed = getString(R.string.quake_feed);
      url = new URL(quakeFeed);
      
      URLConnection connection;
      connection = url.openConnection();
      
      HttpURLConnection httpConnection = (HttpURLConnection)connection;
      int responseCode = httpConnection.getResponseCode();
      
      if(responseCode == HttpURLConnection.HTTP_OK) {
       InputStream in = httpConnection.getInputStream();
=========================================================================
Timeout이 되어 계속 에러 팝업이 발생하네요.
 
URL은 http://earthquake.usgs.gov/eqcenter/catalogs/1day-M2.5.xml 입니다.
 
Browser로 접속 시도시에는 정상적으로 Data 보여지고 있습니다.
 
Log cat 정보를 보려고 했으나 문제 상황의 Log를 받지를 못해서 같이 올리지 못 했습니다.
 
위 문제 확인 부탁 드립니다.