Example usage for org.springframework.remoting.support RemoteExporter subclass-usage

List of usage examples for org.springframework.remoting.support RemoteExporter subclass-usage

Introduction

In this page you can find the example usage for org.springframework.remoting.support RemoteExporter subclass-usage.

Usage

From source file org.codehaus.groovy.grails.plugins.remoting.DummyHttpExporter.java

/**
 * A Spring remote exporter that can be used in place of any HTTP based
 * exporter. Its role is to replace existing exporters, thereby "switching" them
 * off. This is because you can not simply remove an exporter from the Spring
 * context at the moment.
 *

From source file org.springframework.remoting.rmi.RmiServiceExporter.java

/**
 * RMI exporter that exposes the specified service as RMI object with the specified
 * name. Such services can be accessed via plain RMI or via RmiProxyFactoryBean.
 * Also supports exposing any non-RMI service via RMI invokers, to be accessed via
 * RmiClientInterceptor/RmiProxyFactoryBean's automatic detection of such invokers.
 *

From source file de.davidbilge.spring.remoting.amqp.service.AmqpServiceMessageListener.java

/**
 * This message listener exposes a plain java service via AMQP. Such services can be accessed via plain AMQP or via
 * {@link AmqpProxyFactoryBean}.
 * 
 * To configure this message listener so that it actually receives method calls via AMQP, it needs to be put into a
 * listener container. That could be spring-rabbit's {@link SimpleMessageConverter}, for example (see below for an

From source file com.googlecode.jsonrpc4j.spring.AbstractJsonServiceExporter.java

/**
 * {@link RemoteExporter} that exports services using Json
 * according to the JSON-RPC proposal specified at:
 * <a href="http://groups.google.com/group/json-rpc">
 * http://groups.google.com/group/json-rpc</a>.
 *

From source file org.springframework.remoting.caucho.HessianExporter.java

/**
 * General stream-based protocol exporter for a Hessian endpoint.
 *
 * <p>Hessian is a slim, binary RPC protocol.
 * For information on Hessian, see the
 * <a href="http://www.caucho.com/hessian">Hessian website</a>.

From source file org.springframework.remoting.jbr.JbossRemotingExporter.java

/**
 * <P> Exporter that delegates to the JBoss Remoting (http://community.jboss.org/en/jbossremoting) project to handle the RPC support. <p/>
 *
 * @author Josh Long
 * @see org.springframework.remoting.rmi.RmiServiceExporter
 */

From source file org.phprpc.spring.remoting.PHPRPC_Exporter.java

public class PHPRPC_Exporter extends RemoteExporter implements InitializingBean, HttpRequestHandler {

    private Map aliases;

    public void afterPropertiesSet() throws Exception {
        prepare();

From source file org.gwtspringhibernate.reference.rlogman.spring.GwtServiceExporter.java

/**
 * <p>This is a Spring exporter for GWT services. With this exporter, your
 * GWT services have not to be servlets anymore.</p>
 * <p>This is almost an exact copy of <code>com.google.gwt.user.server.rpc.RemoteServiceServlet</code></p>
 * <p>The only important thing changed from GWT's servlet is its reference to itself;
 * this was changed so that the service could be invoked from a proxy class, which is