/**
* get the utility class used to call into services from IOUtils
*/
static public IOUtilsCaller getWebUtilsCaller() {
if(webUtilsCaller == null) {
WebIOUtilsFactory factory = new WebIOUtilsFactory();
webUtilsCaller = factory.createWebIOUtil();
}
return webUtilsCaller;
}