Does anyone know if Go tip has support for XML-RPC? I see there are two RPC packages in Go, one named RPC and one for JSONRPC.
I have a project that needs to be able to send XML-RPC requests to a server and handle the responses, I also apologize in advance for
my lack of knowledge of RPC and XML-RPC I have a lot of specifications on it that I need to read through. Due to the fact the client side
will have to send out multiples of such requests and handle what gets returned from the server I figured this would be a great use of Go's
concurrency.
Reading through the documentation on the RPC package it doesn't state what format that it uses or expects to use. Would I have to use the
XML package and marshal the data then use RPC package to submit the data or does RPC package use XML in the first place? Is this not possible
with the current packages for Go? Any pointers on this subject to get me started in the right direction would be greatly appreciated.