From 977f0fdf9834f391a62f74a67960e8e301c914bb Mon Sep 17 00:00:00 2001 From: snowdrop Date: Fri, 30 Jan 2004 16:39:59 +0000 Subject: develop --- configure.ac | 2 +- examples/ex1/Makefile.am | 3 +++ examples/ex1/simple.c | 57 +++++++++---------------------------------- examples/nanohttp/Makefile.am | 5 +++- 4 files changed, 19 insertions(+), 48 deletions(-) diff --git a/configure.ac b/configure.ac index cc42cb1..7a313ff 100644 --- a/configure.ac +++ b/configure.ac @@ -231,7 +231,7 @@ AC_SUBST(LIBXML_LIBS) AC_SUBST(LIBXML_CFLAGS) AC_SUBST(CFLAGS) -AC_SUBST(CPPFLAGS) +dnl AC_SUBST(CPPFLAGS) AC_SUBST(LDFLAGS) diff --git a/examples/ex1/Makefile.am b/examples/ex1/Makefile.am index e27d218..468203c 100644 --- a/examples/ex1/Makefile.am +++ b/examples/ex1/Makefile.am @@ -1,6 +1,9 @@ bin_PROGRAMS=simple simple_SOURCES=simple.c INCLUDES=-I$(top_srcdir)/ $(LIBXML_CFLAGS) +LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) \ + $(LIBSOCKET) $(LIBNSL) -lpthread + simple_LDFLAGS=-L$(top_builddir)/libcsoap/ -lcsoap-$(GENERIC_API_VERSION) \ $(LIBXML_LIBS) diff --git a/examples/ex1/simple.c b/examples/ex1/simple.c index 3568865..f026d84 100644 --- a/examples/ex1/simple.c +++ b/examples/ex1/simple.c @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: simple.c,v 1.2 2003/11/14 09:59:41 snowdrop Exp $ + * $Id: simple.c,v 1.3 2004/01/30 16:39:59 snowdrop Exp $ * * CSOAP Project: CSOAP examples project * Copyright (C) 2003 Ferhat Ayaz @@ -21,7 +21,7 @@ * Email: ayaz@jprogrammer.net ******************************************************************/ -#include +#include static const char *url = "http://csoap.sourceforge.net/cgi-bin/csoapserver"; @@ -31,52 +31,17 @@ static const char *method = "sayHello"; int main(int argc, char *argv[]) { - /* Objects to do a soap call */ - HSOAPCALL call; - HSOAPRES result; - HSOAPPARAM res; - HSOAPFAULT fault; + SoapCall *call; + xmlDocPtr doc; - char *str; + call = soap_call_new(urn, method); + soap_call_add_param(call, "xsd:string", "name", "Jonny B. Good"); + + doc = soap_call_invoke(call, url); + soap_xml_doc_print(doc); + xmlFreeDoc(doc); - /* Initialize CSOAP */ - SoapInit(argc, argv); - - /* Create a soap call object */ - call = SoapCallCreate((argc>1)?argv[1]:url, urn, method); - - /* Add the only parameter for the soap call */ - SoapCallAddStringParam(call, "name", "John B. Good"); - - /* Now invoke the call. Here we try to */ - /* establish a network (http) communication */ - result = SoapCallInvoke(call); - - /* Check if the call was succesfull*/ - if (result == NULL) { - fprintf(stderr, "Can not send the soap call\n"); - exit(1); - } - - /* Now check if we received a fault object */ - if (fault = SoapResGetFault(result)) { - - /* Use the default printer */ - SoapFaultPrint(stdout, fault); - - } else { - - /* Print the only string in the response */ - res = SoapResGetParamChildren(result); - - if (res != NULL) { - str = SoapParamToString(res); - fprintf(stdout, "Server: '%s'\n", str); - free(str); - } else { - fprintf(stderr, "Corrupt response!\n"); - } - } + free(call); return 0; } diff --git a/examples/nanohttp/Makefile.am b/examples/nanohttp/Makefile.am index dde2691..277a4c6 100644 --- a/examples/nanohttp/Makefile.am +++ b/examples/nanohttp/Makefile.am @@ -1,4 +1,4 @@ -bin_PROGRAMS=httpget httpgetcb httppost httpcpost helloserver +bin_PROGRAMS=httpget httpgetcb httppost httpcpost helloserver postserver INCLUDES=-I$(top_srcdir)/ LDFLAGS=-L$(top_builddir)/nanohttp -lnanohttp-$(GENERIC_API_VERSION) \ @@ -19,6 +19,9 @@ httpcpost_LDFLAGS=$(LDFLAGS) helloserver_SOURCES=helloserver.c helloserver_LDFLAGS=$(LDFLAGS) +postserver_SOURCES=postserver.c +postserver_LDFLAGS=$(LDFLAGS) + -- cgit v1.1-32-gdbae