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
|
/****************************************************************************
**
** This file is part of the KD Soap project.
**
** SPDX-FileCopyrightText: 2011 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
**
** SPDX-License-Identifier: MIT
**
****************************************************************************/
#include <QCoreApplication>
#include "KDSoapServer.h"
#include "helloworld_serverobject.h"
#include <iostream>
class Server : public KDSoapServer
{
Q_OBJECT
public:
using KDSoapServer::KDSoapServer;
QObject *createServerObject() override
{
return new HelloWorldServerObject;
}
};
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();
}
#include "main.moc"
|