}
private static void propfindCalendar( HttpClient client ) throws UnsupportedEncodingException, IOException {
PropFindMethod m = new PropFindMethod( "http://localhost:9080/calendarHome/calendarOne" );
m.setRequestHeader( "depth", "0" );
m.setRequestEntity( new StringRequestEntity( "<x0:principal-search-property-set xmlns:x0=\"DAV:\"/>", "text/xml", "UTF-8" ) );
int result = client.executeMethod( m );
System.out.println( "result: " + result );
String resp = m.getResponseBodyAsString();
System.out.println( "response--" );
System.out.println( resp );
}