diff options
Diffstat (limited to 'examples/csoap/soapclient.c')
| -rw-r--r-- | examples/csoap/soapclient.c | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/examples/csoap/soapclient.c b/examples/csoap/soapclient.c index 131ceac..c7d55f3 100644 --- a/examples/csoap/soapclient.c +++ b/examples/csoap/soapclient.c @@ -4,21 +4,26 @@  */  /* Author: Adrianus Warmenhoven */ -#include <sys/time.h>  #include <stdio.h>  #include <string.h>  #include <ctype.h>  #include <netinet/in.h> +#include <libxml/tree.h> +#include <libxml/uri.h> +  #include <nanohttp/nanohttp-common.h>  #include <nanohttp/nanohttp-socket.h>  #include <nanohttp/nanohttp-stream.h>  #include <nanohttp/nanohttp-request.h>  #include <nanohttp/nanohttp-response.h>  #include <nanohttp/nanohttp-client.h> -  #include <nanohttp/nanohttp-logging.h> + +#include <libcsoap/soap-fault.h> +#include <libcsoap/soap-env.h> +#include <libcsoap/soap-ctx.h>  #include <libcsoap/soap-client.h>  #define MAX_LINE_LENGTH 65535 | 
