org.apache.xmlrpc
Interface XmlRpcHandler

All Known Implementing Classes:
Echo, Invoker, SecureXmlRpcClient, XmlRpcClient, XmlRpcClientLite

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.html 359531 2005-12-28 13:59:25Z jochen $
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.
 

Method Detail

execute

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.

Throws:
java.lang.Exception


Copyright 2001-2001-2005 Apache Software Foundation. All Rights Reserved.