Hi all, sorry, I introduced a typo when I simplified the method of the Service bean:
Here is the snippet with correct line 5.
1public SimpleObject getIt()
2{
3 int id = this.getSomeId();
4 String name = this.getName(id);
5 SimpleObject anItem = new SimpleObject(id, name);
6
7System.out.println(anItem.getId()+""+anItem.getName());
8
9 return anItem;
0
1} // END getIt
