Package de.dfki.util.xmlrpc.client

Examples of de.dfki.util.xmlrpc.client.XmlRpcClient


    {
        final Object apiClient = Proxy.newProxyInstance( Thread.currentThread().getContextClassLoader(),
                                                         new Class[]{ XmlRpcClient.class, apiClass },
                                                         new ClientInvocationHandler( new StandardXmlRpcClient() ) );

        final XmlRpcClient asClient = (XmlRpcClient)apiClient;
        asClient.setConnection( xmlRpcConnection );
        asClient.setHandlerName( handlerName );
       
        ParameterConverterRegistry.readParameterConverterMappingsFromApiClass( apiClass );

        return( apiClass.cast( apiClient ) );
    }
View Full Code Here

TOP

Related Classes of de.dfki.util.xmlrpc.client.XmlRpcClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.