1 <?xml version=
"1.0" encoding=
"utf-8" ?>
2 <configuration xmlns=
"http://schemas.microsoft.com/.NetConfiguration/v2.0">
5 <!-- use "baseAddress" to configure ServiceHost base address -->
6 <add key=
"baseAddress" value=
"http://localhost:8000/RecipeApp/DocumentService" />
8 <!-- use "storeMode" to configure "private" (ntfs) vs. "shared" (SQL) mode for DocumentService -->
9 <add key=
"storeMode" value=
"private"/>
14 <service name=
"Microsoft.Samples.RecipeCatalog.DocumentService">
15 <!-- use base address provided by host -->
17 binding=
"wsHttpBinding"
18 bindingConfiguration=
"Binding1"
19 contract=
"Microsoft.Samples.RecipeCatalog.IDocumentService" />
25 <binding name=
"Binding1"
26 maxReceivedMessageSize=
"65536"
27 hostNameComparisonMode=
"StrongWildcard"
28 messageEncoding=
"Text"
30 bypassProxyOnLocal=
"false"
31 transactionFlow=
"false">
33 <reliableSession enabled=
"false"
35 inactivityTimeout=
"00:10:00"/>
37 <security mode=
"Message">
38 <message clientCredentialType=
"Windows"
39 negotiateServiceCredential=
"true"
40 algorithmSuite=
"Default" />
46 </system.serviceModel
>