Posts

Showing posts from 2019

Azure Sql Firewall Configuration

Image
In this post I will show you how to configure firewall settings for Azure SQL server in order to connect from your local development machine or from some remote machine where your application is hosted. More or less, the process is same. What is firewall, in azure's case IP firewall Technically speaking, firewall is a software program which prevents unauthorized access to your system. We can think of firewall as a bouncer waiting outside of the midnight party club. The bouncer only allows the spectators to pass through the club's door whoever has the pass/invitation to join the party.  Pretty cool, huh. As network traffic passes through the firewall, the firewall decides which traffic to forward and which traffic not to forward, based on rules that we have defined. In azure SQL we have to add some firewall rules for allowing trusted users to pass through the wall of winterfell. In azure world , the users who can have access to SQL server are called clients. By allowi...

Google play console configuration for IAP, Part 1

Image
No doubt, configuring In-app purchase inside google play console is a long, tiresome process. This is particularly true if you are just starting out or new to this In-app purchase world. I will try my best to explain the steps needed for the configuration of in app purchase. From now on we will call this IAP as this saves some typing for me, hope you guys don't mind on that. However,  covering the full procedure in a single post is not going to be suitable for readers. That's why I am breaking the full procedure in a series of posts and this article is the first one of them. To successfully test & publish app with in app purchase, we need to do following Download and integrate in app billing library inside the code of your android app Upload that app to play console Configure for in app purchase inside play console Setup sandbox/test environment in order to test the app with IAP What I am not going to discuss or write about How to code or integrate in app ...