Tag: programming languages

Questions Related to programming languages

Multiple choice technology programming languages
  1. Host the service in a Windows service

  2. Host the service in a Windows Presentation Foundation application

  3. Host the service under IIS 7.0 by using IIS 6.0 compatibility mode

  4. Host the service under IIS 7.0 by using Windows Activation Services

Reveal answer Fill a bubble to check yourself
A Correct answer
Multiple choice technology programming languages
  1. Use a BasicHttpBinding binding with the security mode set to Message

  2. Use a BasicHttpBinding binding with the security mode set to TransportWithMessageCredential

  3. Use a WSFederationHttpBinding binding with the security mode set to Message

  4. Use a WSFederationHttpBinding binding with the security mode set to TransportWithMessageCredential

Reveal answer Fill a bubble to check yourself
C Correct answer
Multiple choice technology programming languages
  1. <windows allowedImpersonationLevel="Delegation"/>

  2. <windows allowedImpersonationLevel="Impersonation"/>

  3. <windows allowedImpersonationLevel="Identification"/>

  4. <windows allowedImpersonationLevel="Impersonation" allowNtlm="false"/>

Reveal answer Fill a bubble to check yourself
A Correct answer
Multiple choice technology programming languages
  1. <bindings> <wsHttpBinding> <binding name="Binding1"> <security mode="TransportWithMessageCredential" /> </security> </binding> </wsHttpBinding> </bindings>

  2. <bindings> <wsHttpBinding> <binding name="Binding1"> <security mode="TransportWithMessageCredential" > <message clientCredentialType="UserName"/> </security> </binding> </wsHttpBin

  3. <wsHttpBinding> <binding name="WSHttpBinding_ICalculator"> <security mode="Message"> <message clientCredentialType="Certificate" /> </security> </binding> </wsHttpBinding>

  4. <bindings> <wsHttpBinding> <binding name="Binding1"> <security mode="MessageWithTransportCredential" > <message clientCredentialType="UserName"/> </security> </binding> </wsHttpBin

Reveal answer Fill a bubble to check yourself
B Correct answer