franzinc / agraph-csharp-client

A C# client for AllegroGraph

This URL has Read+Write access

agraph-csharp-client / App.config
100644 48 lines (47 sloc) 2.276 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.serviceModel>
        <behaviors>
            <serviceBehaviors>
                <behavior name="AllegroGraphCSharpClient.CatalogBehavior">
                    <serviceMetadata httpGetEnabled="true" />
                    <serviceDebug includeExceptionDetailInFaults="false" />
                </behavior>
                <behavior name="AllegroGraphCSharpClient.RepositoryBehavior">
                    <serviceMetadata httpGetEnabled="true" />
                    <serviceDebug includeExceptionDetailInFaults="false" />
                </behavior>
            </serviceBehaviors>
        </behaviors>
        <services>
            <service behaviorConfiguration="AllegroGraphCSharpClient.CatalogBehavior"
                name="AllegroGraphCSharpClient.Catalog">
                <endpoint address="" binding="wsHttpBinding" contract="AllegroGraphCSharpClient.ICatalog">
                    <identity>
                        <dns value="localhost" />
                    </identity>
                </endpoint>
                <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
                <host>
                    <baseAddresses>
                        <add baseAddress="http://localhost:8731/Design_Time_Addresses/AllegroGraphCSharpClient/Catalog/" />
                    </baseAddresses>
                </host>
            </service>
            <service behaviorConfiguration="AllegroGraphCSharpClient.RepositoryBehavior"
                name="AllegroGraphCSharpClient.Repository">
                <endpoint address="" binding="wsHttpBinding" contract="AllegroGraphCSharpClient.IRepository">
                    <identity>
                        <dns value="localhost" />
                    </identity>
                </endpoint>
                <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
                <host>
                    <baseAddresses>
                        <add baseAddress="http://localhost:8731/Design_Time_Addresses/AllegroGraphCSharpClient/Repository/" />
                    </baseAddresses>
                </host>
            </service>
        </services>
    </system.serviceModel>
</configuration>