Azure PaaS Compatibility Check - asp.net

I have a client willing to move to Azure PaaS with their ASP.NET web service layer. We are likely to move as Azure Web App with some jobs as Web Jobs. Is there any tool that I can run to check whether the code is compatible with PaaS Web App?
I heard a tool called xRay but not able to find it out. Would love to get your suggestions on this?
What about SQL Server On Prem to Azure SQL - is there any similar tool to check compatibility?

Azure App Service Migration Assistant
The Azure App Service Migration site and the tool can be utilized to migrate sites from Windows and Linux web servers to Azure App Service. As part of the migration the tool will create Web Apps and databases on Azure if needs be, publish content and publish your database.
SQL Database Migration Wizard
The SQL Database Migration Wizard can be used to migrate an on-premises SQL Server database to the latest Azure SQL Database Update (V12).
References:
Azure App Service Migration Assistant
Azure App Service Migration Assistant Compatibility Analysis
Migrate an enterprise web app to Azure App Service
SQL Database Migration Wizard
Fix SQL Server database compatibility issues using SQL Azure Migration Wizard before migration to Azure SQL Database

Related

Hosting ASP.NET application with SQL Server DB

I have a web site developed in ASP.NET MVC and used MS SQL Server as a back-end database.
I was trying to host this application on webFaction, but unable do do so as it seems WebFaction does not support hosting of ASP.NET applications.
Can I host ASP.NET application with SQL Server as DB on WebFaction?
The official answer is here: https://community.webfaction.com/questions/17081/asp-as-application/17099
WebFaction only offers Linux server hosting.
If you want to use ASP.Net, you'll have to use Mono. They don't provide an installer for it, so you'll need to build the Mono stack from scratch.
Per MS SQL server, it doesn't (currently) run on Linux. So you will either need to connect your Webfaction ASP app to another hosting service for the database, switch to a new database, or wait for MS to release their linux version of MS SQL.

deploying VISUAL STUDIO 2010 web application to azure cloud services

I have a Web application in Visual Studio 2010 in 4.0 Framework.I want to deploy this app to azure cloud services.The application contains a local sql database as well as session variables.Can anyone please guide me on the steps to follow regarding the same.Do I have to create another database or the local database will do?
You can use a local database for an Azure web application.
However, as mentioned in this article, if you want to reduce the impact that latency will have on your application, you should use an Azure SQL Database.
If you need to migrate your local database to an Azure SQL Database you can look at some of Azure SQL's migration options.
Hope this helps!

import User Profile SQL Database to Windows Azure

Im a beginner that is thrying to setup my first website in Windows Azure. I have published it and made a Sql database inside Windows Azure.
In my local virtual machine I have SQL management studio that contain a User profile database. Is there a way to export that one and import to Azure?
You can deploy it directly from SSMS. Right click a database in the Object Explorer pane select Tasks - > Deploy database to Windows Azure SQL Database command:
In the Deployment Settings click the Connect button, and connect to your Azure Server:
Click Next:
Review summary, and click Finish:
After successful deployment connect to your Azure Server in SSMS and you'll see your database:
EDIT:
If you encountered an error during the deployment check the list of limitations in Azure SQL Database:
Azure SQL Database General Guidelines and Limitations
Azure SQL Database Security Guidelines and Limitations
SQL Server Feature Limitations (Azure SQL Database)
Also, here is a blog post on how to use SQL Server Data tools to migrate a database to SQL Azure: Migrating a Database to SQL Azure using SSDT
Hope this helps

Azure best plan choice for ASP.NET MVC, wcf service and SQL Server database?

I want to create Front End: ASP.NET MVC, Web Service: WCF and Back End: SQL Sever 2012.
SQL Server Database size required 50GB now.
Should i publish asp.net site and wcf serivce on Azure Web Site or Azure Cloud Service?
For Azure Virtual Machine how it will charged they charged wcf hosting on VM also?
They charged install SQL Sever 2012 on VM and configure database on VM?
If there is no requirement for complex multi-tier app, asp.net site & wcf service can be hosted in azure web sites. Here is a brief sample : http://genuinebasil.com/blog/wcf-service-over-azure-web-site/

Deploying .NET application in azure

I have this .NET web forms application which uses SQl server database, It runs fine on local server but as soon as I add windows azure deployment project to it, it is not able to access the database. what should I do ?
To answer your broad question with a broad answer: have you tried to troubleshoot using the Guidelines for Connecting to SQL Azure Database (http://msdn.microsoft.com/en-us/library/windowsazure/ee336282.aspx)?

Resources