Unknown provider: $modalProvider <- $modal
The obvious answer for the unknown provider error is either
the missing dependency when declaring a module as in the case of adding
ui-bootstrap or just the incorrect name. After we make sure that the provider
name and dependency is included, we may still get the error. We start to think
that we had done this exactly the same way...
1/9/16
Visual Studio 2015 Apache Cordova Android Build Hangs up

When using Visual Studio 2015 to build an Android Apache Cordova
mobile app, the build process does not stop after several minutes and there
are no messages on the output window.
This is a sign that the Android SDK Build tools and or other
dependencies may not be available...
12/27/15
API OAuth Token Access-Control-Allow-Credentials header is empty
When implementing an Azure API App using MVC Web API with OAuth Bearer Token Authorization, we came across this error:
Response to preflight request doesn't pass access control check: Credentials flag is 'true', but the 'Access-Control-Allow-Credentials' header is ''. It must be 'true' to allow credentials. Origin 'http://domain.com' is therefore not allowed access.
This...
12/13/15
404 Error axd HTTP Handler
This error is common when a previously working web app has been migrated to another server or a cloud hosted environment, and it is now showing the HTTP 404 (Not Found) error. To figure out the root cause and solution, let’s take a look at how the web app was configured initially. We will then take a look at the solution.
HTTP Handlers Configuration
When we look at the web.config settings...
12/12/15
Publish MVC Web App on Azure Virtual Directory

Azure Web Apps are deployed as a new website on the Azure cloud. For those who have control of the server, this is similar to adding a new website on an IIS server. What if we need to deploy another web app on Azure, but we do not want to create a new web site? Well the answer is to create a...