Skip to main content

Posts

Showing posts from January, 2014

HTTP 1.1.302 / 302 Found ( Mostly for .css / js / images doesn't load)

In  IIS MMC  > Select site / Virtual Directory  > Select Features View  >  Select 'Authentication'  > Select top row 'Anonymous Authentication' >  In the right panel Select 'Edit'  > In the pop up window Select 'Application Pool Identity'   From  IIS 7 - ApplPoolIdentity (It is the default in IIS 8) is introduced  for the higher level of Application pool isolation in place of NetworkService. As more and more windows applications started to use NetworkService, AppPoolIdentity provides tighter security to your application pool from other application pool processes. http://technet.microsoft.com/library/hh831496.aspx#Anonymous

Azure project files not opening / Unsupported This version of Visual Studio does not have

Error: azure project files not opening / Unsupported This version of Visual Studio does not have the following project types installed or does not support them. You can still open these projects in the version of Visual Studio in which they were originally created. Fix: Install Azure SDK (right version for your version of Visual Studio). Two  ways to install: 1. Download link: http://www.windowsazure.com/en-us/downloads/ 2. Visual Studio - Create NEW PROJECT ( ?!) - C# templates - Select ' Cloud ' - this shows 'Get Widnows Azure SDK' - Click 'OK' . This takes you to download page from embedded  browser!!!! (This is waste of time. Just do the first one.) Either way , you will have to Close all running Visual Stuido-s.

Entity Relation (E-R) Diagram and a Sequential Diagram Tips (Tools: SQL Management Stuido, Visual Stuido Architect)

E-R Diagram :  Library Check In Check Out  E-R Diagram notations in SQL Management Studio or Visual Studio Architect :  Understanding following table relationships in a database schema diagram created from either SQL Management Studio or Visual Studio Architect:           Unlike other tools like Visio or Erwin, Microsoft uses 'Yellow Key' icon and a '8' or 'oo' icon that are shown at the both ends of a relationship lines connecting two tables . one to one (1:1)                    : 'Yellow Key icon' in both ends. one to many (1 : 0...*)          :  'Yellow Key icon' in one end and '8 icon' in other end many to many (0...* : 0...*)  : 'Yellow Key icon' in both ends. Below is an example E-R diagram created for an use ...