WCF - Links to documents and tutorials: Difference between revisions
Jump to navigation
Jump to search
(5 intermediate revisions by the same user not shown) | |||
Line 15: | Line 15: | ||
* [http://msdn.microsoft.com/en-us/library/ms734765.aspx How to: Publish Metadata for a Service Using a Configuration File] | * [http://msdn.microsoft.com/en-us/library/ms734765.aspx How to: Publish Metadata for a Service Using a Configuration File] | ||
* [http://msdn.microsoft.com/en-us/library/aa738489.aspx How to: Publish Metadata for a Service Using Code] | * [http://msdn.microsoft.com/en-us/library/aa738489.aspx How to: Publish Metadata for a Service Using Code] | ||
* [http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/5219ca92-df97-451d-a44c-cfa4a88c10ae/ Is WCF better than Remoting, what should I choose?] | |||
* [http://msdn.microsoft.com/en-us/library/aa730857.aspx From .NET Remoting to the Windows Communication Foundation (WCF)] | |||
==WCF== | ==WCF== | ||
Line 58: | Line 59: | ||
* [http://www.microsoft.com/whdc/system/vista/services.mspx Impact of Session 0 Isolation on Services and Drivers in Windows Vista] | * [http://www.microsoft.com/whdc/system/vista/services.mspx Impact of Session 0 Isolation on Services and Drivers in Windows Vista] | ||
==Startig a service without admin rights== | |||
* [http://www.codeproject.com/KB/vista-security/UAC_Shield_for_Elevation.aspx Add a UAC shield to a button when elevation is required for admin tasks] | * [http://www.codeproject.com/KB/vista-security/UAC_Shield_for_Elevation.aspx Add a UAC shield to a button when elevation is required for admin tasks] | ||
* [http://www.codeproject.com/KB/WCF/AppWatcher.aspx Windows Vista aware NT Service interacting with the desktop] | |||
==Using ChannelFactory Vs. Proxies in WCF== | ==Using ChannelFactory Vs. Proxies in WCF== | ||
Line 83: | Line 86: | ||
==Threading== | ==Threading== | ||
* [http://www.albahari.com/threading/ Threading in C#] | * [http://www.albahari.com/threading/ Threading in C#] | ||
==Data binding== | |||
* [http://msdn.microsoft.com/en-us/library/ms752347.aspx#binding_to_collections Windows Presentation Foundation Data Binding Overview] | |||
* [http://msdn.microsoft.com/en-us/library/ms748857.aspx How to: Make Data Available for Binding in XAML] | |||
* [http://bka-bonn.de/wordpress/index.php/2008/01/28/databinding-with-wpf/ Data binding with WPF] | |||
* [http://blogs.msdn.com/abhijitc/archive/2008/01/28/data-binding-the-wpf-way.aspx Data Binding, the WPF way] | |||
* [http://www.codeproject.com/KB/WPF/GuidedTourWPF_3.aspx codeproject - A Guided Tour of WPF – Part 3 (Data binding)] | |||
<google>ENGELSK</google> | <google>ENGELSK</google> |
Latest revision as of 10:01, 29 January 2009
<google>ENGELSK</google>
- A Combination of WCF Essentials
- ServiceContractAttribute..::.CallbackContract Property
- supporting multiple callbacks
- Foundations - Code Access Security in WCF, Part 1 - Juval Lowy
Microsoft
- How to: Publish Metadata for a Service Using a Configuration File
- How to: Publish Metadata for a Service Using Code
- Is WCF better than Remoting, what should I choose?
- From .NET Remoting to the Windows Communication Foundation (WCF)
WCF
- Enabling WPF Magic Using WCF - Part 1
- Enabling WPF Magic Using WCF - Part 2
- Enabling WPF Magic Using WCF - Part 3
When creating the clients "Service Reference check" select: Generate asynchronus classes Implements the INotifyPropertyChanged interface on all Data Contract types to enable data binding. Short Form: /edb
DataSet
Data Contract Names and Data Contract Equivalence
Configuration files
Hosting a WCF service in a Windows Service
- Hosting a WCF service in a Windows Service
- Installer Tool (Installutil.exe)
- Running and debugging a Windows Managed Service directly from Visual Studio.NET
- Create a system tray icon and a dialog for a Windows Service
If you receive the following message: The xxx service is marked as an interactive service. However, the system is configured to not allow interactive services. This service may not function properly read the explanation in this document:
Startig a service without admin rights
- Add a UAC shield to a button when elevation is required for admin tasks
- Windows Vista aware NT Service interacting with the desktop
Using ChannelFactory Vs. Proxies in WCF
Per-call services Per-session services and Singleton services
- Discover Mighty Instance Management Techniques For Developing WCF Apps
- What happens when InstanceContext.Release/GetServiceInstance() is called on a Singleton
Using Callback
These two samples gives a great introduction to WCF callback.
- WCF: Duplex Operations and UI Threads
- Codeproject - WCF / WPF Chat Application
- WCF Callbacks; a beginners guide
AsyncPattern
- WCF and the AsyncPattern property (part 1)
- WCF and the AsyncPattern property (part 2)
- WCF and the AsyncPattern property (part 3)
Threading
Data binding
- Windows Presentation Foundation Data Binding Overview
- How to: Make Data Available for Binding in XAML
- Data binding with WPF
- Data Binding, the WPF way
- codeproject - A Guided Tour of WPF – Part 3 (Data binding)
<google>ENGELSK</google>