org.apache.turbine.services.xmlrpc.util |
|
Java Source File Name | Type | Comment |
AuthenticatedFileHandler.java | Class | An authenticated Handler for use with the XML-RPC service that will deal
with clients sending file to the server (Turbine application)
and clients getting files from the server (Turbine application). |
FileHandler.java | Class | A Handler for use with the XML-RPC service that will deal
with clients sending file to the server (Turbine application)
and clients getting files from the server (Turbine application).
1) In the first case where the client sends a file to the server,
the client has encoded the file contents and passes those
encoded file contents on to the server:
Client --------> encoded file contents -------------> Server
The server must then decode the file contents and write the
decoded file contents to disk.
2) In the second case where the client gets a file from the
the server, the server has encoded the file contents and
passes those encoded file contents on to the client:
Client <------- encoded file contents <------------- Server
The client must then decode the file contents and write the
decoded file contents to disk.
author: Jason van Zyl author: Jon S. |
FileHandlerTest.java | Class | Test class for FileHandler. |
FileTransfer.java | Class | Test class for FileHandler. |