I am new to Neo4j and ran into a problem executing the C# sample code from Neo4j Developer Guides | Neo4j Graph Database Platform. I am using VS2019 and the server runs at localhost:7474. (the last line from the neo4j console command is 2020-02-05 18:41:05.789+0000 INFO Remote interface available at http://localhost:7474/.
The error message is
System.Exception
HResult=0x80131500
Message=Received an unexpected HTTP status when executing the request.
The response status was: 404 Not Found
I checked the following:
List item password is correct. If I use wrong password, it returns a clear message indicating my password is wrong
List item tried .net core and .net framework 4.8.
List item change the URI in the following code from lcoalhost:7474/db/data to localhost:7474/neo4j/data or localhost:7474/db/neo4j. All of them return the same erorr message.
public Social()
{
_graphClient = new GraphClient(new Uri("http://localhost:7474/db/data"), "neo4j", "mypassword");
_graphClient.Connect();
}
I am wondering if my community server installation has a problem. I saw another screenshot which shows the curl 7474 port has an entry which contains "http://localhost:7474/db/data".
I create another neo4j database whose version is 3.5.14 using Neo4j Desktop. This new database works fine with the community driver. And the curl localhost:7474 shows data entry.