I need to make a service available for other systems to consume.
These systems can make requests POST (string, array, xml and json) and GET .
Well, I know I can consume services from other systems using GET in a trivial way, just by accessing a URL , and for POST requests, I can pass the data to the system that provides the service through CURL .
Well, now who needs to make the service available is me, and I'm not sure how best to do it.
I knew the methodologies / specifications of webservices Rest , which would be interesting for me, but I need a faster solution.
I have no affinity with WebServices , and all the material I found on the internet mentioned frameworks like: NodeJS , Ruby On Rails and Django .
I can not implement NodeJS just for this purpose.
In GitHub I even found a class, but I could not quite understand its purpose.
I would like to find a solution to this integration.





