gorilla-xmlrpc
gorilla-xmlrpc copied to clipboard
Gorilla XML RPC implementation (Golang/Go)
I sent the xml-rpc request like this, but xml-rpc server doesn't get the request value. ```xml MethodNameParamNameParamValue ``` I think it caused for the following reasons If there are no...
Hey, I'm not using XML-RPC anymore and have no time to test proposed pull-requests. Anyone willing to get the ownership for this package? Seems like people still use XML-RPC.
Seems like the methodname has to be uppercase and also has to be handleUSSDRequest.function instead of handleUSSDRequest? Example below this fails handleUSSDRequest User 1 This works handleUSSDRequest.function User 1
Allow library to parse arrays of mixed types (specified as []interface{}).
I was trying to supply my custom parameters to XMLRPC server running on Python, the parameters are not even converting to XML tree due to some bug. Here is the...
Here's the code I have: ``` go type RunKeywordReturnValue struct{ Return interface{} `xml:"return"` Status string `xml:"status"` Output string `xml:"output"` Error string `xml:"error"` Traceback string `xml:"traceback"` } func (h *RobotRemoteService) RunKeyword(r...
``` go /* how to define go gorilla/rpc func signature if XML-RPC args is comprised as * 2 arguments: a string argument for actual keyword/method to execute, and * an...