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)

153
votes
8answers
44k 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 ...
133
votes
4answers
60k 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?
72
votes
12answers
12k 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()) { ...
67
votes
21answers
55k 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 ...
57
votes
3answers
33k 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 ...
57
votes
15answers
8k 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 ...
52
votes
10answers
3k 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 ...
46
votes
3answers
20k views

WCF - How do I return clean JSON?

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 ...
46
votes
5answers
27k 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 ...
46
votes
3answers
31k 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 ...
44
votes
3answers
5k 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 ...
41
votes
8answers
6k 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?
36
votes
6answers
24k 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?
35
votes
13answers
29k 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 ...
32
votes
7answers
2k 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 = ...
31
votes
5answers
26k 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 ...
30
votes
4answers
4k 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 ...
29
votes
4answers
6k 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 ...
28
votes
14answers
49k 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. ...
28
votes
8answers
15k 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 ...
27
votes
4answers
29k 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" ...
27
votes
6answers
28k 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), ...
27
votes
9answers
5k 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 ...
27
votes
9answers
19k 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 ...
26
votes
4answers
12k views

User/Pass Authentication using RESTful WCF & Windows Forms

What is the best approach to implementing authorisation/authentication for a Windows Forms app talking to an IIS-hosted RESTful WCF Service? The reason I ask is I am very confused, after sifting ...
25
votes
3answers
9k views

WCF vs ASMX web service

I am totally confused between WCF and ASMX web service. I have used lot of web service in earlier stage and now there is new thing introduced WCF. I can still create WCF that function as a web ...
25
votes
8answers
16k 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 ...
25
votes
8answers
6k views

WCF book recommendations [closed]

Which WCF book(s) would you recommend? (It is touched on in other questions, but not directly...)
25
votes
2answers
6k 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: ...
24
votes
1answer
498 views

Using a shared cache in a Web farm environment for detecting replay attacks in WCF

I'm trying to figure out how to implement a replay attack detection mechanism with WCF in a web farm scenario. WCF provides such detection mechanism by using a nonce cache. Correct me if I'm wrong, ...
24
votes
4answers
14k views

Basic Authentication with WCF REST service to something other than windows accounts?

Is there a clean way to expose a WCF REST service that requires basic authentication, but where we handle the actual validation of the username/password ourselves? It seems that when you tell WCF in ...
24
votes
3answers
18k 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 ...
24
votes
4answers
17k views

ASP.NET MVC and WCF

I'm working my way into MVC at the moment, but on my "To learn at some point" list, I also have WCF. I just wonder if WCF is something that should/could be used in an MVC Application or not? The ...
24
votes
8answers
23k 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 ...
23
votes
2answers
9k 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 ...
23
votes
6answers
19k views

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

I have asked this question in another thread : My question I have misunderstood the task, basically I need to create a server based on this WSDL file. How can I achieve this ? Thank you.
23
votes
6answers
21k 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 ...
23
votes
6answers
10k views

C# WCF: WCF stops responding after about 10 or so calls (throttling)

I have a WCF Service and an application with a Service Reference to it, and with the application I have a loop and in each iteration it's making a call to a method in this wcf web-service. The ...
23
votes
7answers
14k views

Run WCF ServiceHost with multiple contracts

Running a ServiceHost with a single contract is working fine like this: servicehost = new ServiceHost(typeof(MyService1)); servicehost.AddServiceEndpoint(typeof(IMyService1), new NetTcpBinding(), ...
22
votes
17answers
24k 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 ...
22
votes
5answers
8k 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 ...
22
votes
8answers
13k 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 ...
22
votes
2answers
1k views

WCF Security - A list of what I dont understand

I'm going around in circles with regards to WCF and security so i'm just going to shove a load of questions here and hope someone can help me gain a clear picture. Can someone please give me a ...
22
votes
15answers
2k views

Windows Mobile Development - Where to begin?

Okay, I will shortly be starting down the path of windows mobile development. I know nothing about the subject really and I am looking for people with experience to let me know of any gottchas you may ...
22
votes
5answers
5k views

How to remove thie “.svc” extension in RESTful WCF service?

In my knowledge, the RESTful WCF still has ".svc" in its URL. For example, if the service interface is like [OperationContract] [WebGet(UriTemplate = "/Value/{value}")] string GetDataStr(string ...
21
votes
2answers
40k 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 ...
21
votes
3answers
22k 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. ...
21
votes
5answers
5k 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 ...
20
votes
3answers
3k 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 ...
20
votes
8answers
1k views

What am I missing about WCF?

I've been developing in MS technologies for longer than I care to remember at this stage. When .NET arrived on the scene I thought they hit the nail on the head and with each iteration and version I ...

1 2 3 4 5 380