Browse by Tags

Tagged Content List
  • Wiki Page: The famous System.ServiceModel.FaultException`1 was unhandled by user code

    Introduction: Years ago, I personnlay met the famous error "System.ServiceModel.FaultException'1 was not handle by user code" in one of my WCF project. Since that tile I get a lot of great comment on my blog on that same issue still today. In order to bring to that topic a better...
  • Wiki Page: BizTalk + WF/WCF, Better Together

    Summary All versions of BizTalk Server use a publish/subscribe messaging engine architecture. In a publish/subscribe architecture, all messages that flow through BizTalk Server are first published to the MessageBox database and subsequently picked up by Send Ports, Receive Ports, or Orchestrations...
  • Wiki Page: Connecting local web service (WCF) from Windows Phone 8 Emulator

    So I’m right you came to this blog to resolve web services issue in windows phone 8 emulator. Let us discusses about it. Previously in windows phone 7 in OS 7.1 local web service was connected and consumed using http://localhost:port . But in windows phone 8 things are changed. Windows phone 8 emulator...
  • Wiki Page: WCF: Streaming Large Data Files Using WebHttpBinding

    This example code streams large data files using Windows Communication Foundation (WCF) and the WebHttpBinding . [The original code comes from this forum post: http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/fb9efac5-8b57-417e-9f71-35d48d421eb4 ] For more information about streaming...
  • Wiki Page: BizTalk Server: REST Services Error Handling

    There are quite a few posts on different blogs that explain how to consume and expose REST services from BizTalk that are really good (this one from Mikael Håkansson about the bLogical REST Start Kit for BizTalk, or this series from Steef-Jan Wiggers about the new REST features in BizTalk 2013...
  • Wiki Page: WCF, IIS, and SSL

    It’s become apparent to me of late that the concept of using SSL with WCF in IIS can be confusing even to some of the most experienced WCF programmers. The motivation behind this article is to try and clear the air around SSL and provide an implementation that can be applied by a novice or expert....
  • Wiki Page: Exam 70-503 - TS: Microsoft .NET 3.5 - Windows Communication Foundation

    Table of Contents Overview Skills Measured Preparation Materials Community Related Forum Posts Other Languages Deutsch Overview Language(s): English, French, German, Japanese, Spanish, Chinese (Simplified) Audience(s): Developers Technology: Microsoft Visual...
  • Wiki Page: How to Inspect WCF Message Headers Using IClientMessageInspector

    Reading the SOAP message headers for any set of messages can be useful when diagnosing problems. This code allows you to do just that. To run: Copy and paste the code into Visual Studio 2010. Add a reference to: System.ServiceModel.dll System.Runtime.Serialization.dll. Original...
  • Wiki Page: SharePoint 2010 Best Practices: Where to Publish a WCF Service

    If you're creating a WCF service you basically have two options: - Create a WCF service in a SharePoint context. - Create a separate WCF service. If you're creating a WCF service in a SharePoint context, you're basically doing the following: you create a SharePointproject, add the...
  • Wiki Page: WCF Extension and Custom Behavior

    We have a simple WCF WebService that has operation for Division (dividing value1 by Value2) and return this division result back to client. Service Code: Interface: Class implementing the Interface: In Divide Method, DivideByException is thrown if value2 is zero. So we are handling...
  • Wiki Page: Using Custom Behaviors with the BizTalk WCF Adapters, Part 1

    Using Custom Behaviors with the BizTalk WCF Adapters, Part 1 Microsoft Corporation Published: January 2009 Author: Michael McKeown Contributors: Hanu Awasthy, Sarathy Sakshi, John Taylor Summary You can customize message processing in Microsoft® BizTalk® Server 2006 R2 by using...
  • Wiki Page: Whether or Not to Use Biztalk Server or AppFabric to Host .NET 4 WCF/WF Services

    You can simply view Windows Server AppFabric as a hosting environment for NET 4 services using Windows Communication Foundation (WCF) and Windows Workflow Foundation (WF) . In more detail, it extends Windows Server to provide enhanced hosting, management, and caching capabilities for Web applications...
  • Wiki Page: Expose BizTalk Applications on the Cloud Using AppFabric Connect for Services

    With the advent of the cloud and enterprises building cloud-based applications, enterprises will still want to use their existing on-premise applications. Thus, one of the key requirements in building hybrid cloud-based applications across on-premise and on-cloud environments is the ability to use pre...
  • Wiki Page: Asynchronous Operations in WCF

    In WCF, asynchronous operations can be implemented by using one of the three following methods: The event-based asynchronous pattern The IAsyncResult asynchronous pattern The task-based asynchronous pattern Today I am going to explain how to implement asynchronous operations in WCF using each...
  • Wiki Page: Windows Communication Foundation (WCF): Ein Überblick (de-DE)

    Beachte: Einige Links in diesem Artikel sind leider nur in Englisch verfügbar sind. Table of Contents Für Einsteiger Foren WCF Wiki-Seiten Siehe auch Andere Sprachen English (en-US) Português (pt-BR) Windows Communication Foundation (WCF) (en-US) ist eine Technologie für das Erstellen von...
  • Wiki Page: Windows Communication Foundation Overview

    Table of Contents For Beginners Forums WCF Wiki Pages Books See Also Other Languages Deutsch (de-DE) Português (pt-BR) Windows Communication Foundation (WCF) is a system for creating connections between applications using services and endpoints. WCF is, more than anything, an infrastructure technology...
  • Wiki Page: You May Receive False Errors in the Error List in Visual Studio 2012 When Creating a New C# Workflow Service Project

    When you create a new C# WCF Workflow Service Application in Visual Studio 2012 that targets .NET Framework 4.5, you may notice errors similar to the following in the Error List when the project is first created or opened: Error 1 The type or namespace name 'Data' does not exist in the...
  • Wiki Page: Tutorial: Creating and Deploying a WCF Sync Service to Windows Azure

    The walkthroughs in this tutorial provide steps to create a sync service by using Windows Azure Tools for Microsoft Visual Studio (see the Windows Azure MSDN site ) and deploy the service to Windows Azure. This section contains the following sub-sections. Section Description ...
  • Wiki Page: WCF Endpoints and Bindings

    Windows Communication Foundation gives us the ability to transmit messages using different transport protocols such as HTTP, TCP, and MSMQ (Microsoft Message Queuing) etc. As you already know all communication with a WCF service occurs through the endpoints of the service. There can be...
  • Wiki Page: WCF: Data Contract Names: Don't Use Names with the "Response" Suffix

    After creating simple WCF service I've got strange errors (see below). The issue was in the names of the response messages. I used the simple custom rule to name request and response messages (.NET DataContract classes). I used Request and Response as suffixes: <OperationName>Request...
  • Wiki Page: How to Enable WCF Message Flow

    In a distributed system containing interconnected services, it is necessary to determine causal relationships between the services. It is important to understand the various components that were part of a request flow to support critical scenarios such as health monitoring, troubleshooting, and root...
  • Wiki Page: How to Build a REST Service Using WCF

    The below code gives a server implementation of building a REST Service using WCF. [ ServiceContract ] public interface IService1 { [WebGet] string GetData(); [WebGet] string GetDataFromValue( int value); [WebInvoke] CompositeType GetDataUsingDataContract(SampleItem sample...
  • Wiki Page: Windows Communication Foundation

    Windows Communication Foundation (WCF) is a framework for building service-oriented applications. Using WCF, you can send data as asynchronous messages from one service endpoint to another. A service endpoint can be part of a continuously available service hosted by IIS, or it can be a service hosted...
  • Wiki Page: WCF

    WCF stands for Windows Communication Foundation .
  • Wiki Page: WCF: Technique of Debugging Inconsistency Between Wsdl and Response Messages

    This is a popular issue: WSDL of the services does not conform the Response messages (See below. I’ve bolded the text related to the issue.). I fixed this issue by changing proxy code. It is not a big issue, but we have to manually change proxy every time we have updated the proxy of the service. ...
Page 1 of 3 (65 items) 123
Can't find it? Write it!