I'm using HTTP::DAV to upload files to Plone. It's pretty simple, and used to work in Plone3. Something like:

$dav = new HTTP::DAV; $dav->credentials("foo","bar",$url"); $dav->open($url); $dav->put($file);

If I try this with Cadaver in Plone4, I get an HTTP 500 error if I try to upload a file that does not exist on the server. If the file does exist; I get a 401 not authorized response, cadaver re-tries with the credentials and then presents the credentials on every subsequent request and is able to upload a file that does not already exist.

In HTTP::DAV, the credentials are never presented - at least in my simple calls - without a prior 401 response, so I can never upload a new file.

This is arguably a bug in Plone4, and I have reported it, but meanwhile my system is broken. Is there a way to tell HTTP::DAV to present credentials promiscuously ?


In reply to Fine-tuning authentication in HTTP::DAV by adaviel

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.