Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <bindings>
  2. <basicHttpBinding>
  3. <binding name="https">
  4. <security mode="Transport" />
  5. </binding>
  6. </basicHttpBinding>
  7. </bindings>
  8. <behaviors>
  9. <serviceBehaviors>
  10. <behavior name="metadata">
  11. <serviceMetadata httpsGetEnabled="true" />
  12. </behavior>
  13. </serviceBehaviors>
  14. </behaviors>
  15. <services>
  16. <service name="..." behaviorConfiguration="metadata">
  17. <endpoint address="..." contract="..." binding="basicHttpBinding"
  18. bindingConfiguration="https" />
  19. </service>
  20. </services>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement