Reputation: 61
Can Publicly accessible Azure Mobile Services, hosted via PaaS, access a private internal network if there was an existing Express Route setup?
So basically, a user with a Smart Phone calls an Azure Hosted PaaS Mobile Service, the mobile services then communicates, through the Express Route, with objects (like a database or other services) hosted in the private network and then respond to the caller with some of that data.
Is this currently possible using PaaS and an Express Route?
Upvotes: 3
Views: 1470
Reputation: 8107
For my understanding, Mobile Services - its your "frontend", On Prem - your backend.
If you need to access DB from your code in Mobile Services, you should provide its location (ip, port,...).
How your application will go out to this location, is configured in "network" configuration of your package.
So,
Upvotes: 0
Reputation: 61
The answer is yes and it is the Application Service Environment which comes with your own vnet.
Upvotes: 1
Reputation: 1153
No this functionality isn't and most likely will not be available for Mobile Services... but not all hope is lost. Azure App Services will provide similar functionality to mobile services and can be "bound" to a vnet... which will enable it to access local resources using express route.
Per the docs, App services can provide...
Connectivity to your on-premise resources and VPNs using VNet in addition to Hybrid Connections
Upvotes: 0