Example usage for org.springframework.remoting.httpinvoker HttpInvokerServiceExporter subclass-usage

List of usage examples for org.springframework.remoting.httpinvoker HttpInvokerServiceExporter subclass-usage

Introduction

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

Usage

From source file org.LexGrid.LexBIG.caCore.applicationservice.LexEvsHttpInvokerServiceExporter.java

/**
 * Ues the LexEVS Classloader (for loading extensions, SQL drivers, etc).
 * 
 * @author <a href="mailto:kevin.peterson@mayo.edu">Kevin Peterson</a>
 *
 */

From source file hr.fer.zemris.vhdllab.remoting.GzipHttpInvokerServiceExporter.java

public class GzipHttpInvokerServiceExporter extends HttpInvokerServiceExporter {

    @Override
    protected InputStream decorateInputStream(HttpServletRequest request, InputStream is) throws IOException {
        return new GZIPInputStream(is);
    }

From source file com.ish.server.Http2InvokerServiceExporter.java

/**
 * Allows using custom serializer.
 */
public class Http2InvokerServiceExporter extends HttpInvokerServiceExporter {

    @Autowired

From source file org.tizzit.util.spring.httpinvoker.StreamSupportingHttpInvokerServiceExporter.java

/**
 * Extends <code>HttpInvokerServiceExporter</code> to allow
 * <code>InputStream</code> parameters to remote service methods and
 * <code>InputStream</code> return values from remote service methods.  See
 * the documentation for
 * <code>StreamSupportingHttpInvokerProxyFactoryBean</code> for important