18. soap vs rest
http://spf13.com/post/soap-vs-rest REST RESTs sweet spot is when you are exposing a public API over the internet to handle CRUD operations on data. REST is focused on accessing named resources…
http://spf13.com/post/soap-vs-rest REST RESTs sweet spot is when you are exposing a public API over the internet to handle CRUD operations on data. REST is focused on accessing named resources…
1-23-14 Email Mess FWs Email … FW: ASP.NET authentication and authorization http://www.codeproject.com/Articles/98950/ASP-NET-authentication-and-authorization Email … FW: MVC Action Filters Action Filters - Authentication http://www.asp.net/mvc/tutorials/older-versions/controllers-and-routing/understanding-action-filters-cs http://blogs.msdn.com/b/gduthie/archive/2011/03/17/get-to-know-action-filters-in-asp-net-mvc-3-using-handleerror.aspx http://www.codeproject.com/Articles/422571/A-complete-look-into-Filters Global…
From Email FWs A proxy is a class by which a service client can interact with the service. By the use of proxy in the client application we are…
.NET Frameworks Questions https://www.indiabix.com/technical/dotnet/dot-net-framework/ https://www.dotnetcurry.com/ShowArticle.aspx?ID=64 What is IDisposable? [sc name="reportlinkbutton"] https://stackoverflow.com/questions/538060/proper-use-of-the-idisposable-interface The .NET Framework -Assembly When a program uses a DLL, a dependency is created. If another program overwrites…
What is an Action Filter? What it is used for? How to implement? What action filters you have implemented before? Action filters are custom attributes that provide a declarative means…
http://dotnetinter.livejournal.com/70685.html - C# Unit Testing interview questions with answers: - How can we UNIT test private methods using VSTS? http://dotnet.dzone.com/articles/introduction-unit-testing-net - Introduction to unit testing in .NET http://www.asp.net/mvc/tutorials/older-versions/unit-testing/creating-unit-tests-for-asp-net-mvc-applications-cs - Creating…
Error handling in SQL? TRY...CATCH (Transact-SQL) How to handle errors in C#? Try, Catch Finally Using Exceptions (C# Programming Guide) Exception Handling (C# Programming Guide) Creating and Throwing…
http://www.indiabix.com/c-sharp-programming/generics/ http://www.careerride.com/Csharp-what-are-generics.aspx What are generics in C#.NET? A type that you can declare at runtime Generic types to maximize code reuse, type safety, and performance. They can…
AJAX with Jquery documentation http://api.jquery.com/jquery.ajax/ What is Ajax? Ajax is abbreviated as Asynchronous JavaScript and XML. It is new technique used to create better, faster and more interactive web…
What is the Difference Between a CTE and a Temp Table? CTE tables are used in a single query or procedure. Temp tables exist until the connection is closed. SQL…
HTTP Questions What are Status codes? 400 – Bad Request 401 – Unauthorized 403 - Forbidden 404 - Not found, resource not found 200 – ok 304 – ok cached…
What is Asmx? Building a web service. Needs to be updated with WSDL What is Ashx? Resource files. Like classes that provide functionality What is aspx? Active server pages Explain…