summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorGravatar snowdrop2004-08-30 13:25:23 +0000
committerGravatar snowdrop2004-08-30 13:25:23 +0000
commit056647348ff38f83b5e13bed1c4f4bb76cce50f9 (patch)
tree70b26c98086029d71db2fd9179eb9e7ff5b1f696 /examples
parent295147a45091769563551a26c79a06abbe5f4dc9 (diff)
downloadcsoap-056647348ff38f83b5e13bed1c4f4bb76cce50f9.tar.gz
csoap-056647348ff38f83b5e13bed1c4f4bb76cce50f9.tar.bz2
optimized warnings
Diffstat (limited to 'examples')
-rw-r--r--examples/csoap/simpleclient.c5
-rw-r--r--examples/csoap/simpleserver.c4
2 files changed, 4 insertions, 5 deletions
diff --git a/examples/csoap/simpleclient.c b/examples/csoap/simpleclient.c
index 2bb760d..f4754e4 100644
--- a/examples/csoap/simpleclient.c
+++ b/examples/csoap/simpleclient.c
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: simpleclient.c,v 1.2 2004/02/03 09:09:41 snowdrop Exp $
+ * $Id: simpleclient.c,v 1.3 2004/08/30 13:28:58 snowdrop Exp $
*
* CSOAP Project: CSOAP examples project
* Copyright (C) 2003 Ferhat Ayaz
@@ -35,9 +35,8 @@ static const char *method = "sayHello";
int main(int argc, char *argv[])
{
SoapEnv *env, *res;
- xmlDocPtr doc;
- log_set_level(HLOG_INFO);
+ log_set_level(HLOG_VERBOSE);
env = soap_env_new_with_method(urn, method);
soap_env_add_item(env, "xsd:string", "name", "Jonny B. Good");
diff --git a/examples/csoap/simpleserver.c b/examples/csoap/simpleserver.c
index 1fb77a0..bdbe62b 100644
--- a/examples/csoap/simpleserver.c
+++ b/examples/csoap/simpleserver.c
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: simpleserver.c,v 1.3 2004/08/30 07:55:41 snowdrop Exp $
+ * $Id: simpleserver.c,v 1.4 2004/08/30 13:28:58 snowdrop Exp $
*
* CSOAP Project: CSOAP examples project
* Copyright (C) 2003 Ferhat Ayaz
@@ -71,7 +71,7 @@ int main(int argc, char *argv[])
SoapRouter *router;
- log_set_level(HLOG_INFO);
+ log_set_level(HLOG_VERBOSE);
if (!soap_server_init_args(argc, argv)) {
return 0;