Logo
  Saturday, May 18, 2013
Sign-In  |  Sign-Up  |  Contact Us  | Bookmark |  RSS Feed

Development
WCF Service Contracts and Operations
The WCF Contracts are designed to present methods to the potential consumers of this service. The WCF Service Contracts are also known and Interfaces or Behaviors of the WCF Service.... Read Full Article
WCF DataContract attributes
The WCF DataContract has a set of attributes that help us influence behavior of the WCF DataContract. ... Read Full Article
Hosting
WCF Hardware Requirements
The WCF services is not overly complicated service and can be run with few demands on your server or client configuration. Table below is a good example what is required.... Read Full Article
WCF Software Requirements
It has to be noted that the WCF service is part of the .NET 3.0 and 4.0 Framework APIs and it is fully integrated into major releases of the Windows Operating System. ... Read Full Article
Configuration
WCF HTTP Binding
The WCF HTTP address can be hosted on IIS or can be configured as self-hosted service. You can guess that the WCF HTTP address can be accessed just like you access any regular application.... Read Full Article
Microsoft Service Configuration Manager
Default installation of the .NET Framework comes with useful utility tools. One of these tools is useful for configuring WCF configuration files. ... Read Full Article
Security
Monitoring
WCF Diagnostics
It is not an obvious task to track and trace errors or message as they occur within WCF Service layer. There are certain tools that can help you in tracing and understanding WCF messages.... Read Full Article
Other
WCF Channel Factory
ChannelFactory can be instantiated on the specific service. One you instantiate the WCF Service Factory you can peer into exposed contract of the WCF Service.... Read Full Article
WCF Contract First vs WCF Code First
It has been always hot topic among WCF developers. Should WCF developer create contract and then generate object model or object model should come first and Contract attributes applied to it? ... Read Full Article