You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "Anthony Ananich (JIRA)" <ji...@apache.org> on 2013/03/14 16:28:13 UTC

[jira] [Created] (COUCHDB-1705) Update Function does not parse multipart/form-data

Anthony Ananich created COUCHDB-1705:
----------------------------------------

             Summary: Update Function does not parse multipart/form-data
                 Key: COUCHDB-1705
                 URL: https://issues.apache.org/jira/browse/COUCHDB-1705
             Project: CouchDB
          Issue Type: Bug
          Components: Database Core, JavaScript View Server
            Reporter: Anthony Ananich


I have a design doc and update handler.
{quote}
function(doc, req) {
    log(req);
    var newdoc = {};
    ...
    return [newdoc, \{
    	code: 200,
    	body: req.uuid
        }];
}
{quote}

I made a HTML file with the following form
{quote}
<form action="http://localhost:5984/db/_design/app/_update/crashreport" method="POST" enctype="multipart/form-data">
<input type="text" name="classname"/><br>
<input type="Submit">
</form>
{quote}

In the log file I can see that POST request body exists, but was not parsed:
{quote}
{ "body" : "------WebKitFormBoundaryE6xRBni3g8MNw14P\r\nContent-Disposition: form-data; name=\"classname\"\r\n\r\nABC\r\n------WebKitFormBoundaryE6xRBni3g8MNw14P--\r\n",
  "form" : {  },
...
{quote}


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira