I’m testing the use of Domino Access Services (DAS) on a 9.0.1 server. The test database has been enabled for DAS in the application properties and in the only view in the database. I am using the POST method of the document collection resource to create a new document:. I’m having trouble creating a document - instead of adding a new document, the server is returning a list of existing documents. I’ve given the ‘anonymous’ user manager access to make sure the problem is not in ACL security. I’ve tried creating documents with alternative forms, and I get the same result. There is no form security.
my POST looks like this:
POST /database/api/data/documents?form=formname
Content-Type: application/json
{
“Field1”:“xxx”,
“Field2”:“yyy”
}
but all that comes back is a list of the 3 documents in the database (that I created through the Notes client). Does anyone have any ideas about what I’m doing wrong?
Thanks in advance.