(V.N.S Arun) Windows Communication Foundation (WCF) is a distributed system technology, which can be customized to any level as far as I have seen. A WCF application can be customized right from the protocols it uses until the size of the message.
Tag: Development
Understanding Scope and Packages in Perl
(James Lee) In this fourth part of a six-part article series on subroutines and functions in Perl, you will learn about two different types of variables (global and lexical) and their scopes. You will also learn what a package is.
10 classic mistakes that plague software development projects
(Justin James) When you combine project management pitfalls with software development challenges, you have a recipe for some big (but often preventable) problems.
Using A Sandbox To Decouple ColdFusion Components In A Modular Application Architecture
(Ben Nadel) In the last few posts, I looked at using Closures in ColdFusion 10 to limit access to a component’s methods. This path of exploration was based on a Crockford presentation that I saw on JavaScript.
Using SqlDataReader’s new async methods in .Net 4.5 Beta
(Daniel Paoliello) With the Developer Preview release of .Net 4.5, ADO.NET introduced two asynchronous methods to the SqlDataReader class: ReadAsync and NextResultAsync. These two methods allow you to move to the next row or result set asynchronously and represent a much more fine-grained level of a
Infinite Scroll in ASP.NET MVC
(Tomasz Pêczek) Recently I’ve decided to play a little bit with Infinite Scroll interaction design pattern as I was planning on using it in one of my upcoming projects. My key requirement was to implement the pattern as an enhancement which would not break the existing navigation/pagination mechanis
Integrating Validation with the Entity Framework
(Peter Vogel) You tell your client that you have an application with a one-second response time but, possibly, data-integrity issues. Or you tell your client that the application has a five-second response time with rock-solid data integrity. Which application gets turned on and which gets shelved?
How to create animations with jQuery
(Ryan Boudreaux) Continuing in our tutorial series of introducing jQuery functions and features, we will demonstrate creating an animation using the .animate() function. All files used in the demonstration section of this tutorial are available for download so you can follow along.
How to validate using Data annotation(MVC tutorial number 11)?
(Questpond) In this article we will try to understand how we can use data annotations for doing validations in MVC web application.
Improving .NET Application Performance Part 6: Threading
(Ard-Jan Barnas) In our last article we discussed some guidelines to optimize Garbage Collection using the Dispose and Finalize methods. In this article we’ll look at best practices for using threading. The .NET Framework offers various threading and synchronization features. Using multiple threads
