What is XRPC, how do I use it
web-services
Solution
Actually its not a typo. XRPC is similar to XML-RPC, but not the same. XRPC is a protocol invented in 2003 at the Institute for Scientific Information, which was acquired by Thomson. Thomson later became Thomson-Reuters.
An example request will look like this:
<?xml version="1.0" encoding="UTF-8" ?>
<request xmlns="http://www.isinet.com/xrpc41">
<fn name="APICall1"><!-- parameters --></fn>
<fn name="APICall2"><!-- parameters --></fn>
:
<fn name="APICallN"><!-- parameters --></fn>
</request>
And the response is similar:
<?xml version="1.0" encoding="UTF-8" ?>
<response xmlns="http://www.isinet.com/xrpc41">
<fn name="APICall1" rc="OK"><!-- return value --></fn>
<fn name="APICall2" rc="OK"><!-- return value --></fn>
:
<fn name="APICallN" rc="ErrorCode"><!-- error --></fn>
</response>
The requests/responses will be populated by data elements like
<val>, <list>, <map>,
Problem
I am trying to connect to Thomson Reuters Researcher ID service using XRPC. My questions are as follows: 1) What is XRPC? 2) What do I need to do to send the appropriate data