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 |
What are the possible ways of hosting a wcf service? Explain.
tell me what was the code name for wcf? : Wcf data services
Elucidate on the various contracts in wcf?
Explain fault contracts?
How to set the instancing mode in wcf service?
How do you choose the hosting for wcf internet service?
Which bindings are used for metadata configuration in wcf?
Is the msmqintegrationbinding used the msmq.formatname scheme or the net.msmq scheme?
What is the transport and message reliability?
How many types of transport schemas are there in wcf?
Which styles of models are supported in wcf?
What is wcf architecture?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)