Marco,

Sadly, that didn't change things for me. I'm still experiencing
putMethod() calls returning true and then the file doesn't appear in
the WebDAV repository. I'd actually be pretty surprised that supplying
a FileInputStream would work differently than supplying a File, but
I'm willing to try anything... Thanks for your suggestion.

Is there any sort of logging or something like that I can configure?
Or should I resort to capturing packets?

Michael

On 6/19/06, Marco Ferretti <[EMAIL PROTECTED]> wrote:
Hi,

what I do ( and it works for me ) is to use the putMethod that takes a
String and an InputStream as parameters .
The String is the path where to store the file ... so what I'd do is

result = webdavResource.putMethod(path, (InputStream) inputStream);

where

FileInputStream inputStream = new FileInputStream(toSend) ;




hope it helps.


Marco

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to