*/
public Content readMap(String mapName) throws Exception {
Content map;
ContentServiceProxy proxy = new ContentServiceProxy(userId, session);
map = proxy.readMap(mapName);
if (map == null) {
throw new Exception("Error while getting map [" + mapName +"] from map catalogue");
}