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

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

Introduction

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

Usage

From source file org.sipfoundry.sipxconfig.xmlrpc.XmlRpcClientInterceptor.java

public class XmlRpcClientInterceptor extends UrlBasedRemoteAccessor implements MethodInterceptor {
    private static final Log LOG = LogFactory.getLog(XmlRpcClientInterceptor.class);

    private XmlRpcClient m_xmlRpcClient;

    private boolean m_secure;

From source file org.xins.common.spring.XinsClientInterceptor.java

/**
 * Interceptor for accessing a specific XINS API.
 * This class requires the Spring library.
 *
 * @version $Revision$ $Date$
 * @author <a href="mailto:anthony.goubard@japplis.com">Anthony Goubard</a>

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

public class PHPRPC_ClientInterceptor extends UrlBasedRemoteAccessor implements MethodInterceptor {

    private PHPRPC_Client proxyFactory = null;
    private String proxy = null;
    private String charset = "utf-8";
    private int keyLength = 128;

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

/**
 * {@link FactoryBean} for creating a {@link UrlBasedRemoteAccessor}
 * (aka consumer) for accessing an HTTP based JSON-RPC service.
 *
 */
public class JsonProxyFactoryBean extends UrlBasedRemoteAccessor