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)

294
votes
10answers
102k 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 ...
224
votes
5answers
101k 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?
163
votes
22answers
107k 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 ...
147
votes
17answers
28k 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()) { ...
140
votes
5answers
80k 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 ...
121
votes
8answers
73k 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 ...
104
votes
4answers
55k 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 ...
102
votes
3answers
62k 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 ...
95
votes
3answers
56k views

WCF Error: This collection already contains an address with scheme http

I built a web application containing a wcf service contract and a silverlight control which makes calls to that wcf service. On my development and test servers it works great. When I deploy to our ...
84
votes
32answers
71k views

The breakpoint will not currently be hit. No symbols have been loaded for this document

Ok, what i have: Visual Studio 2010 RC, W7 x64, started a new project type of Silverlight application. Hosting the Silverlight application in a ASP.NET Web Application Project. Silverlight Version ...
73
votes
6answers
71k views

The provided URI scheme 'https' is invalid; expected 'http'. Parameter name: via

I am trying to make a WCF service over basicHttpBinding to be used over https. Here's my web.config: <service behaviorConfiguration="MyServices.PingResultServiceBehavior" ...
71
votes
15answers
9k views

WCF: WTF! Does WCF raise the bar or just the complexity level?

I understand the value of the three-part service/host/client model offered by WCF. But is it just me or does it seem like WCF took something pretty direct and straightforward (the ASMX model) and made ...
67
votes
5answers
44k views

Difference between web reference and service reference?

What is the difference between web reference and service reference in WCF? Which is preferable in WCF?
66
votes
8answers
41k 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 ...
66
votes
9answers
7k views

WCF for the totally clueless [closed]

I've been hearing about WCF for a couple of years now, and I still don't get it. I understand that it's supposed to be a replacement for web services, remoting, MSMQ, and a few other things. The ...
64
votes
3answers
9k views

Is .NET Remoting really deprecated?

Everyone is saying how .NET Remoting is being replaced by WCF, but I'm wondering just how accurate that is. I haven't seen any official word that Remoting is being deprecated, and it seems to me there ...
63
votes
6answers
24k views

WCF ServiceHost access rights

I get the following error when going through the WCF tutorial. HTTP could not register URL http://+:8000/ServiceModelSamples/Service/. Your process does not have access rights to this namespace (see ...
54
votes
8answers
53k 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), ...
54
votes
1answer
555 views

Getting MSDN PeerChannel “SecureChat” running on Windows Server 2008 R2

I can only get this SDK sample of PeerChannel SecureChat to work in the following scenarios in a basic home network: Locally among instances running on the same machine, or Among Windows 7 machines ...
53
votes
1answer
12k views

What is WCF RIA services?

I hate MSDN's site for WCF RIA services. It does not say what it is, it only says what it does. It says what it can achieve but does not say why I need it. For example: "A common problem when ...
52
votes
8answers
7k views

Guid is all 0's (zeros)?

I'm testing out some WCF services that send objects with Guids back and forth. In my web app test code, I'm doing the following: var responseObject = proxy.CallService(new RequestObject { Data = ...
51
votes
9answers
35k 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 ...
51
votes
12answers
47k views

WCF timeout exception detailed investigation

We have an application that has a WCF service (*.svc) running on IIS7 and various clients querying the service. The server is running Win 2008 Server. The clients are running either Windows 2008 ...
48
votes
2answers
18k views

What is the difference between WCF Service application and WCF Service library?

I am developing WCF web service and I used WCF Service application to do that.Is that creating "WCF Service application" fulfill this requirement. and above all what are the advantage of creating ...
48
votes
5answers
48k 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 ...
47
votes
8answers
9k views

What is the difference between an asp.net web method and a wcf service?

I'm new to .Net and do not understand the difference. Can someone point me in the right direction?
46
votes
4answers
10k views

Exception Logging for WCF Services using ELMAH

We are using the excellent ELMAH to deal with unhandled exceptions in an ASP.NET 3.5 web application. This works extremely well for all of the site apart from WCF services which are being consumed ...
43
votes
5answers
44k 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 ...
43
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: ...
41
votes
17answers
77k views

WCF, Service attribute value in the ServiceHost directive could not be found

I'm trying to host my service with IIS 6 but I keep get this exception. Server Error in '/WebServices' Application. ...
41
votes
5answers
20k views

WCF ChannelFactory vs generating proxy

Just wondering under what circumstances would you prefer to generate a proxy from a WCF service when you can just invoke calls using the ChannelFactory? This way you wont have to generate a proxy and ...
39
votes
7answers
15k views

Sometimes adding a WCF Service Reference generates an empty reference.cs

Sometimes adding a WCF Service Reference generates an empty reference.cs and I cannot reference the service anywhere in the project. Has anyone encountered this?
39
votes
11answers
47k views

Service has zero application (non-infrastructure) endpoints

I recently created a WCF service (dll) and a service host (exe). I know my WCF service is working correctly since I am able to successfully add the service to WcfTestClient. However, I seem to be ...
39
votes
5answers
15k views

How can I return a custom HTTP status code from a WCF REST method?

If something goes wrong in a WCF REST call, such as the requested resource is not found, how can I play with the HTTP response code (setting it to something like HTTP 404, for example) in my ...
39
votes
8answers
38k views

ASP.NET MVC & Web Services

Does adding a Web Service to my ASP.NET MVC project break the whole concept of MVC? That Web Service (WCF) depends on the Model layer from my MVC project to communicate with the back-end (so it looks ...
39
votes
3answers
62k 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 ...
36
votes
3answers
23k 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?
36
votes
9answers
9k views

Managing complex Web.Config files between deployment environments

Does anyone know of any good tools/utilities for managing Web.Config files between different build/deployment environments? For example, I have a WCF project that in development I don't want to ...
35
votes
7answers
24k views

WCF: DataMember attribute on property vs. member

In wcf, what is the difference between applying the DataMember attribute on a property private int m_SomeValue; [DataMember] public int SomeValue { get {...} set {...} } instead of a ...
35
votes
4answers
14k views

Mvc 4 vs. Wcf Web Api

What are the pros and cons of using each technology? WCF Web Api is now merged into Asp.net Asp.net web api now supports self hosting. I still imagine if I want to expose multiple protocol schemas ...
35
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 ...
34
votes
6answers
37k views

How to get working path of a wcf application?

I want to get the working folder of a WCF application. How can I get it? If I try HttpContext.Current.Request.MapPath(HttpContext.Current.Request.ApplicationPath) I get a null reference exception ...
34
votes
2answers
57k views

How to make sure you don't get WCF Faulted state exception?

I am getting this exception: The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is in the Faulted state. The WCF service ...
34
votes
4answers
14k views

Why does WCF return myObject[] instead of List<T> like I was expecting?

I am returning a List from my WCF method. In my client code, it's return type shows as MyObject[]. I have to either use MyObject[], or IList, or IEnumerable... WCFClient myClient = new ...
34
votes
5answers
8k views

Best practice for large WCF service?

What is the best practice for writing a rather large wcf service, containing a lot of OperationContracts and DataContracts? How would I separate functional areas into several contracts, would it be ...
33
votes
7answers
29k views

What's the point of a DataContract in WCF?

VS.net creates a template when you create a WCF project. It adds a class to the iService1.cs file: // Use a data contract as illustrated in the sample below to // add composite types to service ...
33
votes
8answers
16k views

WCF book recommendations [closed]

Which WCF book(s) would you recommend? (It is touched on in other questions, but not directly...)
33
votes
3answers
43k 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?
31
votes
5answers
33k views

Sharing Enum with WCF Service

I have few different applications among which I'd like to share a C# enum. I can't quite figure out how to share an enum declaration between a regular application and a WCF service. Here's the ...
31
votes
3answers
26k views

How to use socket based client with WCF (net.tcp) service?

I have developed a WCF service that uses the net.tcp adapter and listens to a specific port. I want to connect to that service using a normal .net client that uses sockets to send data to the port and ...

1 2 3 4 5 598