0
I have a project where I need to build a hybrid application using a back-end in Delphi. But before embarking on the project I need to ask some questions, because I never worked with Delphi.
Normally in a hybrid application we communicate with the back-end via Ajax, where we send get or post parameters to a back-end URL and take the return that is usually a JSON. This is the default behavior when we talk in a back-end in PHP or Java.
But what about Delphi? Is the way to develop the application changed? Or does it not change anything? We normally make requests by Ajax sending get or post data and collecting JSON results?
I know this depends on the system in Delphi, but regardless, a back-end in Delphi could work as one in PHP or Java, commenting on Ajax requests with post and get and return a JSON?
If the server can respond to POST and GET return JSON no matter the language, it can be ASP, Java, PHP, Nodejs, whatever, could return to an XML.
– Neuber Oliveira