Windows Communication Foundation is a part of the .NET Framework that provides a unified programming model for rapidly building service-oriented applications.

learn more… | top users | synonyms (2)

150
votes
18answers
30k views

What is the best workaround for the WCF client `using` block issue?

I like instantiating my WCF service clients within a using block as it's pretty much the standard way to use resources that implement IDisposable: using (var client = new SomeWCFServiceClient()) { ...
229
votes
5answers
103k views

REST / SOAP endpoints for a WCF service

I have a WCF service and I want to expose it as both a RESTfull service and as a SOAP service. Anyone has done something like this before?
27
votes
4answers
8k views

Self Tracking Entities vs POCO Entities

We are starting a new web based product in which we are planning to expose our business logic through WCF services. We will be using ASP.NET 4.0, C#, EF 4.0. In future we want to build iphone ...
311
votes
10answers
107k views

Best Practices for securing a REST API / web service

When designing a REST API or service are there any established best practices for dealing with security (Authentication, Authorization, Identity Management) ? When building a SOAP API you have ...
106
votes
4answers
57k views

How do I return clean JSON from a WCF Service?

I am trying to return some JSON from a WCF service. This service simply returns some content from my database. I can get the data. However, I am concerned about the format of my JSON. Currently, the ...
68
votes
8answers
43k views

How to add a custom header to every WCF calls?

I have a WCF service that is hosted in a Windows Service. Clients that using this service must pass an identifier every time they're calling service methods (because that identifier is important for ...
166
votes
22answers
110k views

Could not find default endpoint element

I've added a proxy to a webservice to a VS2008/.NET 3.5 solution. When constructing the client .NET throws this error: Could not find default endpoint element that references contract ...
48
votes
5answers
49k views

How to Consume WCF Service with Android

I am creating a server in .NET and a client application for Android. I would like to implement an authentication method which sends username and password to server and a server sends back a session ...
28
votes
5answers
26k views

How to turn on WCF Tracing?

update: i have been trying to turn on wcf tracing but still no success.. below is my lastest update. do i need permission to write on the below location? <system.diagnostics> <trace ...
28
votes
6answers
62k views

Consume WCF Web Service using Objective-C on iPhone

I am having a hard time consuming a very simple (Hello World) WCF web service in my iPhone app. From what I have read, you must manually create the request message then send it to the web service ...
29
votes
3answers
14k views

How do I pass values to the constructor on my wcf service?

I would like to pass values into the constructor on the class that implements my service. However ServiceHost only lets me pass in the name of the type to create, not what arguments to pass to its ...
125
votes
8answers
77k views

WCF - How to Increase Message Size Quota

I have a WCF Service which returns 1000 records from database to the client. I have a ASP.NET WCF client - (I have added service reference in asp.net web application project to consume WCF). I get the ...
56
votes
8answers
36k views

WCF Configuration without a config file

Does anyone know of a good example of how to expose a WCF service programatically without the use of a configuration file? I know the service object model is much richer now with WCF, so I know it's ...
36
votes
5answers
23k views

Create WCF service for unmanaged C++ clients

I need to get unmanaged Windows C++ clients to talk to a WCF service. C++ clients could be running on Win2000 and later. I have a control over both WCF service and which C++ API is being used. Since ...
7
votes
5answers
5k views

Performance Tests of Serializations used by WCF Bindings

I have the following object: public partial class Game { public bool Finished { get; set; } public Guid GameGUID { get; set; } public long GameID { get; set; } public bool ...
110
votes
3answers
66k views

WCF vs ASMX web service

I am totally confused between WCF and ASMX web services. I have used a lot of web services in my earlier stage and now there is this new thing introduced called WCF. I can still create WCF that ...
25
votes
6answers
7k views

Web Services — WCF vs. Standard

I am working on a new project. Is there any benefit with going with a WCF web service over a regular old fashion web service? Visual Studio offers templates for both. What are the differences? Pros ...
14
votes
3answers
4k views

Injecting data to a WCF service

I have WCF services structured like suggested by Miguel Castro. This means that I have set everything up manually, and have a console application hosting my services using ServiceHost objects. I ...
15
votes
2answers
10k views

Returning raw json (string) in wcf

I want to build my own JSON, and have the service return a string, here is the code [OperationContract] [WebInvoke(Method = "POST", BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat = ...
5
votes
2answers
2k views

Understanding WCF Windows Authentication

I have a service with windows authentication. Using the following code, I can get the Windows Identity of the user who (by using the client) consumes the service. String currentUser = ...
4
votes
1answer
6k views

jqGrid does not populate with data

I am trying to populate a jqGrid with data from a web service. I have looked at the jqGrid code and documentation thoroughly. I need another set of eyes to look at the code below and tell me if I'm ...
147
votes
6answers
84k views

Collection was modified; enumeration operation may not execute

I can't get to the bottom of this error, because when the debugger is attached, it does not seem to occur. Below is the code. This is a WCF server in a Windows service. The method NotifySubscribers ...
47
votes
2answers
10k views

How does WCF deserialization instantiate objects without calling a constructor?

There is some magic going on with WCF deserialization. How does it instantiate an instance of the data contract type without calling its constructor? For example, consider this data contract: ...
30
votes
4answers
42k views

Maximum array length quota

;Im writing a small WCF/WPF app to resize images but WCF is giving me grief when I try to send an image of size 28K to my service from the client. The service works fine when I send it smaller images. ...
5
votes
4answers
2k views

Queuing in OneWay WCF Messages using Windows Service and SQL Server

I need to implement a queuing mechanism for WCF service requests. The service will be called by clients in a one-way manner. These request messages should be stored in a SQL Server database and a ...
17
votes
2answers
11k views

WCF service to accept a post encoded multipart/form-data

Does anyone know, or better yet have an example, of a WCF service that will except a form post encoded multipart/form-data ie. a file upload from a web page? I have come up empty on google. Ta, Ant
45
votes
5answers
45k views

How to use a WSDL file to create a WCF service (not make a call)

I have an old WSDL file and I want to create a server based on this WSDL file. The WSDL is generated from a ASMX (I suppose but I am not sure). How can I achieve this ? original question where ...
40
votes
3answers
63k views

Timeouts WCF Services

How do the timeouts work in WCF? I know for example that you can configure sendTimeout and receiveTimeout for a clients binding. But how do they work? Msdn describes sendTimeout as: A TimeSpan value ...
2
votes
3answers
580 views

Contract-First SOA: Designing Business Domain: WCF

I am building a completely new system using WCF. I am going to use Contract-First Approach for a service which is to be built based on Service Oriented concepts. I have a service operation that ...
1
vote
2answers
522 views

WCF - Design Parameter Decision

I am designing a service for FundManagement. The FundManagement Service has an operation named “UpdateFundApprovalDate(FundDTO fund)”. This operation will update the fund table record with approval ...
55
votes
8answers
54k views

Large WCF web service request failing with (400) HTTP Bad Request

I've encountered this apparently common problem and have been unable to resolve it. If I call my WCF web service with a relatively small number of items in an array parameter (I've tested up to 50), ...
26
votes
7answers
18k views

Serialize Entity Framework objects into JSON

It seems that serializing Entity Framework objects into JSON is not possible using either WCF's native DataContractJsonSerializer or ASP.NET's native JavaScript Jersializer. This is due to the ...
17
votes
3answers
24k views

How to make a call to my WCF service asynchronous?

I have a WCF service that I call from a windows service. The WCF service runs a SSIS package, and that package can take a while to complete and I don't want my windows service to have to wait around ...
10
votes
3answers
415 views

“Do not use Abstract Base class in Design; but in Modeling/Analysis”

I am newbie to SOA though I have some experience in OOAD. One of the guidelines for SOA design is “Use Abstract Classes for Modeling only. Omit them from Design”. The use of abstraction can be ...
6
votes
1answer
4k views

What is the best way to download file from server

I have interesting task which requires me to download a dynamically generated file from a server (ASP.NET) to the client. On the client side it is just JavaScript (jQuery) and the client is able to ...
1
vote
5answers
562 views

Reports in SOA (Business Intelligence & Service Oriented Architecture)

I have SOA with a Employee service and a Travel Service. The travel service will create a travelID entry for the employeeId in the [Travel] database. The employee will be using a “TravelUI” website ...
15
votes
3answers
12k views

creating WCF ChannelFactory<T>

I'm trying to convert an existing .NET Remoting application to WCF. Both server and client share common interface and all objects are server-activated objects. In WCF world, this would be similar to ...
17
votes
1answer
5k views

C# - WCF - inter-process communication

What is the best WCF binding to use for inter-process communication? I have used WCF over local networks and it is amazing, and I'd like to use it for inter-process communication as well. I do not ...
36
votes
3answers
24k views

Obtaining client IP address in WCF 3.0

Apparently you can easily obtain a client IP address in WCF 3.5 but not in WCF 3.0. Anyone know how?
23
votes
3answers
28k views

Enable SSL for my WCF service

I have a WCF service that uses basicHttpbinding in development. Now in product we want to use SSL, what changes do I have to make to force SSL connections only?
10
votes
2answers
16k views

Passing FormsAuthentication cookie to a WCF service

I have a website that talks to a remote WCF web service. Both use the same custom FormsAuthentication Provider. I would like to authenticate with the WCF service impersonating the user currently ...
11
votes
3answers
17k views

How to call a WCF service using ksoap2 on android?

Here is my code import org.ksoap2.*; import org.ksoap2.serialization.*; import org.ksoap2.transport.*; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public ...
34
votes
3answers
45k views

Increasing the timeout value in a WCF service

How do I increase the default timeout to larger than 1 minute on a WCF service?
26
votes
3answers
23k views

Web Service vs WCF Service

What is the difference between them? When would I opt for one over the other?
6
votes
2answers
6k views

How to set Json.Net as the default serializer for WCF REST service

Is it possible to override the default WCF DataContractSerializer behaviour when Serialize/DeSerialize entities and use JSON.NET instead? I have the following service contract for handling the City ...
14
votes
2answers
21k views

WCF service configuration file question regarding <baseAddresses>

From what I've seen the tag is ignored when hosting a WCF service in IIS. I understand that when self-hosting this is required but is this harmful or even used when operating under IIS? ex. ...
8
votes
1answer
8k views

Calling WCF service by VBScript

There is a WCF service with configuration: <services> <service name="MyService" behaviorConfiguration="MyServiceBehavior"> <endpoint binding="basicHttpBinding" ...
8
votes
3answers
7k views

Error in WCF client consuming Axis 2 web service with WS-Security UsernameToken PasswordDigest authentication scheme

I have a WCF client connecting to a Java based Axis2 web service (outside my control). It is about to have WS-Security applied to it, and I need to fix the .NET client. However, I am struggling to ...
6
votes
3answers
1k views

How do modern implementations of Comet/Reverse AJAX work? Any stable C# WCF or ASP.NET implementations?

What is the correct way (or best) way to implement Comet, HTTP Push, or Reverse AJAX? What .NET implementations would you recommend?
2
votes
4answers
11k views

Using MediaElement to play video from Stream

Is it possible to use the WPF MediaElement to play streaming video from a System.IO.Stream object? The Stream object is being retrieved from a WCF service that stores the media files.

1 2 3 4 5 67