Hi.
We've been experimenting using XML-RPC to interact with our Confluence server from our continuous integration machines.
This is working OK, but one thing we have noticed is that responses from the server do not seem to be complaint to the XML-RPC specification. Specifically, the member values of returned structs do not contain type information.
Here is an example member from the response:
<member>
<name>version</name>
<value>35</value>
</member>
the XML-RPC states that this should be:
<member>
<name>version</name>
<value><int>35</int></value>
</member>
Is this a known issue?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.