If you
just want to output response you can include:
ByteArrayInputStream inputTemp =
null;
byte[]
b = readFromStream(input);
System.out.print("RESPONSE BODY : " + new String(b));
inputTemp = new ByteArrayInputStream(b);
System.out.print("RESPONSE BODY : " + new String(b));
inputTemp = new ByteArrayInputStream(b);
in WebdavClient.executeMethod(Webdavmethod
method) before:
// Parse
response
ResponseInputStream responseInputStream =
new ResponseInputStream(inputTemp, responseHeaders);
// new ResponseInputStream(input, responseHeaders);
ResponseInputStream responseInputStream =
new ResponseInputStream(inputTemp, responseHeaders);
// new ResponseInputStream(input, responseHeaders);
or,
probably use the interceptor, but it did non work at the time I used my
code.
-----Original Message-----
From: Kurapati, Rama [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 16, 2001 4:44 PM
To: '[EMAIL PROTECTED]'
Subject: Client-PropFind
Hi,Is there any way to display the cilent side PropFindMethod result(XML tree). I am using Slide 1.0.10ThanksRama
