HttpClient로 본문 요청 작성 XML content-type으로 요청 본문을 작성하려고 하는데 HttpClient Object( http://hc.apache.org/httpclient-3.x/apidocs/index.html )를 사용하는 방법을 모르겠습니다. DefaultHttpClient httpClient = new DefaultHttpClient(); HttpPost httpRequest = new HttpPost(this.url); httpRequest.setHeader("Content-Type", "application/xml"); 그리고 XML로 본문을 계속 작성하는 방법을 모르겠습니다.xml이 다음과 같이 작성된 경우java.lang.String그냥 사용하시면 됩니다.HttpCli..