91-9990449935 0120-4256464 |
Spring Remoting by Hessian ExampleBy the help of HessianServiceExporter and HessianProxyFactoryBean classes, we can implement the remoting service provided by hessian. Advantage of HessianHessian works well across firewall. Hessian is portable to integrate with other languages such as PHP and .Net. Example of Remoting by HessianYou need to create following files for creating a simple hessian application:
It is the simple interface containing one method cube. 2) CalculationImpl.java This class provides the implementation of Calculation interface. 3) web.xml In this xml file, we are defining DispatcherServlet as the front controller. If any request is followed by .http extension, it will be forwarded to DispatcherServlet. 4) hessian-servlet.xml It must be created inside the WEB-INF folder. Its name must be servletname-servlet.xml. It defines bean for CalculationImpl and HessianServiceExporter. 5) client-beans.xml In this xml file, we are defining bean for HessianProxyFactoryBean. You need to define two properties of this class.
In this example, our project name is hessian, i.e. used as the context root in the serviceURL. 6) Client.java This class gets the instance of Calculation and calls the cube method. How to run this exampleStart and deploy the project, here we are assuming that server is running on 8888 port number. If the port number is different, change the serviceURL in client-beans.xml. Then, Compile and Run the Client.java file.
Next TopicSpring Remoting By Burlap Example
|