PropertyHandlerMapping mapping = new PropertyHandlerMapping();
XmlBlasterImpl xblImpl = new XmlBlasterImpl(glob, this, xmlBlasterImpl);
AuthenticateImpl auImpl = new AuthenticateImpl(glob, this, authenticate, xblImpl);
XblRequestFactoryFactory factoryFactory = new XblRequestFactoryFactory();
factoryFactory.add(auImpl);
factoryFactory.add(xblImpl);
mapping.setRequestProcessorFactoryFactory(factoryFactory);
mapping.addHandler("authenticate", auImpl.getClass()); // register update() method
mapping.addHandler("xmlBlaster", xblImpl.getClass());