Recently Published Articles

UML » What is the notation of Association relationship in UML?

Association denotes structural relationship between entities. Association is represented using a line connecting the two entities. A name for the association relationship can be specified over the line. In addition, a triangle near to the relationshi ...

UML » What is the notation used for representing Generalization relationship in UML?

Generalization relationship denotes the IS A relationship or inheritance relationship. The generalization relationship is represented using a line drawn from the sub-class to the super-class and the line ends with a triangle pointing to the super-cla ...

UML » What is the notation used for representing Dependency relationship in UML?

The dependency relationship in UML is nothing but the using relationship through which one class uses another. The dependency relationship is represented using a dashed line with an arrow pointing to the class that has to be used. For example in the ...

DOT NET » What is the use of wsdl.exe?

The executable wsdl.exe is a frequently used tool (command line) that performs two major functionalities: Wsdl.exe is used for creating server side file which will behave as a bucket that implements web service. Wsdl.exe is also used for cre ...

DOT NET » What is the purpose of SSIS?

SSIS is the acronym of SQL Server Integration Services. SSIS is the SQL technology of Microsoft. SSIS establishes easy integration with different data sources and enterprise platforms. SSIS binds logic into packages and it permits copy of data files, ...

DOT NET » When should DOM Parser be used instead of SAX Parser?

DOM Parser is used when large portions of a smaller document have to be read. For example, if there is a document of size 50KB and you wanted to read almost 80% of the document then you can use DOM Parser. Usage of SAX Parser is the other way round. ...

SILVERLIGHT » What are the different layout controls available with Silverlight?

There are three different layout controls that can be used along with Silverlight. They are: Canvas layout control – The Canvas control helps to position the child elements in X and Y coordinates. Grid layout control – ...

SILVERLIGHT » What is the difference between WPF (Windows Presentation Foundation) and Silverlight?

Both WPF and Silverlight have their own XAML parser. The other differences between WPF (Windows Presentation Foundation) and Silverlight are:  WPF (Windows Presentation Foundation) Silverlight WPF is mainly used for creati ...

SILVERLIGHT » Which tools are used for developing Silverlight Applications?

Development of Silverlight Applications can be performed in various ways. Few among them are listed below: Notepad: The notepad is used for writing XAML code. Once the code is written, the SDK of Silverlight can be used for compiling Sil ...

UML » What are the different kinds of relationships in UML?

UML supports 4 different relationships. They are: Dependency – The dependency relationship between two entities means that one entity is dependent on another. The entity which depends on another is called the dependent entity and t ...