SOA – Service Oriented Architecture explained in layman’s terms
The core concept behind Service oriented Architecture (SOA) is that it is focused on enabling design and implementation of business process as individual service components (in the form of software)...
View ArticleWhich REST framework should I use
There are multiple Java based REST frameworks that is use today. Some of the top players are as below – 1. Reslet – http://www.restlet.org/ 2. Apache CXF – http://cxf.apache.org/ ,...
View ArticleWhat is the backbone of SOA connectivity?
This is a core question that we need to ask when we talk about SOA (Service oriented architecture). SOA connects enterprise components within and outside by easy integration, coordination and loosely...
View ArticleSample (cheap) Web application architecture
A sample customized web application architecture is as shown below – As shown above, all the three tiers of the web server architecture, namely database server, business logic and presentation, are...
View ArticleSample Linux-Apache-PHP-DB2 installation instructions
Below is detailed customized installation for Linux-DB2 – 1. Suggested PC configuration for medium sized installations – P4 or above – 256 MB or above RAM – 80GB HD (RAID 5) – Back up drive 2. CDs for...
View ArticlePaper – Server Synchronization Technology for a Distributed server...
Requirement: Company xyz has now decided to extend the current system as distributed server architecture, expanding over 46 locations. There will be a central server which will be running from xyz HQ....
View ArticleSample Linux server (web centric) back up script in PERL
Below is a sample, detailed, PERL script for backing up your web centric Linux server. It includes ways to creating tgz of required areas, pushing them to magnetic tapes, other backup servers and even...
View ArticleA Typical IT Backup Policy and Backup procedure
Lets see how back up policy was important for a typical IT company and how did it implement the same. Background: As we progress in our path way towards higher levels of Enterprise Management Systems,...
View ArticleA typical DB2 DB config
Below is a tuned DB config for a heavily loaded workflow application – [db2inst1@intranet db2inst1]$ db2 get db cfg for wf Database Configuration for Database wf Database configuration release level =...
View ArticleDB2 Reorg and Run stats commands – life saver
Below are some life saver commands for DB2 admin for reorg and subsequent runstat – Reorganising tables:: This process helps in bringing together of widely separated data of a big table of DB2 where we...
View ArticleSample Linux server (web centric) back up script in PERL
Below is a sample, detailed, PERL script for backing up your web centric Linux server. It includes ways to creating tgz of required
View ArticleA Typical IT Backup Policy and Backup procedure
Lets see how back up policy was important for a typical IT company and how did it implement the same. Background: As we
View ArticleA typical DB2 DB config
Below is a tuned DB config for a heavily loaded workflow application – [db2inst1@intranet db2inst1]$ db2 get db cfg for wf Database
View ArticleDB2 Reorg and Run stats commands – life saver
Below are some life saver commands for DB2 admin for reorg and subsequent runstat – Reorganising tables:: This process helps in bringing together
View ArticleSoftware Engineering then and now
Software Engineering is and will be backbone and driving force behind the technological advancements that we enjoy and that will lead us to
View ArticleSoftware Project Size
Software Project Size is of great importance since it determines the level of management controls and the types of tools and technologies required
View ArticlePreferred Multithreading in C# ASP.NET
Parallel execution has been one of the core techniques of programming languages that enables and stabilizes the heavy orchestrated flow of information across
View ArticleUsing C# Delegates
Snippet Delegates is a way to support addition of multiple features(eg: methods) to a framework without the need to recompile the core class that uses these methods.Delegate is a reference to a...
View ArticleC# Events and Delegates
We use events and delegates to extend applications and to implement loose coupling. Rather than adding various method calls within an implementation and then recompiling
View ArticleUsing Extension Methods in C#
Extension methods are a way to add methods to a class without changing its source code or adding it into a derived class. Creating
View Article