org.springframework.remoting.caucho
Class BurlapServiceExporter
java.lang.Object
org.springframework.remoting.support.RemoteExporter
org.springframework.remoting.caucho.BurlapServiceExporter
- All Implemented Interfaces:
- Controller, InitializingBean
- public class BurlapServiceExporter
- extends RemoteExporter
- implements Controller
Web controller that exports the specified service bean as Burlap service
endpoint, accessible via a Burlap proxy.
Burlap is a slim, XML-based RPC protocol.
For information on Burlap, see the
Burlap website
This exporter will work with both Burlap 2.x and 3.x (respectively
Resin 2.x and 3.x), auto-detecting the corresponding skeleton class.
Note: Burlap services exported with this class can be accessed by
any Burlap client, as there isn't any special handling involved.
- Since:
- 13.05.2003
- Author:
- Juergen Hoeller
- See Also:
BurlapProxyFactoryBean
Method Summary |
void |
afterPropertiesSet()
Invoked by a BeanFactory after it has set all bean properties supplied
(and satisfied BeanFactoryAware and ApplicationContextAware). |
ModelAndView |
handleRequest(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process the incoming Burlap request and create a Burlap response. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
BurlapServiceExporter
public BurlapServiceExporter()
afterPropertiesSet
public void afterPropertiesSet()
throws java.lang.Exception
- Description copied from interface:
InitializingBean
- Invoked by a BeanFactory after it has set all bean properties supplied
(and satisfied BeanFactoryAware and ApplicationContextAware).
This method allows the bean instance to perform initialization only
possible when all bean properties have been set and to throw an
exception in the event of misconfiguration.
- Specified by:
afterPropertiesSet
in interface InitializingBean
- Overrides:
afterPropertiesSet
in class RemoteExporter
- Throws:
java.lang.Exception
handleRequest
public ModelAndView handleRequest(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws java.lang.Exception
- Process the incoming Burlap request and create a Burlap response.
- Specified by:
handleRequest
in interface Controller
- Parameters:
request
- current HTTP requestresponse
- current HTTP response
- Returns:
- a ModelAndView to render, or null if handled directly
- Throws:
java.lang.Exception
- in case of errors
Copyright (C) 2003-2004 The Spring Framework Project.