I am running RavenDB server build 2174 with the following lines added to the Raven.Server.exe.config file:
<add key="Raven/Authorization/Windows/RequiredGroups" value="localhost\Administrators"/>
<add key="Raven/AnonymousAccess" value="None"/>
I have also setup an ApiKey that my application uses to interact with the RavenDB server and database. The ApiKey has been given Admin rights (checked the admin checkbox) for the database that I am working with.
With the configuration given above, I am trying to load attachments from the RavenDB database using the DatabaseCommands.GetAttachment() method. Whenever I do this, I get a 401 (Unauthorized) response. I have been able to get it working by using the With() method on the DatabaseCommands object to pass in authentication using a login and password combination from the Administrators group. Here is the line of code that does this
SiteDocumentStore.DatabaseCommands
.With(new NetworkCredential("login", "password", "domain"))
.GetAttachment(attachment_key);
So my question is, how can I use the GetAttachment() method without having to use the With() and pass in login credentials? The DocumentStore already has the ApiKey and it using it for all the other commands without the need to do anything special. In fact the PutAttachment() method works without having to use the With() method, so why can't the GetAttachment()? Is this an oversight or a bug? Or is there something that I'm just no getting?