@Override
public void afterPropertiesSet() throws Exception {
Preconditions.checkNotNull(namespace,"namespace is mandatory");
Preconditions.checkNotNull(url, "url is mandatory");
Preconditions.checkNotNull(serviceInterface, "serviceInterface is mandatory");
scf = new ServiceCallerFactory(namespace, url);
proxy = buildProxy();
}