module XmlRPCNet: sig end
Speaking to XML-RPC servers
|
The actual connection and communication with the remote server is done using the netclient library's Http_client
module. All its caveats about thread safety apply. In the future I might make a thread-aware version that uses a different pipeline for each thread, in which case handler will become a function call.
val handler : Http_client.pipeline
handler
is the Http_client.pipeline
instance that's used to run
all XML-RPC calls. Use the relevant methods on this to fine-tune
stuff.