I need to create a web service that a PHP client can call. The service needs to accept 1 or many integers, provide security, and does not need to return any data (though other similar services may need to). This particular service will is intended to trigger a data extract that will be picked up later.
My manager believes that creating RESTful services is the best route to pursue, but I have no experience with those.
What is the recommended approach to take here?
If REST is the correct approach, are there any good examples, books, walk through, or tutorials available that are not videos?
One last note, what I use now will set a precedent for migrating our products backend logic from PHP to .net.