-
Notifications
You must be signed in to change notification settings - Fork 7
Setup
SepiaGroup edited this page Mar 19, 2013
·
3 revisions
In App.Config/Web.Config add the following:
<configuration>
<configSections>
<section name="neo4jRestNet" type="Neo4jRestNet.Configuration.ConnectionSettings, Neo4jRestNet" />
</configSections>
<neo4jRestNet>
<databases>
<add name="neo4j" default="true" https="false" domain="localhost" port="7474" />
</databases>
</neo4jRestNet>
<!- Keys for encrypting Graph Ids - optional ->
<appSettings>
<add key="EncryptIdKey" value="KeyForEncrypting"/>
<add key="EncryptIdIV" value="IVForEncrypting1"/>
</appSettings>
<!-- This is required to support escaped '/' and '.' values in the URL (such as looking up a node via a index) -->
<uri>
<schemeSettings>
<add name="http" genericUriParserOptions="DontUnescapePathDotsAndSlashes"/>
<add name="https" genericUriParserOptions="DontUnescapePathDotsAndSlashes"/>
</schemeSettings>
</uri>
</configuration>Neo4jRestNet.dll
Neo4jRestNet.Core
Neo4jRestNet.Core.CypherQuery
Neo4jRestNet.GremlinPlugin