TL; DR;正確的網址 - http://localhost:7474/db/data/
看起來您的設置中存在小問題/拼寫錯誤。
讓我們通讀所有這些東西。
我會在我的例子中使用curl
。
獲取數據庫根:
curl -i --user neo4j:neo4j http://localhost:7474
結果:
HTTP/1.1 200 OK
Date: Wed, 21 Oct 2015 14:14:20 GMT
Content-Type: application/json; charset=UTF-8
Access-Control-Allow-Origin: *
Content-Length: 100
Server: Jetty(9.2.4.v20141103)
{
"management" : "http://localhost:7474/db/manage/",
"data" : "http://localhost:7474/db/data/"
}%
好。讓我們嘗試獲取data
網址。
$ curl -i --user neo4j:neo4j http://localhost:7474/db/data/
HTTP/1.1 200 OK
Date: Wed, 21 Oct 2015 14:16:43 GMT
Content-Type: application/json; charset=UTF-8
Access-Control-Allow-Origin: *
Content-Length: 730
Server: Jetty(9.2.4.v20141103)
{
"extensions" : { },
"node" : "http://localhost:7474/db/data/node",
"node_index" : "http://localhost:7474/db/data/index/node",
"relationship_index" : "http://localhost:7474/db/data/index/relationship",
"extensions_info" : "http://localhost:7474/db/data/ext",
"relationship_types" : "http://localhost:7474/db/data/relationship/types",
"batch" : "http://localhost:7474/db/data/batch",
"cypher" : "http://localhost:7474/db/data/cypher",
"indexes" : "http://localhost:7474/db/data/schema/index",
"constraints" : "http://localhost:7474/db/data/schema/constraint",
"transaction" : "http://localhost:7474/db/data/transaction",
"node_labels" : "http://localhost:7474/db/data/labels",
"neo4j_version" : "2.2.5"
}%
一切按預期工作。沒有必要另外啓用某些東西。
如果您通過網絡管理員連接 - 您是否需要傳遞用戶/傳球組合?如果是這樣,你是否也通過Neo4jClient的構造函數傳遞它?如果可能的話,你可以把你的C#代碼放到哪裏? –