what is overloading in WCF?how to do autentication in WCF.



what is overloading in WCF?how to do autentication in WCF...

Answer / niloy roy

Using the "Name" we can achieve operational overloading
interface IInterfaceName
{
[OperationContract (Name = "aliasName1")]
int MethodName (int param1, int param2);

[OperationContract (Name = "aliasName2")]
double MethodName (double param1, double param1);
}

For authentication:-
Say windows,

set the authentication mode as follows
<authentication mode="Windows" />

then in the end point set bind the configuration as below.

<endpoint address="basic" binding="basicHttpBinding"
contract="WcfServiceLibrary1.IService1"
bindingConfiguration="BND" />

<bindings>
<basicHttpBinding>
<binding name="BND">
<security mode ="Transport">
<transport clientCredentialType ="Windows"/>
</security>
</binding>
</basicHttpBinding>
</bindings>

For to USE IIS,make sure that IIS Annonymous authentication
is DISABLED.

Is This Answer Correct ?    18 Yes 1 No

Post New Answer

More WCF Interview Questions

How can we host wcf service?

0 Answers  


What are the advantages of using wcf?

0 Answers  


explain what is the difference wcf and web services? : Wcf data services

0 Answers  


What are the endpoints in wcf? Or explain abcs of endpoint?

0 Answers  


What is overloading in wcf?

0 Answers  






can you explain fault contracts? : Wcf data services

0 Answers  


What is callback mode in wcf?

0 Answers  


can you explain how to define a service as rest based service in wcf? : Wcf data services

0 Answers  


What are contracts in wcf?

0 Answers  


Explain how to define a service as rest based service in wcf?

0 Answers  


Why do we use wcf?

0 Answers  


What is ConcurrencyMode in WCF?

0 Answers  


Categories