June 2008 Entries

JDBC Database Drivers

The JDBC/ODBC bridge driver A piece of native C-code that translates a JDBC call to an ODBC call. Use this driver for development, not for industrial-strength application environments. Note that you have to have an ODBC database driver manager + an ODBC database driver installed on the server in addition to the JDBC/ODBC bridge.

posted @ Thursday, June 26, 2008 12:12 AM | Feedback (0)

EJB Transactions

posted @ Wednesday, June 25, 2008 11:50 PM | Feedback (0)

Message Driven Beans

posted @ Wednesday, June 25, 2008 11:47 PM | Feedback (0)

Entity Beans

posted @ Wednesday, June 25, 2008 11:46 PM | Feedback (0)

Session Beans

posted @ Wednesday, June 25, 2008 11:43 PM | Feedback (0)

Writing EJB

posted @ Wednesday, June 25, 2008 11:41 PM | Feedback (0)

EJB Fundamentals

posted @ Wednesday, June 25, 2008 11:38 PM | Feedback (0)

EJB Design Patterns

EJB Design Patterns refers the best practices to be used while architecting the EJB based Enterprise J2EE application. All these design patterns fit somewhere across the layers including web presentation, business and EIS layers

posted @ Saturday, June 21, 2008 12:49 PM | Feedback (0)

Function Point Analysis

FPA is a standard method for measuring the size of a software development or software enhancement project for business application software based on customer point of view. FPA is independent of the computer language, development methodology, technology or capability of the project team. FPA is a measure that describes a unit of work product suitable for measuring the size of a business application software.

posted @ Saturday, June 21, 2008 12:24 PM | Feedback (0)

Project Estimation Techniques

FPA, Delphi, Cocomo, UseCasePoints

posted @ Saturday, June 21, 2008 12:15 PM | Feedback (0)

UML Relations

Association is a relationship where all object have their own lifecycle and there is no owner. Let’s take an example of Teacher and Student. Multiple students can associate with single teacher and single student can associate with multiple teachers but there is no ownership between the objects and both have their own lifecycle. Both can create and delete independently.

posted @ Friday, June 20, 2008 9:26 PM | Feedback (0)

Types of Adapters - Adapter Pattern

Lets say our application uses a component A and now we want to replace A with a component from 3rd party , say it as B. Since the component B is not in our control which means we dont have control on its interface as well. But the problem here is that our client code is already using interface A and we dont want it to change. How can existing and unrelated classes work in an application that expects classes with a different and incompatible interface? This is the problem we will be going to res

posted @ Monday, June 16, 2008 3:56 PM | Feedback (0)

Security

An enterprise application comprises of variety of resources which includes servers, softwares, services etc. All of these resources needs to be protected from vulnerability and security attacks.

posted @ Sunday, June 08, 2008 1:19 AM | Feedback (0)

Interaction Overview Diagrams - UML 2.0

Interaction overview diagrams are about putting together of activity diagrams and sequence diagrams. You can think of interaction overview diagrams either as activity diagrams in which the activities are replaced by little sequence diagrams.

Lets see what are these ....

posted @ Saturday, June 07, 2008 4:40 PM | Feedback (0)

Understanding Activity Diagram - UML 2.0

In order to understand the third type of interaction diagram "Interaction Overview Diagram" It is better to have understanding of another UML diagram which is "Activity Diagram"

Activity diagrams are a technique to describe procedural logic, business process, and work flow. In many ways, they play a role similar to flowcharts, but the principal difference between them and flowchart notation is that they support parallel behavior.

Lets see what Actvity diagrams are...

posted @ Saturday, June 07, 2008 4:32 PM | Feedback (0)

Data Transfer Objects (DTO)

Today I will give you an overview of Data Transfer Objects (DTO). We will discuss what are they and how are they used and where.

DTO as defined by Martin is "An object that carries data between processes in order to reduce the number of method calls"

Lets read more on this .....

posted @ Friday, June 06, 2008 12:30 PM | Feedback (0)

Object Oriented Analysis and Design

Modelling

It is one of the software processes. Used to create the software models Models are created using some modelling tool and language Most preferred modelling language is UML (Unified Modelling Language)

posted @ Sunday, June 01, 2008 10:54 PM | Feedback (0)