해당 페이지는 php로 만들어져 있는데 출력시 XML파일로 내용을 출력합니다

웹브라우저에서 접속하면 Valid한 XML파일의 내용이 잘 출력이 됩니다.

하지만 첨부한 그림과 같이 <?xml version"1.0"~~~?>

앞에 Warning이 삽입된 이유가 궁금합니다.

php 코드상에 문제가 있는걸까요? 아니면 제가 작성한 코드에 문제가 있을까요?

답변 부탁드려요~

try{
      String url = getString(R.string.url);
      HttpGet getMethod=new HttpGet(url);
      
      try {
                 ResponseHandler<String> responseHandler = new BasicResponseHandler();
                String responseBody=client.execute(getMethod, responseHandler);
     
                Toast.makeText(this,"요청 성공"+responseBody, 4000).show();
      }
      catch (Throwable t) {
                Toast.makeText(this, "요청 실패: "+t.toString(), 4000).show();
      }
     }
     finally{
       }
    }
}




P.S : 웹서버의 주소와 내용을 공개못하는 점 죄송합니다.