QttpServer
QttpServer copied to clipboard
Build your API with C++ - Powered by Qt and Node's libuv
can u provide latest version of QttpServer code .
I didnt see any info about ssl certifcate integration. Doesn't qttpserver support https?
the global.json has a bindIp attribute ... is it possible to state a domain name name like myserver.com/api ? thanks !
When I compile QttpServer on windows 10 using QtCreator (with MSVC2015_64bit) I get this compile error: `QttpServer\lib\http\src\stream.cc:90: error: C2397: conversion from 'std::size_t' to 'ULONG' requires a narrowing conversion`
is it possible to enable hooks for this server. or using it limits you to polling once you were served with a request for a long operation ? thank a...
Added new functions to HttpRoute and HttpServer. HttpServer now supports the ability to pass in generic parameters into any classes extending the Action class. HttpRoute now has a constructor that...
Sometimes the server can run into a race condition while processing events, which leads to a memory access violation and causes the program to crash. The main thread receives events...
I've successfully built QttpServer, however if I try to build my application I get linking errors: ``` /usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: cannot find -lnode_native /usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: cannot find -luv /usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: cannot find -lhttp_parser collect2:...
Hello! I see that the examples handle the request synchronously (in onGet for instance). What about async responses? Can I somehow send the response once some processing is completed without...
I have built the example projects and when using Postman to test the end-points it fails for every other request. After digging down it seems that connections are not being...