gorilla-xmlrpc
gorilla-xmlrpc copied to clipboard
Gorilla XML RPC implementation (Golang/Go)
This allows services to generate their own faults. eg ``` type HelloService struct{} func (h *HelloService) Say(r *http.Request, args *struct{Who string}, reply *struct{Message string}) error { log.Println("Say", args.Who) if args.Who...
Hi, First of all, your xmlRPC lib is cool and I am using it with Odoo. I have added a function to transform a map[string]interface{} to a struct2XML. ++
Helps with big responses. For backward compatibility, EncodeClientRequest does not change, just introduce a new ``` EncodeClientRequestW(io.Writer, string, interface{}) error ``` function. This is a follow-up of #8, without the...
This enables a Go map to be marshaled into in the XML-RPC request as a element — which is similar to the way that the standard library marshals maps into...