In this section I will try to cover the frequently asked questions about ASP.NET Web Services and Windows Communication Foundation. Again I would apologies for the questions to not be in proper sequence. Surely I would arrange the same into sequence when this section will have some significant amount of questions. So, we start now… [...]
Archive for the ‘Technical Information’ Category
ASP.NET Web Services & WCF Frequently Asked Questions
Posted in Web Services/WCF FAQ on June 15, 2009 | Leave a Comment »
ASP.NET Web Services Vs WCF
Posted in .NET Framework 3.0/3.5 on June 15, 2009 | 4 Comments »
.NET Framework 3.0 introduces new and exciting feature i.e. Windows Communication Foundation (WCF), where as earlier versions of the framework were containg ASP.NET Web Services only. In this Post I would be mainly comparing the WCF with ASP.NET Web Service Windows Communication Foundation (WCF) ASP.NET Web Service WCF supports multiple bindings HTTP, WSHTTP, TCP, MSMQ. [...]
An Introduction To Windows Communication Foundation [WCF]
Posted in .NET Framework 3.0/3.5 on June 5, 2009 | 3 Comments »
1.0 What Is WCF? WCF stands for Windows Communication Foundations. WCF combines the functionality from ASP.NET Web Services, .NET Remoting, Message Queuing and Enterprise Services. WCF provides the following features, Hosting For Component & Services WCF Service can be hosted in ASP.NET Runtime, a Windows Service, a COM+ Component or just a Windows form application [...]
OOPS FAQ’s
Posted in OOPS FAQ's on May 25, 2009 | Leave a Comment »
Firs of all I would like to inform and say sorry that you may find the questions in random order. In future if I could build the FAQ section big then definitely I would arrange the FAQ’s in proper seq. Your feedback/ suggestion is most welcome to make the post more better. Thanks in advance…. [...]
Database Normalization
Posted in Database on February 16, 2009 | 1 Comment »
What does it mean by Normalization of a Database? Definition: ”Normalization is the process of removing anomoly from a Database.” Removing Anomoly in a database is mainly concern with, Eliminating redundant data (Storing the data in more than one table with proper relationships among the tables) Ensuring data dependencies make sense (data is should be stored [...]
Understanding Database
Posted in Database on February 14, 2009 | Leave a Comment »
What is a Database? Definition: Database is a structured collection of records or data that is stored in a computer system i.e. Secondary Memory. One small question… Que : What’s the difference between Database & Data Structure? Ans : Database is concerned with the Secondary Memory (Hard Disk) of the machine where as Data Structure [...]
Events & Delegates
Posted in OOPS Concepts on February 13, 2009 | 1 Comment »
“What’s the difference between an Event and a Delegate?” Yes…The most popular question, which almost every one would have been asked during an interview. In order to illustrate the difference we need to understand first that, What an Event is? and What a Delegate is? What is an Event? Event is nothing but the action done on [...]
LINQ For Beginners
Posted in .NET Framework 3.0/3.5 on January 8, 2009 | 30 Comments »
1.0 What is LINQ? LINQ stands for Language INtegrated Query. Means query language integrated with Microsoft .NET supporting languages i.e. C#.NET, VB.NET, J#.NET etc. Need not to write\ use explicit Data Access Layer. Writing Data Access Layer require much proficiency as a Data Access Layer should be capable of at least Efficient Extraction (Select) \ [...]