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

What is wcf api?

0 Answers  


What is the purpose of base address in wcf service? How it is specified?

0 Answers  


How we can use MessageContract partially with DataContract for a service operation in WCF?

0 Answers  


What does wcf mean lions?

0 Answers  


Where we can host wcf services?

0 Answers  






do you know what is the address formats of the wcf transport schemas? : Wcf data services

0 Answers  


can you explain fault contracts? : Wcf data services

0 Answers  


explain wcf basic binding type? : Wcf data services

0 Answers  


What are tha advantages of hosting wcf service in was?

0 Answers  


List the principle constituents of wcf?

0 Answers  


What are the various ways of hosting a wcf service?

0 Answers  


What is DataContract in WCF?

0 Answers   Petranics Solutions,


Categories