I am new to gsoap. I wonder if it is possible to compile the gsoap source files into my simple project directly. I created a simple hello world c++ project, and wanna to put the essential gsoap source files into this project, finally compile them using my own makefile.
Is it possible to do that? Can anyone give some instructions? I have been trying for some time, but I encountered some compilation errors, I took the files stdsoap2.cpp, dom.cpp and all files under \gsoap\wsdl\
update
e.g. I created a helloworld project, the files are HelloWorld.h, HelloWorld.cpp, main.cpp, they are under HelloWorld folder. Then I moved below gsoap sources into the HelloWorld folder, wrote a make file to compile all files, and when compiling I got the error.
fatal error: wsdlH.h: No such file or directory.
orginal: /gsoap/stdsoap2. cpp
now: /HelloWorld/stdsoap2.cpp
orginal: /gsoap/dom. cpp
now: /HelloWorld/dom.cpp
orginal: /gsoap/wsdl/services.cpp
now:/HelloWorld/services.cpp
orginal: /gsoap/wsdl/soap.cpp
now: /HelloWorld/soap.cpp
orginal: /gsoap/wsdl/types.cpp
now: /HelloWorld/types.cpp
orginal: /gsoap/wsdl/wsdl2h.cpp
now: /HelloWorld/wsdl2h.cpp
orginal: /gsoap/wsdl/wsdl.cpp
now: /HelloWorld/wsdl.cpp
orginal: /gsoap/wsdl/wsp.cpp
now: /HelloWorld/wsp.cpp