input.put( "KEY1", "Hello" + i );
input.put( "KEY2", Integer.valueOf( 101 ) );
input.put( "KEY3", BigDecimal.valueOf( 102 ) );
input.put( "KEY4", new ObjectBean() );
result = (Map) client.execute( input );
assertNotNull( result );
// Map result = (Map) client.execute( new ObjectBean() );
for ( Iterator it = result.keySet().iterator(); it.hasNext(); )
{
key = (String) it.next();