Book Image

CORS Essentials

By : Rajesh Gunasundaram
Book Image

CORS Essentials

By: Rajesh Gunasundaram

Overview of this book

This book explains how to use CORS, including specific implementations for platforms such as Drupal, WordPress, IIS Server, ASP.NET, JBoss, Windows Azure, and Salesforce, as well as how to use CORS in the Cloud on Amazon AWS, YouTube, Mulesoft, and others. It examines limitations, security risks, and alternatives to CORS. It explores the W3C Specification and major developer documentation sources about CORS. It attempts to predict what kinds of extension to the CORS specification, or completely new techniques, will come in the future to address the limitations of CORS Web developers will learn how to share code and assets across domains with CORS. They will learn a variety of techniques that are rather similar in their method and syntax. The book is organized by similar types of framework and application, so it can be used as a reference. Developers will learn about special cases, such as when a proxy is necessary. And they will learn about some alternative techniques that achieve similar goals, and when they may be preferable to using CORS
Table of Contents (15 chapters)
CORS Essentials
Credits
About the Authors
www.PacktPub.com
Customer Feedback
Preface
Index

Chapter 5. CORS in Windows

In this chapter, we are going to discuss how to implement CORS on the Windows platform. The Windows platform includes IIS and ASP.NET Web API applications, as well as the Windows Communication Foundation.

We will learn about:

  • How to set the Access-Control-Allow-Origin header globally in web.config for Windows IIS Server

  • How to install and use the Microsoft ASP.NET Web API Cross-Origin Support package, including:

    • Setting CORS policies with the EnableCorsAttribute class

    • Disabling CORS policies with the DisableCors attribute

    • Creating dynamic CORS policies with the Custom CORS Policy Attribute class

    • Creating dynamic CORS policies driven by logic with the custom CORS policy provider factory

  • How to use CORS in Windows Communication Foundation (WCF)

  • Note that Edge and Internet Explorer 10 fully support XmlHttpRequest withCredentials, IE 8 and 9 use XDomainRequest instead of XmlHttpRequest, and IE 7 and lesser versions do not support CORS at all