Building your first business process
Let's get into action and build our first simple Hello World solution that would return an interactive greeting. As simple as it sounds, you would need to understand how to use the WID tooling and in the due course relate it back to the various concepts we have been talking about. Since we don't want to build anything one off, we will begin with a solution-oriented approach to building applications in WID. Though the application we are building is simple, let's start looking at it from a solution point of view. So the requirements for our first application are:
It should be capable of getting user input and more specifically their first name, last name, and age
It should return a customized greeting based on their age
Ages 25 and younger it should return—"What's up <name>!"
Ages 26 to 65 it should return—"What's happening, <name>!"
Ages 65 and above it should return—"Good Day to you <name>!"
The solution should be exposed via Web Services...