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
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
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
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
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
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
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