freme-project / freme-ner

Apache License 2.0
6 stars 1 forks source link

Using a private dataset #90

Closed jnehring closed 8 years ago

jnehring commented 8 years ago

I created a private dataset with name "jan-test-2". I can see it when I call GET http://api-dev.freme-project.eu/current/e-entity/freme-ner/datasets (with the right token). When I do enrichment against this dataset I get the message:

{
  "exception": "eu.freme.common.exception.OwnedResourceNotFoundException",
  "path": "/e-entity/freme-ner/documents",
  "message": "Can not find DatasetMetadata with identifier='jan-test-2'",
  "error": "Not Found",
  "status": 404,
  "timestamp": 1460992027623
}

I get the same message when I call http://api-dev.freme-project.eu/current/e-entity/freme-ner/datasets/jan-test-2 (with correct token).

ArneBinder commented 8 years ago

There is no dataset jan-test-2, but jan-test-set-2.

This works fine (replace ADMIN_TOKEN):

curl -X POST --header "Content-Type: text/n3" --header "Accept: text/n3" --header "X-Auth-Token: ADMIN_TOKEN" "http://api-dev.freme-project.eu/current/e-entity/freme-ner/documents?input=%20%20%40prefix%20nif%3A%3Chttp%3A%2F%2Fpersistence.uni-leipzig.org%2Fnlp2rdf%2Fontologies%2Fnif-core%23%3E%20.%0A%20%20%40prefix%20itsrdf%3A%20%3Chttp%3A%2F%2Fwww.w3.org%2F2005%2F11%2Fits%2Frdf%23%3E%20.%0A%20%20%40prefix%20xsd%3A%20%3Chttp%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23%3E%20.%0A%0A%20%20%3Chttp%3A%2F%2Fexample.org%2F%23char%3D0%2C42%3E%0A%20%20%20%20%20%20%20%20%20%20a%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20nif%3AString%20%2C%20nif%3AContext%20%2C%20nif%3ARFC5147String%20%3B%0A%20%20%20%20%20%20%20%20%20%20nif%3AbeginIndex%20%20%220%22%5E%5Exsd%3Aint%20%3B%0A%20%20%20%20%20%20%20%20%20%20nif%3AendIndex%20%20%20%20%2242%22%5E%5Exsd%3Aint%20%3B%0A%20%20%20%20%20%20%20%20%20%20nif%3AisString%20%20%20%20%22Welcome%20to%20Berlin%2C%20the%20capital%20of%20Germany!%22%5E%5Exsd%3Astring%20.&informat=text&outformat=turtle&language=en&dataset=jan-test-set-2&mode=all"
jnehring commented 8 years ago

Ok thanks this bug report is invalid.