From: Daniel KouĊ™il Date: Tue, 24 Jan 2006 13:49:21 +0000 (+0000) Subject: Initialized namespaces X-Git-Tag: merge_for_3_1_dst~37 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=72a38917b032d01708122d5b6af5262c7c04d1d4;p=jra1mw.git Initialized namespaces --- 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");