module XmlRPCServer: sig end
Generally, you won't need to call these functions yourself. They're used in the source generated from idl files.
Types
|
type
t
class type source = object end
exception Error of (string * int)
val make : source -> t
Registering request handlers.
|
val register_callback : t -> string -> (XmlRPCTypes.t array -> XmlRPCTypes.t) -> unit
val remove_callback : t -> string -> unit
val is_handled : t -> string -> bool
val list_functions : t -> string list
Handling requests
|
val server : string
val run : t -> unit