1 | <?xml version="1.0" encoding="utf-8" ?>
|
---|
2 | <configuration>
|
---|
3 | <configSections>
|
---|
4 | </configSections>
|
---|
5 | <connectionStrings>
|
---|
6 | </connectionStrings>
|
---|
7 | <runtime>
|
---|
8 | <gcServer enabled="true" />
|
---|
9 | </runtime>
|
---|
10 | <system.data>
|
---|
11 | <DbProviderFactories>
|
---|
12 | <remove invariant="System.Data.SQLite"/>
|
---|
13 | <add name="SQLite Data Provider" invariant="System.Data.SQLite"
|
---|
14 | description=".Net Framework Data Provider for SQLite"
|
---|
15 | type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
|
---|
16 | <remove invariant="System.Data.SqlServerCe.3.5" />
|
---|
17 | <add name="Microsoft SQL Server Compact Data Provider" invariant="System.Data.SqlServerCe.3.5"
|
---|
18 | description=".NET Framework Data Provider for Microsoft SQL Server Compact"
|
---|
19 | type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=3.5.1.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"/>
|
---|
20 | </DbProviderFactories>
|
---|
21 | </system.data>
|
---|
22 | <system.serviceModel>
|
---|
23 | <bindings>
|
---|
24 | <wsHttpBinding>
|
---|
25 | <binding name="WSHttpBinding_IUpdateLocation" closeTimeout="00:01:00"
|
---|
26 | openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
|
---|
27 | bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
|
---|
28 | maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
|
---|
29 | messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
|
---|
30 | allowCookies="false">
|
---|
31 | <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
|
---|
32 | maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
33 | <reliableSession ordered="true" inactivityTimeout="00:10:00"
|
---|
34 | enabled="false" />
|
---|
35 | <security mode="Message">
|
---|
36 | <transport clientCredentialType="Windows" proxyCredentialType="None"
|
---|
37 | realm="" />
|
---|
38 | <message clientCredentialType="Windows" negotiateServiceCredential="true"
|
---|
39 | algorithmSuite="Default" establishSecurityContext="true" />
|
---|
40 | </security>
|
---|
41 | </binding>
|
---|
42 | </wsHttpBinding>
|
---|
43 | </bindings>
|
---|
44 | <client>
|
---|
45 | <endpoint address="http://localhost:59253/UpdateLocation.svc"
|
---|
46 | binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IUpdateLocation"
|
---|
47 | contract="UpdateLocationReference.IUpdateLocation" name="WSHttpBinding_IUpdateLocation">
|
---|
48 | <identity>
|
---|
49 | <dns value="localhost" />
|
---|
50 | </identity>
|
---|
51 | </endpoint>
|
---|
52 | </client>
|
---|
53 | </system.serviceModel>
|
---|
54 | </configuration> |
---|