Search results

  1. G

    LSIAPI web app?

    Yeah, but that depends on how complex the web app is. Or maybe I am too naive. :unsure: Ah I wasn't aware of the context way. That's a very valuable pointer! (y)(y) Now only I understood testparam.c and can make hellohandler.c to work. Looks like you guys already had my use case figured out...
  2. G

    LSIAPI web app?

    @Michael, As you can see I am not planning to expose to more SAPIs, but rather to handle all HTTP requests from LSIAPI module. The module *.so file will be the complete web application. It generates HTTP response, and may talk to database. No PHP or Ruby or Python.
  3. G

    LSIAPI web app?

    @Kevin, `... implementing your own request handler based on the URL given.` Yes `So for example, example.com/index.bar would be handled by a ".bar" handler?` Nope. The url handler does not depend on suffix. Suppose urls are RESTful like, the handler would bind to the root / path, and does its...
  4. G

    LSIAPI web app?

    I am actually toying the idea of using C++ to build web applications. If we look at the server side languages, most choices with vibrant ecosystem are interpreted and dynamically typed, eg: PHP, ruby, nodejs, python. There are only few compiled and statically typed language for server side...
  5. G

    LSIAPI web app?

    First of all, thanks for developing OpenLiteSpeed. It is the best high performance + full featured C++ web server I find. Suppose I would like to use Openlitespeed LSIAPI to create something similar to https://github.com/julienschmidt/httprouter with C/C++ and then build web apps on that. Is...
Top