Delphi serverside framework for managing sessions and respond with JSON to ajax requests?

后端 未结 6 1658
梦谈多话
梦谈多话 2020-12-28 09:33

Without reinventing the wheel, what I can use to manage user sessions in a web application and being able to respond with JSON to ajax requests?

Is there some framew

6条回答
  •  青春惊慌失措
    2020-12-28 09:49

    Daraja HTTP Framework, which uses Indy internally and adds a high level API for "web application contexts" and request mappings, loosely inspired by the Servlet API.

    If you already have experience with TIdHTTPServer, you can directly access and adjust the server component according to your needs.

    For JSON, you may use the built-in JSON support in newer Delphi versions or a third-party library (e.g. JsonDataObjects).

    Disclaimer: I am the developer of the framework

提交回复
热议问题