Package org.springframework.remoting.caucho

Examples of org.springframework.remoting.caucho.HessianProxyFactoryBean


//      springHessianServerService = (SpringHessianServer)factory.getBean("springRMIServerService");


      try
      {
         HessianProxyFactoryBean factory = new HessianProxyFactoryBean();
         factory.setServiceInterface(SpringHessianServer.class);
         factory.setServiceUrl("http://localhost:8080/remoting/springHessianServerService");
         factory.afterPropertiesSet();
         springHessianServerService = (SpringHessianServer) factory.getObject();
      }
      catch (MalformedURLException e)
      {
         e.printStackTrace();
      }
View Full Code Here


//      springHessianServerService = (SpringHessianServer)factory.getBean("springRMIServerService");


      try
      {
         HessianProxyFactoryBean factory = new HessianProxyFactoryBean();
         factory.setServiceInterface(SpringHessianServer.class);
         factory.setServiceUrl("http://localhost:8080/remoting/springHessianServerService");
         factory.afterPropertiesSet();
         springHessianServerService = (SpringHessianServer) factory.getObject();
         if (false) throw new MalformedURLException("xxx");
      }
      catch (MalformedURLException e)
      {
         e.printStackTrace();
View Full Code Here

TOP

Related Classes of org.springframework.remoting.caucho.HessianProxyFactoryBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.