Hi, It seems the dataimport context session setter is harcoded to the "entitySession":
private void putVal(String name, Object val, Map map) { if(val == null) map.remove(name); else entitySession.put(name, val); } shouldn't be rather like this: private void putVal(String name, Object val, Map map) { if(val == null) map.remove(name); else map.put(name, val); } Cheers marc