DRAG DROP
You are developing a WCF service.
You need to implement transport security by using NTLM authentication and NetTcpBindings.
You have the following markup:
Which configuration values should you include in Target 1, Target 2, and Target 3 to complete the markup? (To
answer, drag the appropriate configuration values to the correct location or locations in the answer area. Each
configuration value may be used once, more than once, or not at all. You may need to drag the split bar
between panes or scroll to view content.)
Select and Place:

Target 3 should be : ClientCredentialType=”NTLM”
Or Not ? and if not, please explane ?
Thank You
10
0
when you try to build the configuration you can choose security mode = “transport”. After that ClientCredentialType=”Windows” />
I think this should be the right one.
2
2
Indeed, Target 3 is ClientCredentialType=”Ntlm”.
5
1
I agree
3
1
i agree with null
1
2
It should be clientCredentialType=”Windows”. transport of netTCpBinding does not have NTLM as an option.
https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/wcf/transport-of-nettcpbinding
2
4
T3 should be clientCredentialType=”Ntlm”, rest is fine.
4
1
Agree with above all. T3 is clientCredentialType= ‘Ntlm’
https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/wcf/transport-of-basichttpbinding
1
2
There is no option for Ntlm for of . The correct answer is clientCredentialType=”Windows” for Target 3.
https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/wcf/transport-of-nettcpbinding
1
2
netTcpBinding
https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/wcf/nettcpbinding
1
0
3 is clientCredentialType=”Ntlm”
There’s an option for Ntlm: https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/wcf/security-of-nettcpbinding
5
0