Menu

[r1401]: / advanced / src / test / cgitest1.c  Maximize  Restore  History

Download this file

80 lines (54 with data), 1.9 kB

 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
74
75
76
77
78
79
/*============================================================================
Act like a CGI script -- read POST data from Standard Input, interpret
it as an XML-RPC call, and write an XML-RPC response to Standard Output.
This is for use by a test program.
============================================================================*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include "xmlrpc_config.h"
#include "xmlrpc-c/base.h"
#include "xmlrpc-c/server.h"
#include "xmlrpc-c/server_cgi.h"
#include "test.h"
int total_tests;
int total_failures;
static xmlrpc_value *
sample_add(xmlrpc_env * const env,
xmlrpc_value * const param_array,
void * const user_data ATTR_UNUSED) {
xmlrpc_int32 x, y, z;
/* Parse our argument array. */
xmlrpc_decompose_value(env, param_array, "(ii)", &x, &y);
if (env->fault_occurred)
return NULL;
/* Add our two numbers. */
z = x + y;
/* Return our result. */
return xmlrpc_build_value(env, "i", z);
}
int
main(int argc ATTR_UNUSED,
char ** argv ATTR_UNUSED) {
xmlrpc_env env;
xmlrpc_registry * registryP;
xmlrpc_value * argArrayP;
xmlrpc_env_init(&env);
registryP = xmlrpc_registry_new(&env);
TEST(registryP != NULL);
TEST_NO_FAULT(&env);
xmlrpc_registry_add_method(&env, registryP, NULL, "sample.add",
sample_add, NULL);
TEST_NO_FAULT(&env);
argArrayP = xmlrpc_build_value(&env, "(ii)",
(xmlrpc_int32) 25, (xmlrpc_int32) 17);
TEST_NO_FAULT(&env);
/* The following reads from Standard Input and writes to Standard
Output
*/
xmlrpc_server_cgi_process_call(registryP);
xmlrpc_DECREF(argArrayP);
xmlrpc_registry_free(registryP);
return 0;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.