I have a project where I need to build a hybrid application using a Delphi back-end. But before embarking on the project I need to get some doubts, because I have never worked with Delphi.
Normally in a hybrid application we communicate with the backend via Ajax, where we send get or post parameters to a URL from the back end and get the return that is usually a JSON. This is the default behavior when we talk about a back-end in PHP or Java.
But what about Delphi? Is the way to develop the application changed? Or does it change anything? Do we usually make Ajax requests by sending get or post data and collecting results in JSON?
I know that depends on the system in Delphi, but regardless of that, a backend in Delphi could work as one in PHP or Java, commenting Ajax requests with post and get and return a JSON?