Azure SQL Server Database - azure

We use SQL Sever as a Service in Azure cloud. Created WEB API and hosted on Azure Cloud under WEB APP. we are able to read from the DB using our WEB API, but unable to Write into DB using WEB API. any clue ? thanks

Related

How to connect Azure Cloud from local computer

I am new to azure, I am doing a mobile application project and I want to connect azure cloud from my local computer. I have created an API and I want to sync data to azure from a local computer. I used visual studio to write the API and I have put the API into the IIS server. It works in the IIS server, I was trying to sync data to Azure cloud. I used ios xcode to write the mobile application I don't know which services should i use in Azure to make it works, it can collect and send data to mobile too.
The service can let me use my own API to sync data to Azure Cloud, it also is able to send and collect data between mobile and Azure Cloud.

Access on-premises file share from Azure App Service

I have an Azure App Service which already connects to a on-premises SQL Server database (VNet Integration is configured). I also need to access an on-premises fileshare, which is currently not working (access denied). How can this be achieved?
I already tried to use the SimpleImpersonation package (https://www.nuget.org/packages/SimpleImpersonation/), but this was not working. I'm not sure if this was package to work from an Azure App Service.
Thanks in advance.

How to migrate a web server and app server to azure?

If I have a 3-tier application on-premises and the three tiers are as follows: Web Server, App server, and DB server. Can I migrate the web and app server to Azure app services? or will I've to deploy the app server on another Azure service?
For an easy migration you could use an Azure Web App to host the sites you currently run with your on-premise Web Server.
Assuming your App Server should expose an API and is written in either .NET, PHP, Node.js, Java, or Python - you can deploy it using an Azure API App.
If you talking about SQL Server, use Azure SQL Database (Read SQL Server database migration to Azure SQL Database for potential limitations.
You can also consider to containerize your application and deploy it to Azure Kubernetes Services (AKS)

MongoDB on Azure Web APP

I'm running nodejs application via Azure Web App. How do I set up MongoDB on Web App service?
You need to provision MongoDB yourself and have your Web App work against it.
Azure doesn't have a native MongoDB service but you can:
Use Azure's DocumentDB with the Mongo driver compatibility
Use the MongoDB VM image from the marketplace (this is IaaS).
Use mLab which is a 3rd party hosted solution but can be bought from Azure

Using windows azure connect

Is it possible for an asp.net mvc web api deployed on azure to connect to on premise db using windows authentication?
To achieve what you want, you have to:
Domain Join your WebRole
Programmatically set AppPool credentials to a user who has access to the local DB.

Resources