Added two SOAP tests
[yaz-moved-to-github.git] / test / tstsoap1.c
1 /*
2  * Copyright (C) 1995-2005, Index Data ApS
3  * See the file LICENSE for details.
4  *
5  * $Id: tstsoap1.c,v 1.1 2005-05-06 11:11:37 adam Exp $
6  */
7
8 #include <stdlib.h>
9 #if HAVE_XML2
10 #include <libxml/parser.h>
11 #endif
12
13 int main(int argc, char **argv)
14 {
15 #if HAVE_XML2
16     LIBXML_TEST_VERSION;
17
18     if (argc <= 1)
19     {
20         xmlChar *buf_out;
21         int len_out;
22         xmlDocPtr doc = xmlNewDoc("1.0");
23 #if 0
24         const char *val = "jordbær"; /* makes xmlDocDumpMemory hang .. */
25 #else
26         const char *val = "jordbaer"; /* OK */
27 #endif
28         xmlNodePtr top = xmlNewNode(0, "top");
29         
30         xmlNewTextChild(top, 0, "sub", val);
31         xmlDocSetRootElement(doc, top);
32         
33         xmlDocDumpMemory(doc, &buf_out, &len_out);
34         printf("%*s", len_out, buf_out);
35     }
36 #endif
37     return 0;
38 }
39
40