Skip to content
SepiaGroup edited this page Mar 19, 2013 · 3 revisions

Home

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>

Reference

Neo4jRestNet.dll

Namespace

Neo4jRestNet.Core
Neo4jRestNet.Core.CypherQuery
Neo4jRestNet.GremlinPlugin

Clone this wiki locally