6 important WCF Instancing interview questions with answers

These questions are taken from .NET interview question book written by Shivprasadkoirala you can know more about the book from here http://www.flipkart.com/net-interview-questions-6th/p/itmdyuqzdqx8cvqx

What is WCF instancing?
WCF Instancing controls the instancing behavior of the service. In short it controls the scope of the service instance created.

What are the different modes available?
Three modes – Per Call, Per Instance and Single

Which one is the default one?
Per Session

Can you explain all three modes in single sentence?
Per Call – One instance will be created per request.
Per Session – One instance will be created per session.
Single – Only one instance will exists throughout.

What do you mean by per request and per session?
Every invocation to one operation (method in programming word which is decorated with operation contract attribute) is considered as one new request.
Per Session means one client session usually considered on the basis of lifetime of object of proxy class created (unless and until Operation Context is used with IsInitiating and IsTerminating)

Is it possible to force a developer to configure only session full endpoints?
Yes, for that we will use SessionMode property with ServiceContract Attribute.

Recently one of our friends who went for TCS Mumbai interview was asked question around WCF one way binding. Below is a video created by www.questpond.com which explains the same in more detail

About C#.NET, ASP.NET MVC Core, Angular, Azure, (MSBI)Business Intelligence, Data Science - Python Interview Questions

This blog is for developers who want to crack .NET and C# interviews. It has all tips and tricks needed to crack .NET interviews , C# interview , SQL Server interview , Java interview , WCF Interview , Silverlight interview , WPF interview , LINQ interview , Entity framework Interview. Do not forget to watch our Learn step by step video series. ASP.NET MVC Interview Questions and Answers:- https://youtu.be/pXmMdmJUC0g C# Interview Questions and Answers:- https://youtu.be/BKynEBPqiIM Angular Interview Questions and Answers:- https://youtu.be/-jeoyDJDsSM C# tutorial for beginners(4 hrs.):- https://youtu.be/AxEGRBFwlmI Learn Azure Step by Step:- https://youtu.be/wdUK7bCMXqs Azure AZ-900 fundamentals certification :- https://youtu.be/hC9iGgJorz8 AZ- 204 certification Azure:- https://youtu.be/qI8PRn2C080 Learn Angular tutorial step by step https://tinyurl.com/ycd9j895 Learn MVC 5 step by step in 16 hours:- https://youtu.be/Lp7nSImO5vk Learn Design Pattern Step by Step https://goo.gl/eJdn0m Learn MSBI Step by Step in 32 hours:- https://goo.gl/TTpFZN Learn SQL Server Step by Step http://tinyurl.com/ja4zmwu Python Tutorial for Beginners:- https://youtu.be/KjJ7WzEL-es Learn Data Science in 1 hour :- https://tinyurl.com/y5o7qbau Learn Power BI Step by Step:- https://tinyurl.com/y6thhkxw Learn Tableau step by step :- https://tinyurl.com/kh6ojyo
This entry was posted in Uncategorized and tagged , , , , , , , . Bookmark the permalink.

Leave a comment