Saturday, February 19, 2011

WCF Interview Questions

Click here for all SQL Server Interview Questions

Click here for all ASP.NET Interview Questions

Click here for all C# Interview Questions

Click here for Written Test or practical ASP.NET Interview Questions asked in MNC's


Basic WCF Interview Questions

Contracts - Part 1

Contracts - Part 2

Contracts - Part 3

Contracts - Part 4

Contract Versioning

What is IExtensibleDataObject

Exception Handling

Bindings

Method overloading in WCF

Messaging Patterns

Instancing Modes

Concurrency


Click here for all SQL Server Interview Questions

Click here for all ASP.NET Interview Questions

Click here for all C# Interview Questions

Click here for Written Test or practical ASP.NET Interview Questions asked in MNC's

9 comments:

  1. Hi,

    You've put a lot of effort in creating such pool of question answers and it really shows... Thanks for the hard work.. It's really very helpful..

    Thanks a lot again!! Keep up the good work and god bless you..

    ReplyDelete
  2. is wcf suppports method overidding

    ReplyDelete
    Replies
    1. Yes it is support method overloading with operationcontract name should be unique like

      [OperationContract(Name = "AddNumber2")]
      int AddNumber(int num1, int num2);

      [OperationContract(Name = "AddNumber3")]
      int AddNumber(int num1, int num2, int num3);

      Delete
  3. WCF does supports method overloading/overriding using the Name attribute of the OperationContract attribute. Click here to read the complete article

    ReplyDelete
  4. Does wcf support method overloading

    ReplyDelete
    Replies
    1. Yes by using name parameter in operation contract.
      [OperationContract(Name="Method1")]
      string TestMethod(int para1,int para2);
      //Initail method
      [OperationContract(Name = "Method2")]
      string TestMethod(string para1, string para2);

      Delete
  5. Hi venkat can you please upload videos about WPF.I am following your all videos very interesting.

    ReplyDelete
  6. Hi Venkat,

    Is it possible to hide the multiple service contract's method from the different clients.
    Suppose there are 3 clients who are consuming different contract of service on http, they all will be able to see all the contracts and methods. Is it possible to enforce the client to view only the methods intended to that client?

    ReplyDelete
  7. I was asked about What is Dependency Injection in WCF?

    ReplyDelete

If you are aware of any other WCF questions asked in an interview, please post them below. If you find anything missing or wrong, please feel free to correct by submitting the form below.

 
Disclaimer - Terms of use - Contact Us