I have a WebService Server REST developed by the IDE Embarcadero Delphi XE7
, I need to get the return of the POST
from the client.
I created the WebService from the DataSnap REST Application, when creating the project it comes with the following Form
, ServerMethods
and WebModule
classes. I have a specific function for when the client accesses it via Http with the POST
method, it should get the user and password sent by the client via Body
with type of content-type=application/x-www-form-urlencoded
, the client does not use authentication.
But my problem is how I can get this information when the client sends this information.