httpclient を使用して、xml を Java に投稿しています。応答でxmlも期待しています。応答を xml として解析するにはどうすればよいですか?
これは私がこれまでに持っているものです
HttpClient cliet = HttpClientFactory.getClient("mhurl.com");
...
PostMethod post;
post.setRquestEntity(new StringRequestEntity(myxml_in_string,"xml",...);
...
int result = client.executeMethod(post);
InputStream in = post.getRespoinseBodyAsStream();
?? //Not sure how to handle the response from here
ありがとう。