<
system.serviceModel
>
<
bindings
>
<
webHttpBinding
>
<
binding
name
=
"SecureHttpBinding"
>
<
security
mode
=
"Transport"
/>
</
binding
>
<
binding
name
=
"SimpleHttpBinding"
>
<
security
mode
=
"None"
/>
</
binding
>
</
webHttpBinding
>
</
bindings
>
<
behaviors
>
<
endpointBehaviors
>
<
behavior
name
=
"ChatServiceBehavior"
>
<
enableWebScript
/>
</
behavior
>
</
endpointBehaviors
>
</
behaviors
>
<
serviceHostingEnvironment
aspNetCompatibilityEnabled
=
"true"
/>
<
services
>
<
service
name
=
"CMS.Chat.ChatService"
>
<
endpoint
address
=
""
behaviorConfiguration
=
"ChatServiceBehavior"
binding
=
"webHttpBinding"
bindingConfiguration
=
"SecureHttpBinding"
contract
=
"CMS.Chat.IChatService"
/>
<
endpoint
address
=
""
behaviorConfiguration
=
"ChatServiceBehavior"
binding
=
"webHttpBinding"
bindingConfiguration
=
"SimpleHttpBinding"
contract
=
"CMS.Chat.IChatService"
/>
</
service
>
<
service
name
=
"CMS.Chat.ChatSupportService"
>
<
endpoint
address
=
""
behaviorConfiguration
=
"ChatServiceBehavior"
binding
=
"webHttpBinding"
bindingConfiguration
=
"SecureHttpBinding"
contract
=
"CMS.Chat.IChatSupportService"
/>
<
endpoint
address
=
""
behaviorConfiguration
=
"ChatServiceBehavior"
binding
=
"webHttpBinding"
bindingConfiguration
=
"SimpleHttpBinding"
contract
=
"CMS.Chat.IChatSupportService"
/>
</
service
>
</
services
>
</
system.serviceModel
>