public class XmlRpcWorker
extends java.lang.Object
XmlRpcServer| Modifier and Type | Field and Description |
|---|---|
protected XmlRpcHandlerMapping |
handlerMapping |
protected XmlRpcRequestProcessor |
requestProcessor |
protected XmlRpcResponseProcessor |
responseProcessor |
| Constructor and Description |
|---|
XmlRpcWorker(XmlRpcHandlerMapping handlerMapping)
Create a new instance that will use the specified mapping.
|
| Modifier and Type | Method and Description |
|---|---|
protected XmlRpcContext |
defaultContext(java.lang.String user,
java.lang.String password)
Factory method to return a default context object for the execute() method.
|
byte[] |
execute(java.io.InputStream is,
java.lang.String user,
java.lang.String password)
Decode, process and encode the response or exception for an XML-RPC
request.
|
byte[] |
execute(java.io.InputStream is,
XmlRpcContext context)
Decode, process and encode the response or exception for an XML-RPC
request.
|
protected static java.lang.Object |
invokeHandler(java.lang.Object handler,
XmlRpcServerRequest request,
XmlRpcContext context)
Pass the specified request to the handler.
|
protected XmlRpcRequestProcessor requestProcessor
protected XmlRpcResponseProcessor responseProcessor
protected XmlRpcHandlerMapping handlerMapping
public XmlRpcWorker(XmlRpcHandlerMapping handlerMapping)
protected static java.lang.Object invokeHandler(java.lang.Object handler,
XmlRpcServerRequest request,
XmlRpcContext context)
throws java.lang.Exception
XmlRpcHandler or
AuthenticatedXmlRpcHandler.handler - the handler to call.request - the request information to use.context - the context information to use.java.lang.ClassCastException - if the handler is not of an appropriate type.java.lang.NullPointerException - if the handler is null.java.lang.Exception - if the handler throws an exception.public byte[] execute(java.io.InputStream is,
java.lang.String user,
java.lang.String password)
public byte[] execute(java.io.InputStream is,
XmlRpcContext context)
is - the InputStream to read the request from.context - the context for the request (may be null).ParseFailed - if the request could not be parsed.AuthenticationFailed - if the handler for the
specific method required authentication and insufficient credentials were
supplied.protected XmlRpcContext defaultContext(java.lang.String user, java.lang.String password)
user - the username of the user making the request.password - the password of the user making the request.Copyright ? 1999-2002 Apache Software Foundation. All Rights Reserved.