Re: [Neo4j] Re: C++ library enable only insecure connections

2017-02-07 Thread 'Michael Hunger' via Neo4j
Shouldn't you raise the issue on the libneo4j-client repository? On Tue, Feb 7, 2017 at 3:20 PM, Andy wrote: > I Java was: > public Neo4JOut(String ip, String user, String password, boolean > encryption) { > Config cfgSSL; > if (encryption) > cfgSSL = Config.build().w

[Neo4j] Re: C++ library enable only insecure connections

2017-02-07 Thread Andy
I Java was: public Neo4JOut(String ip, String user, String password, boolean encryption) { Config cfgSSL; if (encryption) cfgSSL = Config.build().withEncryptionLevel(Config.EncryptionLevel.REQUIRED).toConfig(); else cfgSSL = Config.build().withEncr

[Neo4j] Re: C++ library enable only insecure connections

2017-02-07 Thread Andy
I call neo4j_config_t *config = neo4j_new_config(); but neo4j_connect("neo4j://neo4j:pass@localhost:7687", config, NEO4J_CONNECT_DEFAULT); is bad -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emai

[Neo4j] C++ library enable only insecure connections

2017-02-07 Thread Andy
I try neo4j_connection_t *connection = neo4j_connect("neo4j://neo4j:pass@localhost:7687", NULL, NEO4J_CONNECT_DEFAULT); instead of NEO4J_INSECURE and can't declare neo4j_config_t config; -- You received this message because you are subscribed to the Google Groups "Neo4j" group. T

Re: [Neo4j] i see no properties after database copy

2017-02-07 Thread Koen Kleingeld
Hi , that gives me "null" values for the attribute.. btw. i see a lot of propertystore files (with data in) in ../databases/graph.db. and file/folder permissons look very simular to a fresh/empty graph.db .. Anyways .. i will try again first on windows .. than copy across graph.db .. 2017-02-07

Re: [Neo4j] i see no properties after database copy

2017-02-07 Thread 'Michael Hunger' via Neo4j
What happens if you explicitely return properties from your cypher query? Perhaps you forgot the property store or the permissions are wrong? On Tue, Feb 7, 2017 at 9:53 AM, Koen Kleingeld wrote: > Hi Michael, sure i see a graph represented in the browser but they have no > properties anymore. I

Re: [Neo4j] LDAP authentication problems

2017-02-07 Thread 'Michael Hunger' via Neo4j
Sean, LDAP only works with Neo4j enterprise. You can sign up for it either as a trial or for personal use or our startup program. Cheers, Michael On Fri, Feb 3, 2017 at 10:10 PM, Sean Whalen wrote: > Hi all, > > I've configured LDAP support as described here https://neo4j.com/docs/ > operation