1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/* A simple synchronous XML-RPC client written in C. */
#include <stdlib.h>
#include <stdio.h>
#include <xmlrpc-c/base.h>
#include <xmlrpc-c/client.h>
#include "config.h" /* information about this build environment */
#define NAME "XML-RPC C Test Client synch_client"
#define VERSION "1.0"
static void
die_if_fault_occurred(xmlrpc_env * const envP) {
if (envP->fault_occurred) {
fprintf(stderr, "XML-RPC Fault: %s (%d)\n",
envP->fault_string, envP->fault_code);
exit(1);
}
}
int
main(int const argc,
const char ** const argv ATTR_UNUSED) {
xmlrpc_env env;
xmlrpc_value * resultP;
const char * stateName;
int val;
static int count = 0;
/* Start up our XML-RPC client library. */
xmlrpc_client_init(XMLRPC_CLIENT_NO_FLAGS, NAME, VERSION);
while (1) {
/* Initialize our error-handling environment. */
xmlrpc_env_init(&env);
/* Call the famous server at UserLand. */
resultP = xmlrpc_client_call(&env, "http://localhost:3000/RPC2",
"ping", "(i)", (xmlrpc_int32) count);
die_if_fault_occurred(&env);
/* Get our state name and print it out.
xmlrpc_read_string(&env, resultP, &stateName);
die_if_fault_occurred(&env);
printf("%s\n", stateName);
free((char*)stateName);
*/
xmlrpc_read_int(&env, resultP, &val);
die_if_fault_occurred(&env);
printf("%d %d\n", val, count++);
/* Dispose of our result value. */
xmlrpc_DECREF(resultP);
/* Clean up our error-handling environment. */
xmlrpc_env_clean(&env);
}
/* Shutdown our XML-RPC client library. */
xmlrpc_client_cleanup();
return 0;
}
|