helma.xmlrpc
Interface XmlRpcHandler
- All Known Implementing Classes:
- XmlRpcServlet, XmlRpcClient
- 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.
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.