Monthly Archives: August 2008

Reverse Engineering using UML Graph

I have been on several teams where we studiously designed UML diagrams at the beginning of the project. As the project progressed, and deadlines approached, the UML diagrams were left somewhere behind, not to be updated in months. When a new developer joined the team, we showcased the old UML diagrams, and kept telling “Oh, […]

read more

Choosing between Routing and Orchestration in an ESB

Topics ESB, Orchestration Tags Routing, JBI, Enterprise Integration Patterns Introduction Enterprise Service Buses are nowadays indeed useful solutions that combine an array of tools allowing to solve practical problems in the field of application and service integration. However, they present the same mild inconvenience that a toolbox does to its user who knows that the […]

read more

Update to Vista SP1 Frequently Asked Questions

This document contains information on issues and solutions related to updating to the Windows Vista Service Pack 1. This document will be updated frequently as new concerns and information become available. Please check back for the latest information. Microsoft is the primary source of information on SP1 issues When updating a computer to the Windows […]

read more

WSDL2Java – generating java code for your WSDL

you need to create a build.xml file <!DOCTYPE project> <project name=”AxisProject” default=”usage” basedir=”.”> <property name=”project-name” value=”AxisProject”/> <property file=”build.properties”/> <property name=”build” value=”build”/> <property name=”src” value=”src”/> <property name=”build.classes”      value=”build/classes” /> <path id=”axis.classpath”> <pathelement location=”build/classes” /> <fileset dir=”C:/axis2-1.4.1/lib”> <include name=”**/*.jar” /> </fileset> <pathelement location=”${build.classes}” /> </path> <path id=”axis_client.classpath”> <pathelement location=”build/classes” /> <fileset dir=”C:/axis2-1.4.1″> <include name=”**/*.jar” /> </fileset> <fileset […]

read more