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 |
In WCF what are duplex contracts?
What is wcf architecture?
Tell me what is three major points in wcf? : Wcf data services
Define the term policy binding?
What are the endpoints in wcf?
Different ways to host WCF service?
What is datacontractserializer and how its different from xmlserializer?
what is the difference between ASMX web services and WCF?
What is the main advantage of WAS?(Windows activation service) When it is used?
What is DataContract in WCF?
0 Answers Petranics Solutions,
What does a windows communication foundation, or wcf, service application use to present exception information to clients by default?
What is the windows communication foundation?
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)