Changes
</wsHttpBinding>
</source>
== Transport Security Toggle (HTTP / HTTPS) ==
Controls whether the service endpoints require HTTP or HTTPS at the transport level.
=== HTTP ===
To enable HTTP, set the binding security mode to None.
<source lang="XML">
<security mode="None">
<transport clientCredentialType="None" />
</security>
</source>
=== HTTPS ===
To enable HTTPS, set the binding security mode to Transport.
<source lang="XML">
<security mode="Transport">
<transport clientCredentialType="None" />
</security>
</source>
{{Hint|Transport security mode is the default configuration.}}
{{Attention|The [[Configuration_Files/web.config#HTTPS]] must also be adapted accordingly.}}
== See also ==
