burlap addition
The addition example creates a Burlap web services with a servlet and uses that web service from a JSP client. Burlap is a lightweight XML RPC protocol. Burlap is designed to be self-describing, eliminating the requirement for external IDLs or WSDL files. Because it is as small as possible and language-independent, non-Java Burlap implementations are can easily develop comprehensive test suites. This tutorial only requires the open source Java implementation of the Burlap client and server included in the Hessian distribution. It can be downloaded from http://www.caucho.com/hessian/ for non-Resin clients and servers. Because Resin's EJB implementation can use Burlap as its remote procedure call protocol, EJB developers can easily expose services to clients from other languages. Because EJB clients and servers are written without knowledge of the underlying protocol, even if you intend to deploy with another protocol, like RMI/IIOP, you can develop using Resin's Burlap. The Burlap 1.0 spec describes the full Burlap protocol.
A Burlap call is just an HTTP POST to a URL. The arguments are serialized into the Burlap XML format and passed to the server. Most applications will never need to look at the Burlap protocol, but it's simple enough that a basic example can help show what's happening underneath the API. <burlap:call> <method>add</method> <int>2</int> <int>3</int> </burlap:call> <burlap:reply> <int>5</int> </burlap:reply> The call does not need to specify the service name because the service is uniquely specified by the URL. The following Addition example shows how to create a basic server so you can test Burlap. Using Burlap requires three components:
The remote interface is used by the Hessian proxy factory to create a proxy stub implementing the service's interface. Resin's Burlap provides a simple way of creating a server. Just extend
package example; import com.caucho.burlap.server.BurlapServlet; public class BurlapMathService extends BurlapServlet { public int add(int a, int b) { return a + b; } } The Java interface describes the remote API. This example has an addition method, .Resin's proxy client implementation uses the remote interface to expose the API to the proxy stub. Strictly speaking, though, the Java remote interface is not required for Burlap. A non-Java client will not use the Java interface, except possibly as documentation. package example; public interface MathService { public int add(int a, int b); } RPC clients follow the following steps in using a remote object:
<%@ page import="com.caucho.burlap.client.BurlapProxyFactory" %> <%@ page import="example.MathService" %> <% BurlapProxyFactory factory = new BurlapProxyFactory(); // http://localhost:8080/resin-doc/tutorial/burlap-add/burlap/math String url = ("http://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath() + "/burlap/math"); MathService math = (MathService) factory.create(MathService.class, url); out.println("3 + 2 = " + math.add(3, 2)); %> 3 + 2 = 5
|