I am trying to use the XML-RPC Client example in QT-Creator and am getting linking errors I can seem to be able to solve.
main.cpp:
#include <cstdlib>
#include <string>
#include <iostream>
#include <xmlrpc-c/girerr.hpp>
#include <xmlrpc-c/base.hpp>
#include <xmlrpc-c/client_simple.hpp>
using namespace std;
int
main(int argc, char **) {
if (argc-1 > 0) {
cerr << "This program has no arguments" << endl;
exit(1);
}
try {
string const serverUrl("http://localhost:8080/RPC2");
string const methodName("sample.add");
xmlrpc_c::clientSimple myClient;
xmlrpc_c::value result;
myClient.call(serverUrl, methodName, "ii", &result, 5, 7);
int const sum = xmlrpc_c::value_int(result);
// Assume the method returned an integer; throws error if not
cout << "Result of RPC (sum of 5 and 7): " << sum << endl;
} catch (exception const& e) {
cerr << "Client threw error: " << e.what() << endl;
} catch (...) {
cerr << "Client threw unexpected error." << endl;
}
return 0;
}
.pro file:
#-------------------------------------------------
#
# Project created by QtCreator 2013-04-02T00:25:47
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Mark2
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp
HEADERS += mainwindow.h
FORMS += mainwindow.ui
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../../../../../usr/lib/release/ -lxmlrpc++
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../../../../../usr/lib/debug/ -lxmlrpc++
else:unix: LIBS += -L$$PWD/../../../../../../usr/lib/ -lxmlrpc++
INCLUDEPATH += $$PWD/../../../../../../usr/include
DEPENDPATH += $$PWD/../../../../../../usr/include
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../../../../../usr/lib/release/ -lxmlrpc_client++
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../../../../../usr/lib/debug/ -lxmlrpc_client++
else:unix: LIBS += -L$$PWD/../../../../../../usr/lib/ -lxmlrpc_client++
INCLUDEPATH += $$PWD/../../../../../../usr/include
DEPENDPATH += $$PWD/../../../../../../usr/include
This is straight from http://xmlrpc-c.sourceforge.net/doc/#clientexamplepp
I am getting the following error:
error: undefined reference to `xmlrpc_c::clientSimple::clientSimple()'
As you can see I have included
xmlrpc-c/client_simple.hpp
which provides the definition of clientSimple. I have installed the xmlrpc library via the ubuntu software-center "libxmlrpc-c++4-dev" and "xmlrpc-api-utils"
What am I missing? Any help would be very appreciated!