'XML-RPC case posted from xmlrpc_example.php', 'body' => 'Delete this test case, submitted via XML-RPC.', 'type' => 'casetracker_basic_case', 'uid' => 1, 'pid' => 14, 'status' => 1, 'case_priority_id' => 1, 'case_status_id' => 7, 'case_type_id' => 14, )); // send out the request to the server. $message = new xmlrpcmsg('casetracker.newCase', array($username, $password, $node)); $response = $client->send($message); // success/error handling. if (!$response->faultCode()) { print php_xmlrpc_decode($response->value()) . "\n"; } else { print "An error occurred. Code: ". htmlspecialchars($response->faultCode()) . " Reason: '". htmlspecialchars($response->faultString()) ."'\n"; }