RTC Forums
November 25, 2024, 04:55:13 AM
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Home
Help
Login
Register
RTC Forums
>
Subscription
>
Support
>
XML-RPC question
Pages: [
1
]
« previous
next »
Print
Author
Topic: XML-RPC question (Read 5058 times)
gerryw
Guest
XML-RPC question
«
on:
December 14, 2009, 06:34:30 PM »
Hello All,
I have just started using RTC and I want to make sure I am understanding the XML-RPC support correctly. I have notice that if I use the RtcClientModule, the args are sent as a structure. This would seem to mean that for doing generic XML-RPC, I would need to build the request xml myself. I am also trying to figure out what facilities, if any, are available for parsing the response. Do I need to do this with an xml parser ala TXMLDocument etc.? All of this assumes a non-RTC server of course. Any pointers on this would be greatly appreciated.
Thanks,
-G
Logged
D.Tkalcec (RTC)
Administrator
Posts: 1881
Re: XML-RPC question
«
Reply #1 on:
January 21, 2010, 11:32:22 AM »
Any server which understands XML-RPC should be capable of parsing data received in a <struct>. But if you need to talk to a third-party Server which has remote functions implemented so that all parameters are expected inside <params> where each parameter is a separate <param>, to force this behavior on RtcClientModule, preparing your remote function call parameters inside a "params" array, like this:
with CliModule.Data.newFunction('MyRemoteFunctionName').newArray('params') do
begin
asString[0]:='myParam0';
asInteger[1]:=123456;
asFloat[2]:=1234.56;
end;
Best Regards,
Danijel Tkalcec
Logged
Pages: [
1
]
Print
« previous
next »
Jump to:
Please select a destination:
-----------------------------
Dashboard
-----------------------------
=> General
=> 3rd-Party
=> Quick Start
-----------------------------
Subscription
-----------------------------
=> Support
Loading...