![]() |
zeep::http::server — The most often used server class, contains its own io_context.
// In header: <zeep/http/server.hpp> class server : public zeep::http::basic_server { public: // construct/copy/destruct server(); server(const std::string &); server(security_context *); server(security_context *, const std::string &); // public member functions virtual boost::asio::io_context & get_io_context(); virtual void stop(); };
server
public
construct/copy/destructserver();Simple server, no security, no template processor.
server(const std::string & docroot);Simple server, no security, create default template processor with docroot.
server(security_context * s_ctxt);server with a security context for limited access
server(security_context * s_ctxt, const std::string & docroot);server with a security context for limited access, create default template processor with docroot