T
thawebmaster
Guest
Last night I was playing with some xml rpc stuff. A lot of functions work properly from within applications. However, one thing drives me crazy.
I send the following packet to the server as administrator:
I'm getting this response from the server.
I don't see the problem in my source package. Anyone an idea?
I send the following packet to the server as administrator:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<packet version="1.4.2.0">
<dns>
<add_rec>
<domain_id>92</domain_id>
<type>CNAME</type>
<host>home.royal-fish.nl.</host>
<value>royalfish.nl.</value>
</add_rec>
</dns>
</packet>
I'm getting this response from the server.
Code:
<?xml version="1.0"?>
<packet version="1.4.2.0">
<dns>
<add_rec>
<result>
<status>error</status>
<errcode>1023</errcode>
<errtext>There are incorrect parameter values.</errtext>
</result>
</add_rec>
</dns>
</packet>
I don't see the problem in my source package. Anyone an idea?