Hello,
I am trying out Event Store, but experiencing some basic difficulties.
I am trying to read/modify metadata (ACL), since I want to use catchup subscription for all events, I need to add a user to ACL for $all.
I can go to the webinterface: http://localhost:2113/streams/%24all without any problems, but when I click the metadata link (http://localhost:2113/streams/%24all/metadata) I get a http 404.
The same is experienced using the http api (via curl). A custom created stream can easily be accessed: curl -i "http://127.0.0.1:2113/streams/user-f0988689e6d449cb8eebee362e300cac"
The output states the URL for metadata:
{
“uri”: “http://127.0.0.1:2113/streams/user-f0988689e6d449cb8eebee362e300cac/metadata”,
“relation”: “metadata”
}
But 404 Not Found when querying the address:
$ curl -i http://127.0.0.1:2113/streams/user-f0988689e6d449cb8eebee362e300cac/metadata --user admin:changeit
HTTP/1.1 404 Not Found
Content-Length: 0
Content-Type: text/plain; charset: utf-8
Server: Microsoft-HTTPAPI/2.0
Access-Control-Allow-Methods: GET, POST, GET, OPTIONS
Access-Control-Allow-Headers: Content-Type, X-Requested-With, X-PINGOTHER
Access-Control-Allow-Origin: *
- Morten.