Hi, I am calling a Single view function, which returns a nested hash (hash map) structure. Please help me with how to retrieve values from nested hashmap. I have tried with below sample. HashMap hashMap = new HashMap(); HashMap hashMap1 = new HashMap(); HashMap hashMap2 = new HashMap(); hashMap.put( "One", new Integer(1) ); hashMap.put( "Two", new Integer(2) ); hashMap.put( "Three", new ...