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

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

Introduction

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

Usage

From source file de.femodeling.e4.server.internal.context.HttpInvokerRequestExecutor.java

/**
 * A custom invoker executor class to allow piggy packing.
 * 
 * @author Stefan Reichert
 */
public class HttpInvokerRequestExecutor extends SimpleHttpInvokerRequestExecutor {

From source file gov.nih.nci.system.springframework.remoting.httpinvoker.HttpInvokerRequestExecutor.java

public class HttpInvokerRequestExecutor extends SimpleHttpInvokerRequestExecutor {

    protected HttpURLConnection openConnection(HttpInvokerClientConfiguration config) throws IOException {
        String url = config.getServiceUrl();
        if (url == null)
            throw new IOException("Service URL can not be empty");

From source file com.liferay.portal.spring.remoting.AuthenticatingHttpInvokerRequestExecutor.java

/**
 * <p>
 * An HttpInvoker request executor for Spring Remoting that provides HTTP BASIC
 * authentication information for service invocations.
 * </p>
 *

From source file org.valkyriercp.security.remoting.BasicAuthHttpInvokerRequestExecutor.java

/**
 * Adds BASIC authentication support to
 * <code>SimpleHttpInvokerRequestExecutor</code>. This class assumes that a
 * single authentication credential will be used for the whole application (as
 * is typical with a rich client). So, regardless of the thread involved, it
 * will use the Authentication object obtained from the last authentication

From source file org.springframework.richclient.security.remoting.BasicAuthHttpInvokerRequestExecutor.java

/**
 * Adds BASIC authentication support to <code>SimpleHttpInvokerRequestExecutor</code>.
 * This class assumes that a single authentication credential will be used for the whole
 * application (as is typical with a rich client). So, regardless of the thread involved,
 * it will use the Authentication object obtained from the last authentication token
 * received.

From source file org.acegisecurity.context.httpinvoker.AuthenticationSimpleHttpInvokerRequestExecutor.java

/**
 * Adds BASIC authentication support to <code>SimpleHttpInvokerRequestExecutor</code>.
 *
 * @author Ben Alex
 * @version $Id: AuthenticationSimpleHttpInvokerRequestExecutor.java 1784 2007-02-24 21:00:24Z luke_t $
 */

From source file org.piraso.replacer.spring.remoting.PirasoSimpleHttpInvokerRequestExecutor.java

/**
 * Piraso aware {@link SimpleHttpInvokerRequestExecutor} instance.
 */
public class PirasoSimpleHttpInvokerRequestExecutor extends SimpleHttpInvokerRequestExecutor {

    protected ContextPreference context = new PirasoEntryPointContext();

From source file gov.nih.nci.system.springframework.remoting.httpinvoker.GSIHttpInvokerRequestExecutor.java

public class GSIHttpInvokerRequestExecutor extends SimpleHttpInvokerRequestExecutor {

    protected HttpURLConnection openConnection(HttpInvokerClientConfiguration config) throws IOException {
        String url = config.getServiceUrl();
        if (url == null)
            throw new IOException("Service URL can not be empty");

From source file org.springframework.security.remoting.httpinvoker.AuthenticationSimpleHttpInvokerRequestExecutor.java

/**
 * Adds BASIC authentication support to <code>SimpleHttpInvokerRequestExecutor</code>.
 *
 * @author Ben Alex
 * @author Rob Winch
 */

From source file com.seajas.search.utilities.remoting.JsonInvokerRequestExecutor.java

/**
 * Provides arguments as JSON.
 @author Pascal S. de Kloe.
 */
public class JsonInvokerRequestExecutor extends SimpleHttpInvokerRequestExecutor {