Other Study Guides
Tobias Nilsson's Study Guide (Alert Coding)
Chris Myers' Study Guide (Blogged by Chris)
PluralSight Learning Path
Microsoft Exam 70-487
Showing posts with label 70-487. Show all posts
Showing posts with label 70-487. Show all posts
Friday, January 26, 2018
Thursday, January 25, 2018
Microsoft 70-487: Secure a Web API
Exam Objectives
Implement HTTPBasic authentication over SSL; implement Windows Auth; prevent cross-site request forgery (XSRF); design, implement, and extend authorization and authentication filters to control access to the application; implement Cross Origin Request Sharing (CORS); implement SSO by using OAuth 2.0; configure multiple authentication modes on a single endpointQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 4.3
[Book] Pro ASP.NET Web API Security
[MSDN] Security, Authentication, and Authorization in ASP.NET Web API
- Basic Authentication in ASP.NET Web API
- Integrated Windows Authentication
- Preventing Cross-Site Request Forgery Attacks in ASP.NET Web API
- Authentication Filters in ASP.NET Web API 2
- Enabling Cross-Origin Requests in ASP.NET Web API 2
- External Authentication Services with ASP.NET Web API (OAuth)
[Video] Dominick Baier - Securing ASP.NET Web APIs
- Sample Code, Slide Deck
[DotNetCurry] Preventing CSRF Hacks in ASP.NET WebAPI
[Blog] A WebAPI Basic Authentication Authorization Filter
[Book] Pro ASP.NET Web API Security
[MSDN] Security, Authentication, and Authorization in ASP.NET Web API
- Basic Authentication in ASP.NET Web API
- Integrated Windows Authentication
- Preventing Cross-Site Request Forgery Attacks in ASP.NET Web API
- Authentication Filters in ASP.NET Web API 2
- Enabling Cross-Origin Requests in ASP.NET Web API 2
- External Authentication Services with ASP.NET Web API (OAuth)
[Video] Dominick Baier - Securing ASP.NET Web APIs
- Sample Code, Slide Deck
[DotNetCurry] Preventing CSRF Hacks in ASP.NET WebAPI
[Blog] A WebAPI Basic Authentication Authorization Filter
[PluralSight] Implementing an API in ASP.NET Web API (Securing APIs)
[PluralSight] Web API v2 Security
Previous posts on ASP.NET security:
Implement a secure site with ASP.NET
Secure a WCF service
Design and implement claims-based authentication
[PluralSight] Web API v2 Security
Previous posts on ASP.NET security:
Implement a secure site with ASP.NET
Secure a WCF service
Design and implement claims-based authentication
Tuesday, January 23, 2018
Microsoft 70-487: Host and manage Web API
Exam Objectives
Host Web API in an ASP.NET app; self-host a Web API in your own process (a Windows service) including Open Web Interface for .NET (OWIN); host services in an Azure worker role; restrict message size; configure the host server for streamingQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 4.4
[MSDN] ASP.NET Web API: Deployment and Hosting
- Use OWIN to Self-Host ASP.NET Web API 2
- Host ASP.NET Web API 2 in an Azure Worker Role
[MSDN] ASP.NET Web API: Deployment and Hosting
- Use OWIN to Self-Host ASP.NET Web API 2
- Host ASP.NET Web API 2 in an Azure Worker Role
[Blog] Dealing with large files in ASP.NET Web API
[Blog] Video streaming inside self-host app with Owin/Katana
[Stack Overflow] How do I configure max message size in Web API
[Blog] Video streaming inside self-host app with Owin/Katana
[Stack Overflow] How do I configure max message size in Web API
Monday, January 22, 2018
Microsoft 70-487: Consume Web API web services
Exam Objectives
Consume Web API services by using HttpClient synchronously and asynchronously; send and receive requests in different formats (JSON/HTML/etc.); request batchingQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 4.5
[MSDN] Calling a Web API From a .NET Client (C#)
[Code-Maze] A few great ways to consume RESTful API in C#
[MSDN] Calling a Web API From a .NET Client (C#)
[Code-Maze] A few great ways to consume RESTful API in C#
[Blog] ASP.NET Web API Request Batching
[Blog] You're using HttpClient wrong and it is destabilizing your software
[StackOverflow] How do you set the Content-Type header for an HttpClient request?
[MSDN] Introducing batch support in Web API and Web API OData
[Blog] You're using HttpClient wrong and it is destabilizing your software
[StackOverflow] How do you set the Content-Type header for an HttpClient request?
[MSDN] Introducing batch support in Web API and Web API OData
Sunday, January 21, 2018
Microsoft 70-487: Implement a Web API
Exam Objectives
Accept data in JSON format (in JavaScript, in an AJAX callback); use content negotiation to deliver different data formats to clients; define actions and parameters to handle data binding; use HttpMessageHandler to process client requests and server responses; implement dependency injection, along with the dependency resolver, to create more flexible applications; implement action filters and exception filters to manage controller execution; implement asynchronous and synchronous actions; implement streaming actions; implement SignalR; test Web API web servicesQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 4.2
[Book] Designing Evolvable Web API's with ASP.NET - Chapter 13 (Model binding)
[MSDN] Web API Documentation:
- JSON and XML Serialization in ASP.NET Web API
- Content Negotiation in ASP.NET Web API
- Parameter Binding in ASP.NET Web API
- HTTP Message Handlers in ASP.NET Web API
- Dependency Injection in ASP.NET Web API 2
- Exception Handling in ASP.NET Web API
- Testing and Debugging ASP.NET Web API
[MSDN] ASP.NET Web API 2: Http Message Lifecycle poster
[Blog] Web API 2 using ActionFilterAttribute ...
[Blog] ASP.NET MVC and Web API - Comparison of Async / Sync Actions
[CodeProject] Web API Thoughts 1 of 3 - Data Streaming
[CSharpCorner] Asynchronous Video Live Streaming with ASP.NET Web APIs 2.0
[Blog] Testing routes in ASP.NET Web API
[Book] Designing Evolvable Web API's with ASP.NET - Chapter 13 (Model binding)
[MSDN] Web API Documentation:
- JSON and XML Serialization in ASP.NET Web API
- Content Negotiation in ASP.NET Web API
- Parameter Binding in ASP.NET Web API
- HTTP Message Handlers in ASP.NET Web API
- Dependency Injection in ASP.NET Web API 2
- Exception Handling in ASP.NET Web API
- Testing and Debugging ASP.NET Web API
[MSDN] ASP.NET Web API 2: Http Message Lifecycle poster
[Blog] Web API 2 using ActionFilterAttribute ...
[Blog] ASP.NET MVC and Web API - Comparison of Async / Sync Actions
[CodeProject] Web API Thoughts 1 of 3 - Data Streaming
[CSharpCorner] Asynchronous Video Live Streaming with ASP.NET Web APIs 2.0
[Blog] Testing routes in ASP.NET Web API
Tuesday, November 7, 2017
Microsoft 70-487: Design a Web API
Exam Objectives
Define HTTP resources with HTTP actions; plan appropriate URI space, and map URI space using routing; choose appropriate HTTP method (get, put, post, delete) to meet requirements; choose appropriate format (Web API formats) for responses to meet requirements; plan when to make HTTP actions asynchronous; design and implement routesQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 4.1
[Blog] Using HTTP Methods (GET, POST, PUT, etc.) in Web API
[Apigee] Web API Design: Crafting Interfaces that Developers Love
[HackerNoon] RESTful API Designing guidelines — The best practices
[MSDN] Web API Routing
[Blog] Using HTTP Methods (GET, POST, PUT, etc.) in Web API
[Apigee] Web API Design: Crafting Interfaces that Developers Love
[HackerNoon] RESTful API Designing guidelines — The best practices
[MSDN] Web API Routing
[MSDN] Media Formatters in ASP.NET Web API 2
[MSDN] REST URI Support in Web API - Converting UriTemplates to Routes
[PluralSight] Implementing an API in ASP.NET Web API
[Blog] ASP.NET MVC and Web API - Comparison of Async / Sync Actions
[MSDN] REST URI Support in Web API - Converting UriTemplates to Routes
[PluralSight] Implementing an API in ASP.NET Web API
[Blog] ASP.NET MVC and Web API - Comparison of Async / Sync Actions
Tuesday, October 31, 2017
Microsoft 70-487: Choose a deployment strategy for an Azure web application
Exam Objectives
Perform an in-place upgrade and VIP swap; configure an upgrade domain; create and configure input and internal endpoints; specify operating system configuration; deploy applications using Azure Web SiteQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 5.2
[MSDN] How to update a cloud service
[MSDN] How to manage cloud services
[Blog] What is Windows Azure Fault Domain and Upgrade Domain?
[MSDN] Set up staging environments in Azure App Service
[PluralSight] Windows Azure Web Sites
[GitHub] Publish to Azure using Web Deploy
[MSDN] How to update a cloud service
[MSDN] How to manage cloud services
[Blog] What is Windows Azure Fault Domain and Upgrade Domain?
[MSDN] Set up staging environments in Azure App Service
[PluralSight] Windows Azure Web Sites
[GitHub] Publish to Azure using Web Deploy
[GitHub] Setting up a VSTS account so it can deploy to a Web App
[MSDN] Azure Exam Prep – Fault Domains and Update Domains
[MSDN] Enable communication for role instances in azure
[MSDN] Azure Guest OS releases and SDK compatibility matrix
[MSDN] Deploy your app to Azure App Service using FTP/S
[MSDN] Azure Exam Prep – Fault Domains and Update Domains
[MSDN] Enable communication for role instances in azure
[MSDN] Azure Guest OS releases and SDK compatibility matrix
[MSDN] Deploy your app to Azure App Service using FTP/S
Monday, October 23, 2017
Microsoft 70-487: Create, configure, and publish a web package
Exam Objectives
Quick Overview of Training Materials
Exam Ref 70-487 - Chapter 5.5
[MSDN] Web Packaging: Creating web packages using MSBuild
[MSDN] Building and Packaging Web Application Projects (pre-VS2013)
[MSDN] Web Deployment Overview for Visual Studio and ASP.NET
[MSDN] How to: Edit Deployment Settings in Publish Profile
[Blog] How to build and deploy a web deployment package using MSBuild
[MSDN] Web Deployment Operation
[MSDN] Web Deployment runCommand Provider
[MSDN] Excluding Files and Folders from Deployment
[MSDN] Web Packaging: Creating web packages using MSBuild
[MSDN] Building and Packaging Web Application Projects (pre-VS2013)
[MSDN] Web Deployment Overview for Visual Studio and ASP.NET
[MSDN] How to: Edit Deployment Settings in Publish Profile
[Blog] How to build and deploy a web deployment package using MSBuild
[MSDN] Web Deployment Operation
[MSDN] Web Deployment runCommand Provider
[MSDN] Excluding Files and Folders from Deployment
Friday, October 20, 2017
Microsoft 70-487: Configure a web application for deployment
Exam Objectives
Switch from production/release mode to debug mode; use SetParameters to set up an IIS app pool; set permissions and passwords; enable and monitor ASP.NET App Suspend; configure WCF endpoints (including HTTPS protocol mapping), bindings, and behaviors; transform web.config by using XSLT (for example, across development, test, and production/release environments); configure Azure configuration settingsQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 5.3
[MSDN] How to: Set Debug and Release Configurations
[MSDN] Understanding Build Configurations
[MSDN] Configuring Parameters for Web Package Deployment
[MSDN] Web Deploy Parameterization
[TechNet] Using declareParam and setParam
[Blog] MSDeploy with Declare and Set parameter files
[MSDN] Configuring Permissions for Team Build Deployment
[MSDN] Basic Security Practices for Web Applications
[MSDN] Best practices for deploying passwords
[Blog] Davidson Sousa - Setting folder permissions using Web Deploy
[Blog] Sayed Hashimi - Setting Folder Permissions on Web Publish
[Blog] Kevin Leetham - Modifying directory permissions with Web Deployment
[MSDN] Enable and monitor ASP.NET App Suspend on Windows Server 2012 R2
[MSDN] ASP.NET App Suspend – responsive shared .NET web hosting
[MSDN] How to: Transform Web.config When Deploying a Web Application Project
[MSDN] Web.config Transformation Syntax for Web Project Deployment
[GitHub] Xdt transform samples
[MSDN] Configure web apps in Azure App Service
[MSDN] Configure Azure cloud service roles with Visual Studio
[MSDN] How to: Set Debug and Release Configurations
[MSDN] Understanding Build Configurations
[MSDN] Configuring Parameters for Web Package Deployment
[MSDN] Web Deploy Parameterization
[TechNet] Using declareParam and setParam
[Blog] MSDeploy with Declare and Set parameter files
[MSDN] Configuring Permissions for Team Build Deployment
[MSDN] Basic Security Practices for Web Applications
[MSDN] Best practices for deploying passwords
[Blog] Davidson Sousa - Setting folder permissions using Web Deploy
[Blog] Sayed Hashimi - Setting Folder Permissions on Web Publish
[Blog] Kevin Leetham - Modifying directory permissions with Web Deployment
[MSDN] Enable and monitor ASP.NET App Suspend on Windows Server 2012 R2
[MSDN] ASP.NET App Suspend – responsive shared .NET web hosting
[MSDN] How to: Transform Web.config When Deploying a Web Application Project
[MSDN] Web.config Transformation Syntax for Web Project Deployment
[GitHub] Xdt transform samples
[MSDN] Configure web apps in Azure App Service
[MSDN] Configure Azure cloud service roles with Visual Studio
Tuesday, October 10, 2017
Microsoft 70-487: Design a deployment strategy
Exam Objectives
Create an IIS install package; deploy to web farms; deploy a web application by using XCopy; automate a deployment from TFS or Build ServerQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 5.1
[MSDN] How to: Create a Web Deployment Package in Visual Studio
[MSDN] Using Web Deploy for Web Farms (2009)
[MSDN] Deploy an Application to a Web Farm
[MSDN] How to: Create a Web Deployment Package in Visual Studio
[MSDN] Using Web Deploy for Web Farms (2009)
[MSDN] Deploy an Application to a Web Farm
[MSDN] Introducing the Microsoft Web Farm Framework
[MSDN] Xcopy
[MSDN] Walkthrough: Deploying an ASP.NET Web Application Using XCOPY
[MSDN] How to: Create an Automated Build and Deployment Solution with TFS
[MSDN] Build and Deployment Automation Case Study
[Blog] Using Windows Azure VMs to Publish and Synchronize a Web Farm
[MSDN] Xcopy
[MSDN] Walkthrough: Deploying an ASP.NET Web Application Using XCOPY
[MSDN] How to: Create an Automated Build and Deployment Solution with TFS
[MSDN] Build and Deployment Automation Case Study
[Blog] Using Windows Azure VMs to Publish and Synchronize a Web Farm
Tuesday, October 3, 2017
Microsoft 70-487: Share assemblies between multiple applications and servers
Exam Objectives
Prepare the environment for use of assemblies across multiple servers (interning); sign assemblies by using a strong name; deploy assemblies to the global assembly cache; implement assembly versioning; create an assembly manifest; configure assembly binding redirects (for example, from MVC4 to MVC5)Quick Overview of Training Materials
Exam Ref 70-487 - Chapter 5.6
[MSDN] Programming with Assemblies:
- How to: Sign an Assembly with a Strong Name
- How to: Install an Assembly into the Global Assembly Cache
[MSDN] Assemblies in the CLR:
- Global Assembly Cache
- Assembly Versioning
- Assembly Manifest
- Strong-Named Assemblies
[MSDN] Configuring Assembly Binding Redirection
[MSDN] Redirecting Assembly Versions
[MSDN] Look at Sharing Common Assemblies in ASP.NET 4.5
[MSDN] How the Runtime Locates Assemblies
[StackOverflow] What is the GAC in .NET?
[MSDN] Programming with Assemblies:
- How to: Sign an Assembly with a Strong Name
- How to: Install an Assembly into the Global Assembly Cache
[MSDN] Assemblies in the CLR:
- Global Assembly Cache
- Assembly Versioning
- Assembly Manifest
- Strong-Named Assemblies
[MSDN] Configuring Assembly Binding Redirection
[MSDN] Redirecting Assembly Versions
[MSDN] Look at Sharing Common Assemblies in ASP.NET 4.5
[MSDN] How the Runtime Locates Assemblies
[StackOverflow] What is the GAC in .NET?
[Blog] Sharing common assemblies with aspnet_intern.exe
[Blog] ASP.NET Assembly Interning
[Blog] Back to Basics: When does a .NET Assembly Dependency get loaded
[YouTube] .NET Assembly Versioning
[Blog] ASP.NET Assembly Interning
[Blog] Back to Basics: When does a .NET Assembly Dependency get loaded
[YouTube] .NET Assembly Versioning
Thursday, September 28, 2017
Microsoft 70-487: Manage packages by using NuGet
Exam Objectives
Create and configure a NuGet package; install and update an existing NuGet package; connect to a local repository cache for NuGet, set up your own package repositoryQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 5.4
[Software] Nuget Package Explorer, Source
[MSDN] NuGet Documentation:
-PowerShell Reference
-Package Creation Workflow
-Hosting your own NuGet feeds
[Wikipedia] Nuget
[PluralSight] Introduction to NuGet
[Software] Nuget Package Explorer, Source
[MSDN] NuGet Documentation:
-PowerShell Reference
-Package Creation Workflow
-Hosting your own NuGet feeds
[Wikipedia] Nuget
[PluralSight] Introduction to NuGet
Wednesday, September 27, 2017
Microsoft 70-487: Create and configure a WCF service on Azure
Exam Objectives
Create and configure bindings for WCF services (Azure SDK—extensions to WCF); relay bindings to Azure using service bus endpoints; integrate with the Azure service bus relay; host services in Azure (from 3.9);Quick Overview of Training Materials
Monday, September 25, 2017
Microsoft 70-487: Host and manage services
Exam Objectives
Manage services concurrency (single, multiple, reentrant); create service hosts; choose a hosting mechanism; choose an instancing mode (per call, per session, singleton); activate and manage a service by using AppFabric; implement transactional services; host services in an Azure worker roleQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 3.9
[MSDN] Sessions, Instancing, and Concurrency
[MSDN] How to: Create a Transactional Service
[CodeProject] WCF Concurrency
[MSDN] Hosting
[MSDN] Deploying an Internet Information Services-Hosted WCF Service
[MSDN] How to: Host a WCF Service in a Managed Windows Service
[DotNetCurry] Hosting WCF Service in Windows Server AppFabric
[Blog] Deploying A WCF Service On Windows Azure
[Blog] Deploying an Existing WCF Service to Azure
[MSDN] Sessions, Instancing, and Concurrency
[MSDN] How to: Create a Transactional Service
[CodeProject] WCF Concurrency
[MSDN] Hosting
[MSDN] Deploying an Internet Information Services-Hosted WCF Service
[MSDN] How to: Host a WCF Service in a Managed Windows Service
[DotNetCurry] Hosting WCF Service in Windows Server AppFabric
[Blog] Deploying A WCF Service On Windows Azure
[Blog] Deploying an Existing WCF Service to Azure
[PluralSight] WCF End-to-End -
Hosting and Service Configuration
Instancing and Concurrency
Transaction Handling
[PluralSight] WCF Advanced Topics
Instancing and Concurrency
Transaction Handling
[PluralSight] WCF Advanced Topics
Wednesday, September 20, 2017
Microsoft 70-487: Secure a WCF service
Exam Objectives
Implement message level security, implement transport level security; implement certificates; design and implement multiple authentication modesQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 3.4
[Book] Programming WCF Services - Ch. 10: Security
[MSDN] Programming WCF Security
[MSDN] Message Security in WCF
[MSDN] Transport Security
[MSDN] Working with Certificates
[MSDN] Improving Web Service Security - Chapter 7, Chapter 5 (Auth)
[MSDN] How to: Use Certificate Authentication and Transport Security in WCF
[CodeProject] Nine simple steps to enable X.509 certificates on WCF
[Book] Programming WCF Services - Ch. 10: Security
[MSDN] Programming WCF Security
[MSDN] Message Security in WCF
[MSDN] Transport Security
[MSDN] Working with Certificates
[MSDN] Improving Web Service Security - Chapter 7, Chapter 5 (Auth)
[MSDN] How to: Use Certificate Authentication and Transport Security in WCF
[CodeProject] Nine simple steps to enable X.509 certificates on WCF
Sunday, September 17, 2017
Microsoft 70-487: Implement messaging patterns
Exam Objectives
Implement one way, request/reply, streaming, and duplex communication; implement Azure Service Bus and Azure QueuesQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 3.8
[MSDN] One-Way Service, How to create, One-Way
[MSDN] Request/Reply Service, How to create
[MSDN] Duplex Service, How to create
[MSDN] Streaming Message Transfer
[MSDN] Large Data and Streaming
[MSDN] Using Service Bus Queues with WCF
[MSDN-Blog] My Hello Azure Service Bus WCF Service
[MSDN] Azure Service Bus
[Blog] WCF Best Practices: One way is not always really one way
[PluralSight] WCF End-to-End - Operations
My post on Creating a Service
[MSDN] Request/Reply Service, How to create
[MSDN] Duplex Service, How to create
[MSDN] Streaming Message Transfer
[MSDN] Large Data and Streaming
[MSDN] Using Service Bus Queues with WCF
[MSDN-Blog] My Hello Azure Service Bus WCF Service
[MSDN] Azure Service Bus
[Blog] WCF Best Practices: One way is not always really one way
[PluralSight] WCF End-to-End - Operations
My post on Creating a Service
Wednesday, September 13, 2017
Microsoft 70-487: Version a WCF service
Exam Objectives
Version different types of contracts (message, service, data); configure address, binding, and routing service versioningQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 3.6
[Book] Programming WCF Services - Ch. 3: Data Contracts
[MSDN] Versioning Strategies
[MSDN] Best Practices: Data Contract Versioning
[MSDN] Using Message Contracts (Versioning section)
[MSDN] How To: Service Versioning (Routing)
[CodeProject] WCF Routing Service - Part IV: Service Versioning
[PluralSight] WCF Power Topics - Versioning Your Services
[Book] Programming WCF Services - Ch. 3: Data Contracts
[MSDN] Versioning Strategies
[MSDN] Best Practices: Data Contract Versioning
[MSDN] Using Message Contracts (Versioning section)
[MSDN] How To: Service Versioning (Routing)
[CodeProject] WCF Routing Service - Part IV: Service Versioning
[PluralSight] WCF Power Topics - Versioning Your Services
Monday, September 4, 2017
Microsoft 70-487: Consume WCF services
Exam Objectives
Generate proxies by using SvcUtil; generate proxies by creating a service reference; create and implement channel factoriesQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 3.5
[Book] Programming WCF Services
Saturday, September 2, 2017
Microsoft 70-487: Configure WCF services by using the API
Exam Objectives
Configure service behaviors; configure service endpoints; configure binding; specify a service contract; expose service metadata (XSDs, WSDL, and metadata exchange); WCF routing and discovery featuresQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 3.3
[Book] Programming WCF Services (in particular, Appendix C: Discovery)
[MSDN] Configuring WCF Services in Code (.NET 4.5+)
[Book] Programming WCF Services (in particular, Appendix C: Discovery)
[MSDN] Configuring WCF Services in Code (.NET 4.5+)
[MSDN] How to: Create a Service Endpoint in Code
[MSDN] WCF Discovery
[MSDN] Routing
PluralSight WCF Library - WCF Power Topics in particular (routing and discovery)
My post on file based config
[MSDN] WCF Discovery
[MSDN] Routing
PluralSight WCF Library - WCF Power Topics in particular (routing and discovery)
My post on file based config
Friday, August 25, 2017
Microsoft 70-487: Configure WCF services by using configuration settings
Exam Objectives
Configure service behaviors; configure service endpoints; configure bindings including WebSocket bindings; specify a service contract; expose service metadata (XSDs, WSDL, and metadata exchange endpoint); configure message compression and encodingQuick Overview of Training Materials
Exam Ref 70-487 - Chapter 3.2
[MSDN] Configuring Services Using Configuration Files
[MSDN] Configuring and Extending the Runtime with Behaviors
[MSDN] Reference Source (.NET Source code search!)
[MSDN] Windows Communication Foundation Bindings
[MSDN] System-Provided Bindings
[MSDN] Choosing a Message Encoder
My Post - PluralSight WCF Library
[MSDN] Configuring Services Using Configuration Files
[MSDN] Configuring and Extending the Runtime with Behaviors
[MSDN] Reference Source (.NET Source code search!)
[MSDN] Windows Communication Foundation Bindings
[MSDN] System-Provided Bindings
[MSDN] Choosing a Message Encoder
My Post - PluralSight WCF Library
Subscribe to:
Posts (Atom)