org.apache.xmlrpc
Interface  XmlRpcHandler
- All Known Implementing Classes: 
 - Echo, XmlRpcClient, Invoker
 
- public interface XmlRpcHandler
 
The XML-RPC server uses this interface to call a method of an RPC handler.
 This should be implemented by any class that wants to directly take control
 when it is called over RPC. Classes not implementing this interface will be
 wrapped into an Invoker object that tries to find the matching method
 for an XML-RPC request.
- Version: 
 - $Id: XmlRpcHandler.java,v 1.2 2002/03/20 15:11:03 mpoeschl Exp $
 
- Author: 
 - Hannes Wallnoefer
 
| 
Method Summary | 
 java.lang.Object | 
execute(java.lang.String method,
        java.util.Vector params)
 
          Return the result, or throw an Exception if something went wrong. | 
 
execute
public java.lang.Object execute(java.lang.String method,
                                java.util.Vector params)
                         throws java.lang.Exception
- Return the result, or throw an Exception if something went wrong.
 
Copyright © 1999-2002 Apache Software Foundation. All Rights Reserved.