What is server-side validation?
Server-side validation means that the web service residing on the web server hosting the web service validates the data input from a user before taking any action on it (e.g. inserting it into a database). This is in contrast to client-side validation, which is typically implemented using Javascript to validate the data with the user’s browser before submitting it to the web service.