Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <system.serviceModel>
  2. <bindings>
  3. <basicHttpBinding>
  4. <binding name="SEWebServiceSoap" >
  5. <security mode="TransportCredentialOnly" >
  6. <transport clientCredentialType="Digest" />
  7. </security>
  8. </binding>
  9. </basicHttpBinding>
  10. </bindings>
  11. <client>
  12. <endpoint address="http://localhost:00000/SEWebService.asmx" binding="basicHttpBinding" bindingConfiguration="SEWebServiceSoap" contract="SEWS.SEWebServiceSoap" name="SEWebServiceSoap" />
  13. </client>
  14. <behaviors>
  15. <endpointBehaviors>
  16. <behavior name="impersonationBehavior">
  17. <clientCredentials>
  18. <!--<windows allowedImpersonationLevel="Impersonation" allowNtlm="false" />-->
  19. <httpDigest impersonationLevel="Impersonation" />
  20. </clientCredentials>
  21. </behavior>
  22. </endpointBehaviors>
  23. </behaviors>
  24. </system.serviceModel>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement