Mercurial > hg > orthanc
view Resources/Samples/OrthancFramework/MicroService/Sample.cpp @ 3570:f05887b1d1bf Tomas-Zubiri/replaced-broken-url-with-url-from-waybac-1573762425576
Replaced broken url with url from wayback archive
author | Tomas Zubiri <me@tomaszubiri.com> |
---|---|
date | Thu, 14 Nov 2019 20:13:59 +0000 |
parents | f235cc740c4b |
children |
line wrap: on
line source
#include <stdio.h> #include <HttpServer/MongooseServer.h> #include <Logging.h> #include <RestApi/RestApi.h> #include <SystemToolbox.h> class MicroService : public Orthanc::RestApi { private: static MicroService& GetSelf(Orthanc::RestApiCall& call) { return dynamic_cast<MicroService&>(call.GetContext()); } void SayHello() { printf("Hello\n"); } static void Hello(Orthanc::RestApiGetCall& call) { GetSelf(call).SayHello(); Json::Value value = Json::arrayValue; value.append("World"); call.GetOutput().AnswerJson(value); } public: MicroService() { Register("/hello", Hello); } }; int main() { Orthanc::Logging::Initialize(); Orthanc::Logging::EnableTraceLevel(true); MicroService rest; { Orthanc::MongooseServer httpServer; httpServer.SetPortNumber(8000); httpServer.Register(rest); httpServer.SetRemoteAccessAllowed(true); httpServer.Start(); LOG(WARNING) << "Micro-service started on port " << httpServer.GetPortNumber(); Orthanc::SystemToolbox::ServerBarrier(); } LOG(WARNING) << "Micro-service stopped"; Orthanc::Logging::Finalize(); return 0; }