Jagger
 All Classes Namespaces Files Functions Variables Groups Pages
S com.griddynamics.jagger.invoker.hessian.HessianInvoker< S, Q, R >.initService ( String  url)
protected
65  {
66  try {
67  HessianProxyFactory factory = new HessianProxyFactory();
68  factory.setOverloadEnabled(true);
69 
70  return (S) factory.create(getClazz(), url);
71  } catch (MalformedURLException e) {
72  throw Throwables.propagate(e);
73  }
74  }