1 <?xml version="1.0" encoding="utf-8" ?>
5 <endpoint name="HttpCookie"
6 address="http://localhost/ServiceModelSamples/Service.svc"
7 binding="basicHttpContextBinding"
8 bindingConfiguration="securedBasicHttp"
9 contract="Microsoft.WorkflowServices.Samples.ICalculator" />
10 <endpoint name="ContextOverHttp"
11 address="http://localhost/ServiceModelSamples/Service.svc/ContextOverHttp"
12 binding="wsHttpContextBinding"
13 contract="Microsoft.WorkflowServices.Samples.ICalculator" />
16 <basicHttpContextBinding>
17 <binding name="securedBasicHttp" allowCookies="true">
18 <security mode="TransportCredentialOnly">
19 <transport clientCredentialType="Ntlm" />
22 </basicHttpContextBinding>
24 </system.serviceModel>