org.codehaus.plexus.xmlrpc
public interface XmlRpcComponent
Version: $Id: XmlRpcComponent.java 1426 2005-01-28 10:05:00Z trygvis $
Field Summary | |
---|---|
String | ROLE |
Method Summary | |
---|---|
void | acceptClient(String address)
Add an IP address to the list of accepted clients. |
void | addMessageListener(XmlRpcMessageListener listener) Message Listener. |
void | denyClient(String address)
Add an IP address to the list of denied clients. |
Object | executeRpc(URL url, String methodName, Vector params)
Execute a remote procedure call.
|
void | messageReceived(String fileContents) Message Received. |
void | registerHandler(String handlerName, Object handler)
Register an object as a handler for the XmlRpc Server part.
|
void | registerHandler(Object handler)
Register an object as a the default handler for
the XmlRpc Server part.
|
void | setParanoid(boolean state)
Switch client filtering on/off. |
void | unregisterHandler(String handlerName)
Unregister a handler.
|
See Also: XmlRpcComponent XmlRpcComponent
See Also: XmlRpcComponent XmlRpcComponent
Parameters: url A URL. methodName A String with the method name. params A Vector with the parameters.
Returns: An Object.
Throws: XmlRpcException IOException
Parameters: handlerName The name under which we want to register the service handler The handler object
Throws: XmlRpcException IOException
Parameters: handler The handler object
Throws: XmlRpcException IOException
See Also: XmlRpcComponent XmlRpcComponent
Parameters: handlerName The name of the handler to unregister.