ultimatepp/reference/XmlRpcServer/XmlRpcServer.cpp
cxl 97fc2a95ff .reference
git-svn-id: svn://ultimatepp.org/upp/trunk@8947 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2015-09-18 06:31:43 +00:00

44 lines
753 B
C++

#include <Core/Core.h>
// Note: Core.h needs to be included before Rpc.h because of Win32 rpc.h name clash problem
#include <Core/Rpc/Rpc.h>
using namespace Upp;
RPC_METHOD(compute)
{
double a, b;
String op;
rpc >> a >> op >> b;
Cout() << "Request: " << a << op << b << '\n';
if(op.GetCount() == 1)
switch(*op) {
case '+':
rpc << a + b;
return;
case '-':
rpc << a - b;
return;
case '/':
if(b == 0)
rpc << ErrorValue("division by zero");
else
rpc << a / b;
return;
case '*':
rpc << a * b;
return;
}
rpc << ErrorValue("unknown operator");
}
RPC_METHOD(ping)
{
rpc << GetSysTime();
}
CONSOLE_APP_MAIN
{
Cout() << "Server..\n";
LogRpcRequests();
RpcServerLoop(1234);
}