Expanded tabs in all source files. Added vim/emacs local variables
[yaz-moved-to-github.git] / test / tstsoap2.c
1 /*
2  * Copyright (C) 1995-2005, Index Data ApS
3  * See the file LICENSE for details.
4  *
5  * $Id: tstsoap2.c,v 1.2 2005-06-25 15:46:07 adam Exp $
6  */
7
8 #include <stdlib.h>
9 #if HAVE_XML2
10 #include <libxml/parser.h>
11
12 #include <yaz/srw.h>
13 #include <yaz/soap.h>
14
15 static void tst_srw(void)
16 {
17     const char *charset = 0;
18     char *content_buf = 0;
19     int content_len;
20     int ret;
21     ODR o = odr_createmem(ODR_ENCODE);
22     Z_SOAP_Handler h[2] = {
23         {"http://www.loc.gov/zing/srw/", 0, (Z_SOAP_fun) yaz_srw_codec},
24         {0, 0, 0}
25     };
26     Z_SRW_PDU *sr = yaz_srw_get(o, Z_SRW_searchRetrieve_request);
27     Z_SOAP *p = odr_malloc(o, sizeof(*p));
28
29 #if 0
30     sr->u.request->query.cql = "jordbær"; 
31 #else
32     sr->u.request->query.cql = "jordbaer"; 
33 #endif
34
35     p->which = Z_SOAP_generic;
36     p->u.generic = odr_malloc(o, sizeof(*p->u.generic));
37     p->u.generic->no = 0;
38     p->u.generic->ns = 0;
39     p->u.generic->p = sr;
40     p->ns = "http://schemas.xmlsoap.org/soap/envelope/";
41
42     ret = z_soap_codec_enc(o, &p, &content_buf, &content_len, h, charset);
43     odr_destroy(o);
44     if (ret)
45     {
46         printf("z_soap_codec_enc failed\n");
47         exit(1);
48     }
49 }
50 #endif
51
52 int main(int argc, char **argv)
53 {
54 #if HAVE_XML2
55     LIBXML_TEST_VERSION
56     if (argc <= 1)
57     {
58         tst_srw();
59     }
60 #endif
61     return 0;
62 }
63 /*
64  * Local variables:
65  * c-basic-offset: 4
66  * indent-tabs-mode: nil
67  * End:
68  * vim: shiftwidth=4 tabstop=8 expandtab
69  */
70