Uploaded image for project: 'Cocoon'
  1. Cocoon
  2. COCOON-2041

WebDAV Returns improper status on PUT

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.1.11
    • 2.1.12, 2.3.0
    • Blocks: WebDAV
    • None
    • Normal
    • Patch available

    Description

      on PUT, server returns the status 200 "OK", when the proper response seems to 204 "No Content"


      int the put method in webdav.js::: this:

        try {
          var status = repository.save(src,dest);
          sendStatus(status);
        }

      can be changed to this:
        try {
          var status = repository.save(src,dest);
          if(status == 200 ) status = 204;
          sendStatus(status);
        }


      This fixed the issue in my application. However this seems a little hackish and I haven't tested it well.
      The org.apache.cocoon.components.repository.SourceRepository object might be changed instead.

      Attachments

        Activity

          People

            jasha Jasha Joachimsthal
            edriede Edward Riede
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: