File: gen_sample_add_xml.c

package info (click to toggle)
xmlrpc-c 1.06.27-1.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 4,308 kB
  • ctags: 5,111
  • sloc: ansic: 39,324; sh: 8,284; cpp: 6,051; makefile: 1,339; perl: 494; xml: 134
file content (73 lines) | stat: -rw-r--r-- 1,758 bytes parent folder | download | duplicates (2)
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
70
71
72
73
/* This program generates on Standard Output the XML for an XML-RPC
   call suitable for the xmlrpc_sample_add_server program.

   This is the same XML that the xmlrpc_sample_add_client program sends.

   Use this either as an example of how to use the Xmlrpc-c XML-generating
   functions or to generate XML that you can use to test an XML-RPC
   server.
*/

#include <stdlib.h>
#include <stdio.h>

#include <xmlrpc-c/base.h>

#include "config.h"

static void 
die_if_fault_occurred (xmlrpc_env *env) {
    if (env->fault_occurred) {
        fprintf(stderr, "XML-RPC Fault: %s (%d)\n",
                env->fault_string, env->fault_code);
        exit(1);
    }
}



int 
main(int           const argc, 
     const char ** const argv ATTR_UNUSED) {

    char * const methodName = "sample.add";

    xmlrpc_env env;
    xmlrpc_value * params;
    xmlrpc_mem_block * xmlmemblockP;

    if (argc-1 > 0) {
        fprintf(stderr, "This program has no arguments\n");
        exit(1);
    }

    /* Initialize our error-handling environment. */
    xmlrpc_env_init(&env);

    params = xmlrpc_build_value(&env, "(ii)", 
                                (xmlrpc_int32) 5, (xmlrpc_int32) 7);
    
    die_if_fault_occurred(&env);

    xmlmemblockP = XMLRPC_MEMBLOCK_NEW(char, &env, 0);

    xmlrpc_serialize_call(&env, xmlmemblockP, methodName, params);

    die_if_fault_occurred(&env);

    fwrite(XMLRPC_MEMBLOCK_CONTENTS(char, xmlmemblockP), 
           sizeof(char), 
           XMLRPC_MEMBLOCK_SIZE(char, xmlmemblockP), 
           stdout);

    XMLRPC_MEMBLOCK_FREE(char, xmlmemblockP);

    /* Dispose of our parameter array. */
    xmlrpc_DECREF(params);

    /* Clean up our error-handling environment. */
    xmlrpc_env_clean(&env);
    
    return 0;
}