I have a mashup I need to d with a site that uses xmlrpc. I am trying
to understand the the call method. I have the following items that
need to be passed to the remote site.
methodName
and the following structure
ID - string
area - string
views = array of strings
I know what the xml should look like
lists
id
12345
list
district
View
Ocean
Mountain
Golf Course
Garden View
I have results from various inputs from the view for the value. I am
trying to figure out how to create the xml structure and how to use it
in the XMLRPC call.
OK I can do that, but how is that result string of xml passed to the
server I have a variable remote_server that was created with the
XMLRPC::Client.new2 call. how do I then call the method “search” on
that serve?
Thank you. I assume the args parameter is a hash of the variou values
to be put into the XML. Correct?
Does the call method actually generates the XML as I described, or do
I have to generate it?