Jun 27 2020 04:44 AM
Hello,
My first time here so be nice ; )
When i deploy WebApps i use a Hybrid Connection to access onprem databases.
But now i need to install a Windows Service on a virtual machine, and still want to connect to my local databas server. Having trouble figuring out the best way, i would prefere not to setup a private VPN between Azure and my local network (Going to deploy a couples of customers).
- Hybrid Connection, not working only for WebApp?
- On-premises data gateway, not for Virtual machines?
- VPN (Feels like overkill)
What do you recommend?
Or can i run a Windows service as App for something in Azure? Please point my in the right direction 😉
Jun 27 2020 09:10 PM
Jun 27 2020 09:21 PM
Jun 27 2020 09:57 PM
Jun 28 2020 12:25 AM
Thank you,
Should be nice if everything can be done from the OnPrem server (dont want to involve opening port eg in the firewall). Are there any reason that Hybrid Connection can't be used?
Never tried a Express Route have to google VPN vs Express Route.
Can't move the data because of local country laws (It's fine to view but not store in my case).
My service are used to fetch data from some third part API, not sure if you can do that with some "suitable PaaS services".
Jun 28 2020 08:43 AM - edited Jun 28 2020 08:45 AM
Previously you said your service fetch data from the local database and now you are saying the service is used to fetch data from some third part API. 😉
If the first one is true, you can simply try using Azure "Function App" to connect to your local sql db via hybrid connection.
If the latter is true, you can try using "Logic App", you should be able to connect to any API by configuring a custom connector. You can also connect logic app to your local sql server via an onprem data gateway as well.
So, I would explore Function App and Logic App and see which one suits the best to meet the requirement.
Hope this helps, please let me know if you have any further query.
Thanks,
Rohan
Jun 28 2020 09:20 AM - edited Jun 28 2020 09:21 AM
Thank you, i did not provid you with all information the flow is the following:
1. Fetch data from external API.
2. Import it into the local database (and process it)
3. Then display the processed data on the web again.
Going to look into Function App, and Logic App 😉