TechNet
Products
IT Resources
Downloads
Training
Support
Products
Windows
Windows Server
System Center
Microsoft Edge
Office
Office 365
Exchange Server
SQL Server
SharePoint Products
Skype for Business
See all products »
Resources
Channel 9 Video
Evaluation Center
Learning Resources
Microsoft Tech Companion App
Microsoft Technical Communities
Microsoft Virtual Academy
Script Center
Server and Tools Blogs
TechNet Blogs
TechNet Flash Newsletter
TechNet Gallery
TechNet Library
TechNet Magazine
TechNet Wiki
Windows Sysinternals
Virtual Labs
Solutions
Networking
Cloud and Datacenter
Security
Virtualization
Updates
Service Packs
Security Bulletins
Windows Update
Trials
Windows Server 2016
System Center 2016
Windows 10 Enterprise
SQL Server 2016
See all trials »
Related Sites
Microsoft Download Center
Microsoft Evaluation Center
Drivers
Windows Sysinternals
TechNet Gallery
Training
Expert-led, virtual classes
Training Catalog
Class Locator
Microsoft Virtual Academy
Free Windows Server 2012 courses
Free Windows 8 courses
SQL Server training
Microsoft Official Courses On-Demand
Certifications
Certification overview
Special offers
MCSE Cloud Platform and Infrastructure
MCSE: Mobility
MCSE: Data Management and Analytics
MCSE Productivity
Other resources
Microsoft Events
Exam Replay
Born To Learn blog
Find technical communities in your area
Azure training
Official Practice Tests
Support options
For business
For developers
For IT professionals
For technical support
Support offerings
More support
Microsoft Premier Online
TechNet Forums
MSDN Forums
Security Bulletins & Advisories
Not an IT pro?
Microsoft Customer Support
Microsoft Community Forums
Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Get this Tag RSS feed
Translate this page
Powered by
Microsoft® Translator
Popular Tags
Active Directory
AD
AD DS
adfs
ASP.NET
azure
BizTalk
BizTalk Server
BizTalk Server 2010
C#
Candidate for deletion
certification
cloud
core docs
de-DE
EAA
Ed Price
Ed's Stub Pages
en-US
ESA
es-ES
Excel
Exchange
Exchange 2010
fa-IR
Fernando Lugao Veltem
FIM
FIM 2010
FIM Resources
FIM-HELP
forefront
forums
fr-FR
Gokan Ozcifci
has code
has comment
has comments
has image
has Images
has Other Languages
has See Also
Has Table
Has TOC
Horizon_Net
How To
Hyper-V
id-ID
IIS
Italian Wiki Articles
it-IT
ja-JP
Jordano Mazzoni
Link Collection
Luciano Lima
Luigi Bruno
Lync Server 2010
MIISILMFIM MACAULAY
Multi Language Wiki Articles
needs work
operations manager
Pirated Content
Portal
Português Brasil
PowerShell
pt-BR
security
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint Pirate
Small Basic
solucionando problemas
SQL Server
SQL Server 2012
stub
System Center
System Center 2012
TechNet Guru
TechNet Wiki
TechNet Wiki Featured Article
tonyso
Translated into Japanese
troubleshooting
tr-TR
vídeo
Video
Virtualization
VMM
Wiki
Windows
Windows 7
Windows 8
Windows Azure
Windows Server
Windows Server 2003
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
yottun8
اکتیو دایرکتوری
Browse by Tags
>
TechNet Articles
>
All Tags
>
WCF 4.5
Tagged Content List
Wiki Page:
How to consume WCF Service using Channel Factory
Maheshkumar S Tiwari
A Channel Factory is implemented by the IChannelFactory Interface and their associated channels are used by the initiators of a communication pattern. The Channel Factory class is useful when you want to share a common service contract DLL between the client and the server. When to use Channel Factory...
on
19 Sep 2013
Wiki Page:
Introduction to WCF Data Services
Ed Price - MSFT
Table of Contents Introduction OData(Open Data Protocol) WCF Data Service + oData Data Service Providers Introduction WCF Data Services (formerly known as ADO.NET Data Services and codename is “Astoria”) is a platform for what Microsoft calls Data Services. This is a component of the .NET...
on
7 Sep 2013
Wiki Page:
WCF Data Services with Entity Framework Provider
Ed Price - MSFT
This Article focuses on how we can implement a WCF Data Service with Entity Framework Provider. I have created an empty ASP.NET web application. Now let’s start by adding an ADO.NET Entity Data Model to the project. ADO.NET Entity Data Model Now I am...
on
7 Sep 2013
Wiki Page:
WCF Data Services with Reflection Provider
Jaliya Udagedara
Today let’s see how to implement a WCF Data Service with Reflection Provider. The reflection provider exposes data in classes which returns an IQueryable<T> I am going to use the same scenario which I used to demonstrate WCF Data Services with Entity Framework Provider . Scenario...
on
27 Aug 2013
Wiki Page:
Set WCF Service Authentication to Use a Custom Username & Password over HTTP
Naomi N
It’s a common requirement where you want to authenticate the requests which the clients will make to your WCF services. And let's say that’s using some data which you have in your user table. In WCF, the default, when a user name and password is used for authentication, is let Windows to validate...
on
6 Aug 2013
Wiki Page:
CRM 2011 : how to use OrganizationServiceClient without XRM dll, with pure WCF call(OrganizationServiceClient, Create, Update)
Payman Biukaghazadeh
Below are the steps which may be helpful while trying to access CRM 2011 on premise with "OrganizationServiceClient" class. Benefits : no need to use XRM.dll, no early bound class. Also it will help in accessing multiple Organizations in an CRM 2011 installation with the same peice of code...
on
26 May 2013
Wiki Page:
New Features in WCF 4.5
Ed Price - MSFT
In the .NET Framework 4.5 Developer Preview, the following features have been added to make it simpler to write Windows Communication Foundation (WCF) applications: 1- Simplification of generated configuration files. 2- Support for contract-first development. 3- Ability to configure ASP.NET...
on
19 Feb 2013
Wiki Page:
what microsoft promises to offer in .NET 5.0
dplotnikov - mvp
Introduction of New Features in C# 5.0 1. C# Evolution Matrix Microsoft just published a new version of C# : 5.0 beta with CLR version 4.5 (Visual Studio 11 beta). In order to get a big picture of the whole evolution of C# language, I summarized all the key features into a C# Evolution Matrix...
on
26 Aug 2012
Wiki Page:
WPF Xaml datagrid by Infragistics
dplotnikov - mvp
xamDataGrid is UI component for .NET WPF applications developed by Infragistics , which can provides rich UI grid interface for you data. you can bind this control to ObjectDataProvider and XmlDataProvider. Main Features of this control: You can bind this control with all WPF data providers...
on
26 Aug 2012
Wiki Page:
Understanding Garbage Collection from enterprise Perspective
kishhr
Advance Memory Management Caching objects Keep all the objects like view Model objects, Model objects, business objects, static objects etc.. in a centralized Cache. Disposing centralized cache can promote greater memory reductions. Microsoft provides built-in Cache in .NET runtime, but...
on
12 Aug 2012
Wiki Page:
CRM 2011 : Using OrganizationServiceClient to Update owner, Share/ Unshare record (OrganizationRequest, Grant Access, Revoke Access), without XRM dll with pure WCF Call
Joon84
I was trying to execute all kinds of operation using pure WCF call to CRM 2011, without adding any xrm dll or early bound class. To make the whole piece of code dynamic and free of any externsal source, it can be achieved by adding the WCF service end point(.svc end point) and using two methods provided...
on
8 Jul 2012
Page 1 of 1 (11 items)
Can't find it? Write it!
Post an Article