public class

BurlapServiceExporter

extends BurlapExporter
implements HttpRequestHandler
java.lang.Object
   ↳ org.springframework.remoting.support.RemotingSupport
     ↳ org.springframework.remoting.support.RemoteExporter
       ↳ org.springframework.remoting.caucho.BurlapExporter
         ↳ org.springframework.remoting.caucho.BurlapServiceExporter

Class Overview

Servlet-API-based HTTP request handler that exports the specified service bean as Burlap service endpoint, accessible via a Burlap proxy.

Note: Spring also provides an alternative version of this exporter, for Sun's JRE 1.6 HTTP server: SimpleBurlapServiceExporter.

Burlap is a slim, XML-based RPC protocol. For information on Burlap, see the Burlap website. This exporter requires Burlap 3.x.

Note: Burlap services exported with this class can be accessed by any Burlap client, as there isn't any special handling involved.

Summary

[Expand]
Inherited Fields
From class org.springframework.remoting.support.RemotingSupport
Public Constructors
BurlapServiceExporter()
Public Methods
void handleRequest(HttpServletRequest request, HttpServletResponse response)
Processes the incoming Burlap request and creates a Burlap response.
[Expand]
Inherited Methods
From class org.springframework.remoting.caucho.BurlapExporter
From class org.springframework.remoting.support.RemoteExporter
From class org.springframework.remoting.support.RemotingSupport
From class java.lang.Object
From interface org.springframework.beans.factory.BeanClassLoaderAware
From interface org.springframework.beans.factory.InitializingBean
From interface org.springframework.web.HttpRequestHandler

Public Constructors

public BurlapServiceExporter ()

Public Methods

public void handleRequest (HttpServletRequest request, HttpServletResponse response)

Processes the incoming Burlap request and creates a Burlap response.

Parameters
request current HTTP request
response current HTTP response
Throws
IOException
ServletException