Uses of Class
org.apache.xmlrpc.XmlRpcException

Packages that use XmlRpcException
org.apache.xmlrpc   
org.apache.xmlrpc.client   
org.apache.xmlrpc.common   
org.apache.xmlrpc.jaxb   
org.apache.xmlrpc.metadata   
org.apache.xmlrpc.parser   
org.apache.xmlrpc.serializer   
org.apache.xmlrpc.server   
org.apache.xmlrpc.util   
org.apache.xmlrpc.webserver   
 

Uses of XmlRpcException in org.apache.xmlrpc
 

Methods in org.apache.xmlrpc that throw XmlRpcException
 java.lang.Object XmlRpcHandler.execute(XmlRpcRequest pRequest)
          Performs the request and returns the result object.
 

Uses of XmlRpcException in org.apache.xmlrpc.client
 

Subclasses of XmlRpcException in org.apache.xmlrpc.client
static class TimingOutCallback.TimeoutException
          This exception is thrown, if the request times out.
 class XmlRpcClientException
          This is thrown by many of the client classes if an error occured processing and XML-RPC request or response due to client side processing.
 class XmlRpcHttpTransportException
          Exception thrown if the HTTP status code sent by the server indicates that the request could not be processed.
 

Methods in org.apache.xmlrpc.client that throw XmlRpcException
 java.lang.Object XmlRpcClient.execute(java.lang.String pMethodName, java.util.List pParams)
          Performs a request with the clients default configuration.
 java.lang.Object XmlRpcClient.execute(java.lang.String pMethodName, java.lang.Object[] pParams)
          Performs a request with the clients default configuration.
 java.lang.Object XmlRpcClient.execute(XmlRpcClientConfig pConfig, java.lang.String pMethodName, java.util.List pParams)
          Performs a request with the given configuration.
 java.lang.Object XmlRpcClient.execute(XmlRpcClientConfig pConfig, java.lang.String pMethodName, java.lang.Object[] pParams)
          Performs a request with the given configuration.
 java.lang.Object XmlRpcClientWorker.execute(XmlRpcRequest pRequest)
          Performs a synchronous request.
 java.lang.Object XmlRpcClient.execute(XmlRpcRequest pRequest)
          Performs a request with the clients default configuration.
 void XmlRpcClient.executeAsync(java.lang.String pMethodName, java.util.List pParams, AsyncCallback pCallback)
          Performs an asynchronous request with the clients default configuration.
 void XmlRpcClient.executeAsync(java.lang.String pMethodName, java.lang.Object[] pParams, AsyncCallback pCallback)
          Performs an asynchronous request with the clients default configuration.
 void XmlRpcClient.executeAsync(XmlRpcClientConfig pConfig, java.lang.String pMethodName, java.util.List pParams, AsyncCallback pCallback)
          Performs an asynchronous request with the given configuration.
 void XmlRpcClient.executeAsync(XmlRpcClientConfig pConfig, java.lang.String pMethodName, java.lang.Object[] pParams, AsyncCallback pCallback)
          Performs an asynchronous request with the given configuration.
 void XmlRpcClient.executeAsync(XmlRpcRequest pRequest, AsyncCallback pCallback)
          Performs a request with the clients default configuration.
protected  java.io.InputStream XmlRpcSunHttpTransport.getInputStream()
           
protected abstract  java.io.InputStream XmlRpcStreamTransport.getInputStream()
          Returns the input stream, from which the response is being read.
protected  java.io.InputStream XmlRpcLocalStreamTransport.getInputStream()
           
protected  java.io.InputStream XmlRpcLiteHttpTransport.getInputStream()
           
protected  java.io.InputStream XmlRpcCommonsTransport.getInputStream()
           
protected  XmlRpcStreamTransport.ReqWriter XmlRpcStreamTransport.newReqWriter(XmlRpcRequest pRequest)
          Creates a new instance of XmlRpcStreamTransport.ReqWriter.
protected  XmlRpcStreamTransport.ReqWriter XmlRpcLocalStreamTransport.newReqWriter(XmlRpcRequest pRequest)
           
protected  XmlRpcStreamTransport.ReqWriter XmlRpcHttpTransport.newReqWriter(XmlRpcRequest pRequest)
           
protected  org.xml.sax.XMLReader XmlRpcStreamTransport.newXMLReader()
           
protected  java.lang.Object XmlRpcStreamTransport.readResponse(XmlRpcStreamRequestConfig pConfig, java.io.InputStream pStream)
           
protected  void XmlRpcCommonsTransport.resetClientForRedirect()
           
 java.lang.Object XmlRpcTransport.sendRequest(XmlRpcRequest pRequest)
          Send an XML-RPC message.
 java.lang.Object XmlRpcSunHttpTransport.sendRequest(XmlRpcRequest pRequest)
           
 java.lang.Object XmlRpcStreamTransport.sendRequest(XmlRpcRequest pRequest)
           
 java.lang.Object XmlRpcLocalTransport.sendRequest(XmlRpcRequest pRequest)
           
 java.lang.Object XmlRpcLiteHttpTransport.sendRequest(XmlRpcRequest pRequest)
           
 java.lang.Object XmlRpcHttpTransport.sendRequest(XmlRpcRequest pRequest)
           
 void XmlRpcStreamTransport.ReqWriter.write(java.io.OutputStream pStream)
          Writes the requests data to the given output stream.
 void XmlRpcStreamTransport.ReqWriterImpl.write(java.io.OutputStream pStream)
          Writes the requests uncompressed XML data to the given output stream.
 void XmlRpcStreamTransport.GzipReqWriter.write(java.io.OutputStream pStream)
           
protected  void XmlRpcSunHttpTransport.writeRequest(XmlRpcStreamTransport.ReqWriter pWriter)
           
protected abstract  void XmlRpcStreamTransport.writeRequest(XmlRpcStreamTransport.ReqWriter pWriter)
           
protected  void XmlRpcLocalStreamTransport.writeRequest(XmlRpcStreamTransport.ReqWriter pWriter)
           
protected  void XmlRpcLiteHttpTransport.writeRequest(XmlRpcStreamTransport.ReqWriter pWriter)
           
protected  void XmlRpcCommonsTransport.writeRequest(XmlRpcStreamTransport.ReqWriter pWriter)
           
 

Uses of XmlRpcException in org.apache.xmlrpc.common
 

Subclasses of XmlRpcException in org.apache.xmlrpc.common
 class XmlRpcExtensionException
          This exception is thrown, if an attempt to use extensions is made, but extensions aren't explicitly enabled.
 class XmlRpcInvocationException
          This exception is thrown, if the server catches an exception, which is thrown by the handler.
 class XmlRpcLoadException
          This exception is thrown, if the clients or servers maximum number of concurrent threads is exceeded.
 class XmlRpcNotAuthorizedException
          This exception must be thrown, if the user isn't authenticated.
 

Methods in org.apache.xmlrpc.common that throw XmlRpcException
 java.lang.Object XmlRpcWorker.execute(XmlRpcRequest pRequest)
          Performs a synchronous request.
 java.lang.Object XmlRpcRequestProcessor.execute(XmlRpcRequest pRequest)
          Processes the given request and returns a result object.
 void XmlRpcStreamRequestProcessor.execute(XmlRpcStreamRequestConfig pConfig, ServerStreamConnection pConnection)
          Reads an XML-RPC request from the connection object and processes the request, writing the result to the same connection object.
 

Uses of XmlRpcException in org.apache.xmlrpc.jaxb
 

Methods in org.apache.xmlrpc.jaxb that throw XmlRpcException
 java.lang.Object JaxbParser.getResult()
           
 

Uses of XmlRpcException in org.apache.xmlrpc.metadata
 

Methods in org.apache.xmlrpc.metadata that throw XmlRpcException
static void XmlRpcSystemImpl.addSystemHandler(PropertyHandlerMapping pMapping)
          Adds an instance of this class to the given handler mapping.
 java.lang.String[] XmlRpcListableHandlerMapping.getListMethods()
          This method implements the introspection method system.listMethods, which is specified as follows: This method may be used to enumerate the methods implemented by the XML-RPC server.
 java.lang.String XmlRpcMetaDataHandler.getMethodHelp()
          This method may be used to implement XmlRpcListableHandlerMapping.getMethodHelp(String).
 java.lang.String ReflectiveXmlRpcMetaDataHandler.getMethodHelp()
           
 java.lang.String XmlRpcListableHandlerMapping.getMethodHelp(java.lang.String pHandlerName)
          This method implements the introspection method system.methodSignature, which is specified as follows: This method takes one parameter, the name of a method implemented by the XML-RPC server.
 java.lang.String[][] XmlRpcListableHandlerMapping.getMethodSignature(java.lang.String pHandlerName)
          This method implements the introspection method system.methodSignature, which is specified as follows: This method takes one parameter, the name of a method implemented by the XML-RPC server.
 java.lang.String[][] XmlRpcMetaDataHandler.getSignatures()
          This method may be used to implement XmlRpcListableHandlerMapping.getMethodSignature(String).
 java.lang.String[][] ReflectiveXmlRpcMetaDataHandler.getSignatures()
           
 java.lang.String[] XmlRpcSystemImpl.listMethods()
          Implements the "system.listMethods" call.
 java.lang.String XmlRpcSystemImpl.methodHelp(java.lang.String methodName)
          Implements the "system.methodHelp" call.
 java.lang.String[][] XmlRpcSystemImpl.methodSignature(java.lang.String methodName)
          Implements the "system.methodSignature" call.
static java.lang.Object Util.newInstance(java.lang.Class pClass)
          Creates a new instance of pClass.
 

Uses of XmlRpcException in org.apache.xmlrpc.parser
 

Methods in org.apache.xmlrpc.parser that throw XmlRpcException
 java.lang.Object TypeParserImpl.getResult()
           
 java.lang.Object TypeParser.getResult()
          Returns the parsed object.
 java.lang.Object SerializableParser.getResult()
           
 

Uses of XmlRpcException in org.apache.xmlrpc.serializer
 

Methods in org.apache.xmlrpc.serializer that throw XmlRpcException
 org.xml.sax.ContentHandler XmlWriterFactory.getXmlWriter(XmlRpcStreamConfig pConfig, java.io.OutputStream pStream)
          Creates a new instance of ContentHandler, writing to the given OutputStream.
 org.xml.sax.ContentHandler DefaultXMLWriterFactory.getXmlWriter(XmlRpcStreamConfig pConfig, java.io.OutputStream pStream)
           
 org.xml.sax.ContentHandler BaseXmlWriterFactory.getXmlWriter(XmlRpcStreamConfig pConfig, java.io.OutputStream pStream)
           
 

Uses of XmlRpcException in org.apache.xmlrpc.server
 

Subclasses of XmlRpcException in org.apache.xmlrpc.server
 class XmlRpcNoSuchHandlerException
          This exception is thrown, if an unknown handler is called.
 

Methods in org.apache.xmlrpc.server that throw XmlRpcException
 void PropertyHandlerMapping.addHandler(java.lang.String pKey, java.lang.Class pClass)
          Adds handlers for the given object to the mapping.
 java.lang.Object XmlRpcServerWorker.execute(XmlRpcRequest pRequest)
           
 java.lang.Object XmlRpcServer.execute(XmlRpcRequest pRequest)
          Performs the given request.
 java.lang.Object XmlRpcLocalStreamServer.execute(XmlRpcRequest pRequest)
           
 java.lang.Object ReflectiveXmlRpcHandler.execute(XmlRpcRequest pRequest)
           
 void XmlRpcStreamServer.execute(XmlRpcStreamRequestConfig pConfig, ServerStreamConnection pConnection)
          Returns, whether the /** Processes a "connection".
 XmlRpcHandler XmlRpcHandlerMapping.getHandler(java.lang.String handlerName)
          Return the handler for the specified handler name.
 XmlRpcHandler AbstractReflectiveHandlerMapping.getHandler(java.lang.String pHandlerName)
          Returns the XmlRpcHandler with the given name.
 java.lang.String[] AbstractReflectiveHandlerMapping.getListMethods()
           
 java.lang.String AbstractReflectiveHandlerMapping.getMethodHelp(java.lang.String pHandlerName)
           
 java.lang.String[][] AbstractReflectiveHandlerMapping.getMethodSignature(java.lang.String pHandlerName)
           
protected  XmlRpcRequest XmlRpcStreamServer.getRequest(XmlRpcStreamRequestConfig pConfig, java.io.InputStream pStream)
           
protected  java.lang.Object RequestProcessorFactoryFactory.StatelessProcessorFactoryFactory.getRequestProcessor(java.lang.Class pClass)
          Subclasses may override this method for class specific configuration.
protected  java.lang.Object RequestProcessorFactoryFactory.RequestSpecificProcessorFactoryFactory.getRequestProcessor(java.lang.Class pClass, XmlRpcRequest pRequest)
          Subclasses may override this method for request specific configuration.
 java.lang.Object RequestProcessorFactoryFactory.RequestProcessorFactory.getRequestProcessor(XmlRpcRequest pRequest)
          This method is invoked for any request in order to create and configure the request processor.
 RequestProcessorFactoryFactory.RequestProcessorFactory RequestProcessorFactoryFactory.getRequestProcessorFactory(java.lang.Class pClass)
          This method is invoked at startup.
 RequestProcessorFactoryFactory.RequestProcessorFactory RequestProcessorFactoryFactory.RequestSpecificProcessorFactoryFactory.getRequestProcessorFactory(java.lang.Class pClass)
           
 RequestProcessorFactoryFactory.RequestProcessorFactory RequestProcessorFactoryFactory.StatelessProcessorFactoryFactory.getRequestProcessorFactory(java.lang.Class pClass)
           
protected  XmlRpcWriter XmlRpcStreamServer.getXmlRpcWriter(XmlRpcStreamRequestConfig pConfig, java.io.OutputStream pStream)
           
 boolean AbstractReflectiveHandlerMapping.AuthenticationHandler.isAuthorized(XmlRpcRequest pRequest)
          Returns, whether the user is authenticated and authorized to perform the request.
 void PropertyHandlerMapping.load(java.lang.ClassLoader pClassLoader, java.util.Map pMap)
          Reads handler definitions from an existing Map.
 void PropertyHandlerMapping.load(java.lang.ClassLoader pClassLoader, java.lang.String pResource)
          Reads handler definitions from a resource file.
 void PropertyHandlerMapping.load(java.lang.ClassLoader pClassLoader, java.net.URL pURL)
          Reads handler definitions from a property file.
protected  java.lang.Class PropertyHandlerMapping.newHandlerClass(java.lang.ClassLoader pClassLoader, java.lang.String pClassName)
           
protected  XmlRpcHandler AbstractReflectiveHandlerMapping.newXmlRpcHandler(java.lang.Class pClass, java.lang.reflect.Method[] pMethods)
          Creates a new instance of XmlRpcHandler.
protected  void AbstractReflectiveHandlerMapping.registerPublicMethods(java.lang.String pKey, java.lang.Class pType)
          Searches for methods in the given class.
protected  void XmlRpcStreamServer.writeError(XmlRpcStreamRequestConfig pConfig, java.io.OutputStream pStream, java.lang.Throwable pError)
           
protected  void XmlRpcStreamServer.writeResponse(XmlRpcStreamRequestConfig pConfig, java.io.OutputStream pStream, java.lang.Object pResult)
           
 

Uses of XmlRpcException in org.apache.xmlrpc.util
 

Methods in org.apache.xmlrpc.util that throw XmlRpcException
static org.xml.sax.XMLReader SAXParsers.newXMLReader()
          Creates a new instance of XMLReader.
 

Uses of XmlRpcException in org.apache.xmlrpc.webserver
 

Methods in org.apache.xmlrpc.webserver that throw XmlRpcException
protected  PropertyHandlerMapping XmlRpcServlet.newPropertyHandlerMapping(java.net.URL url)
          Creates a new instance of PropertyHandlerMapping by loading the property file from the given URL.
protected  XmlRpcHandlerMapping XmlRpcServlet.newXmlRpcHandlerMapping()
          Creates a new handler mapping.
protected  XmlRpcServletServer XmlRpcServlet.newXmlRpcServer(javax.servlet.ServletConfig pConfig)
          Creates a new instance of XmlRpcServer, which is being used to process the requests.
 



Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.