From 72a38917b032d01708122d5b6af5262c7c04d1d4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Kou=C5=99il?= Date: Tue, 24 Jan 2006 13:49:21 +0000 Subject: [PATCH] Initialized namespaces --- org.glite.security.gsoap-plugin/examples/wscalc_clt_ex.c | 1 + org.glite.security.gsoap-plugin/examples/wscalc_srv_ex.c | 1 + org.glite.security.gsoap-plugin/examples/wscalc_srv_ex2.c | 1 + 3 files changed, 3 insertions(+) diff --git a/org.glite.security.gsoap-plugin/examples/wscalc_clt_ex.c b/org.glite.security.gsoap-plugin/examples/wscalc_clt_ex.c index e55a6cc..83a4cfb 100644 --- a/org.glite.security.gsoap-plugin/examples/wscalc_clt_ex.c +++ b/org.glite.security.gsoap-plugin/examples/wscalc_clt_ex.c @@ -19,6 +19,7 @@ main(int argc, char **argv) } soap_init(&soap); + soap_set_namespaces(&soap, namespaces); soap_register_plugin(&soap, glite_gsplugin); a = strtod(argv[2], NULL); diff --git a/org.glite.security.gsoap-plugin/examples/wscalc_srv_ex.c b/org.glite.security.gsoap-plugin/examples/wscalc_srv_ex.c index dd9d49d..6fe18d8 100644 --- a/org.glite.security.gsoap-plugin/examples/wscalc_srv_ex.c +++ b/org.glite.security.gsoap-plugin/examples/wscalc_srv_ex.c @@ -53,6 +53,7 @@ main(int argc, char **argv) } soap_init(&soap); + soap_set_namespaces(&soap, namespaces); if ( soap_register_plugin_arg(&soap, glite_gsplugin, ctx? : NULL) ) { fprintf(stderr, "Can't register plugin\n"); diff --git a/org.glite.security.gsoap-plugin/examples/wscalc_srv_ex2.c b/org.glite.security.gsoap-plugin/examples/wscalc_srv_ex2.c index 7c96dab..844f46a 100644 --- a/org.glite.security.gsoap-plugin/examples/wscalc_srv_ex2.c +++ b/org.glite.security.gsoap-plugin/examples/wscalc_srv_ex2.c @@ -67,6 +67,7 @@ main(int argc, char **argv) } soap_init(&soap); + soap_set_namespaces(&soap, namespaces); if ( soap_register_plugin_arg(&soap, glite_gsplugin, ctx) ) { fprintf(stderr, "Can't register plugin\n"); -- 1.8.2.3