0

Using WebApiConfig.Neo4jDriver.Session.Run(...) an error is thrown.

"No operations allowed until you send an INIT message successfully".

Anyone know how to resolve this?

Josh Wheelock
  • 369
  • 4
  • 9

2 Answers2

0

It's likely a permissions issue.

Try setting dbms.security.auth_enabled=false in neo4j.conf, or add authentication credentials to your application.

Josh Wheelock
  • 369
  • 4
  • 9
0

It probably means that you're not authenticated. Perhaps your password has changed, either in your application config, or when you recreated your neo4j server?

See https://github.com/neo4j/neo4j-javascript-driver/issues/119#issuecomment-239099794

Niel de Wet
  • 7,806
  • 9
  • 63
  • 100