I followed the steps on the gSoap page and tried to run the sample code on Qt / Windows using the Mingw32 Compiler. However, I cannot add lgsoap ++ to the linker, as indicated in the documentation, since it is not in the source package
To complete the assembly, compilation and link the created soapC.cpp, soapcalcProxy.cpp and the runtime gSOAP engine -lgsoap ++ (or use the source stdsoap2.cpp if libgsoap ++. A is not installed) with your code.
Then I tried to add stdsoap2.cpp to SOURCES and this is the compilation result . So my question is how will I run this piece of code in Qt using the Mingw32 compiler or how will I generate this lgsoap ++. The following are my pros and source files:
QT -= gui TARGET = SoapCalc CONFIG += console CONFIG -= app_bundle TEMPLATE = app SOURCES += main.cpp \ ../Console/gsoap/stdsoap2.cpp OTHER_FILES += ../../../../../gsoap/gsoap-2.7/gsoap/calc.nsmap HEADERS += ../../../../../gsoap/gsoap-2.7/gsoap/soapcalcProxy.h
source share