diff options
author | snowdrop | 2004-08-30 15:26:48 +0000 |
---|---|---|
committer | snowdrop | 2004-08-30 15:26:48 +0000 |
commit | 30911b1730a1a69241beaca7d1ed71212d4f7b3f (patch) | |
tree | 1538c363a546cc7584f88b3886433d43aca50c77 /examples/csoap/simpleclient.c | |
parent | 056647348ff38f83b5e13bed1c4f4bb76cce50f9 (diff) | |
download | csoap-30911b1730a1a69241beaca7d1ed71212d4f7b3f.tar.gz csoap-30911b1730a1a69241beaca7d1ed71212d4f7b3f.tar.bz2 |
migration win32 socket code
Diffstat (limited to 'examples/csoap/simpleclient.c')
-rw-r--r-- | examples/csoap/simpleclient.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/csoap/simpleclient.c b/examples/csoap/simpleclient.c index f4754e4..4f2bcfe 100644 --- a/examples/csoap/simpleclient.c +++ b/examples/csoap/simpleclient.c @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: simpleclient.c,v 1.3 2004/08/30 13:28:58 snowdrop Exp $ + * $Id: simpleclient.c,v 1.4 2004/08/30 15:26:48 snowdrop Exp $ * * CSOAP Project: CSOAP examples project * Copyright (C) 2003 Ferhat Ayaz @@ -37,6 +37,9 @@ int main(int argc, char *argv[]) SoapEnv *env, *res; log_set_level(HLOG_VERBOSE); + if (!soap_client_init_args(argc, argv)) { + return 1; + } env = soap_env_new_with_method(urn, method); soap_env_add_item(env, "xsd:string", "name", "Jonny B. Good"); |