Posts

Showing posts from September, 2018

RESTful APIs Best Practices

Image
REST Security Cheat Sheet https://www.owasp.org/index.php/REST_Security_Cheat_Sheet

API - Framework Level Exception Handling

Image
The Exception handing at the framework level in API has been implemented in all the three API’s . please don’t use any try-catch block inside the API methods until it’s needed specifically.  When Global hander has been introduced to handle the exceptions. The framework will automatically handle the exceptions.

Agile Development with Automated Deployments

For most of the projects, we follow Agile Process and we may need to do frequent deployments to the SIT Environments to move things faster. In our project also we had the same requirement and we found that manual deployments using FTP takes more time (around 45 mins to 60 mins) so we have planned to do automated deployments to move things faster. Automated deployments take around 3 minutes. Here we are showcasing the effort saved after we have automated our deployment process. Manual Deployments: -           Switch to the deploy branch -           Publish the code and zip it -           Use FTP to transfer the files to the server -           Backup database -           Backup last deploy package -       ...