From 19fcec84d8d7d21e796c7624e521b60d28ee21ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:45:59 +0200 Subject: Adding upstream version 16.2.11+ds. Signed-off-by: Daniel Baumann --- .../thrift/lib/nodejs/examples/httpServer.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/jaegertracing/thrift/lib/nodejs/examples/httpServer.py (limited to 'src/jaegertracing/thrift/lib/nodejs/examples/httpServer.py') diff --git a/src/jaegertracing/thrift/lib/nodejs/examples/httpServer.py b/src/jaegertracing/thrift/lib/nodejs/examples/httpServer.py new file mode 100644 index 000000000..76e9f4aa3 --- /dev/null +++ b/src/jaegertracing/thrift/lib/nodejs/examples/httpServer.py @@ -0,0 +1,20 @@ +import sys +sys.path.append('gen-py') + +from hello import HelloSvc +from thrift.protocol import TJSONProtocol +from thrift.server import THttpServer + + +class HelloSvcHandler: + def hello_func(self): + print("Hello Called") + return "hello from Python" + + +processor = HelloSvc.Processor(HelloSvcHandler()) +protoFactory = TJSONProtocol.TJSONProtocolFactory() +port = 9090 +server = THttpServer.THttpServer(processor, ("localhost", port), protoFactory) +print "Python server running on port " + str(port) +server.serve() -- cgit v1.2.3