File: main.cpp

package info (click to toggle)
kdsoap 1.9.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,568 kB
  • sloc: cpp: 18,969; python: 438; sh: 281; makefile: 8
file content (45 lines) | stat: -rw-r--r-- 1,114 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include <QCoreApplication>

#include "KDSoapServer.h"
#include "helloworld_server.h"
#include <iostream>

ServerObject::ServerObject()
    : Hello_ServiceServerBase()
{
}

ServerObject::~ServerObject() {
}

QString ServerObject::sayHello(const QString& msg)
{
    if (msg.isEmpty()) {
        setFault(QLatin1String("Client.Data"), QLatin1String("Empty message"),
                 QLatin1String("ServerObject"), tr("You must say something."));
        return QString();
    }
    return tr("I'm helloworld_server and you said: %1").arg(msg);
}

class Server : public KDSoapServer {
public:
    QObject* createServerObject() override {
        return new ServerObject;
    }
};

int main(int argc, char** argv)
{
    QCoreApplication app(argc, argv);
    Server server;
    server.setLogLevel(Server::LogEveryCall);
    const bool listening = server.listen(QHostAddress::Any, 8081);
    if ( !listening ) {
        std::cerr << "Cannot start server: " << qPrintable(server.errorString()) << std::endl;
        return 1;
    } else {
        std::cout << "Listening..." << std::endl;
    }
    return app.exec();
}