Windows Communication Foundation is a part of the .NET Framework that provides a unified programming model for rapidly building service-oriented applications.
14
votes
1answer
8k views
What are the impacts of setting establishSecurityContext=“False” if i use https?
My WFC service uses wsHttpBinding configured with:
<security mode="TransportWithMessageCredential">
<message establishSecurityContext="True" clientCredentialType="UserName"/>
...
11
votes
1answer
8k views
Calling a webservice that uses ISO-8859-1 encoding from WCF
I am trying to call a webservice using WCF that uses the following encoding:
<?xml version="1.0" encoding="ISO-8859-1" ?>
I cannot change the encoding for this webservice. I have generated ...
7
votes
4answers
30k views
How to consume WCF web service through URL at run time?
I want to access all the methods exposed in the service through the URL.
if suppose the URL will be :
http://localhost/MyService/MyService.svc
How can I access methods:
if suppose I have a ...
6
votes
3answers
11k views
IIS 7.5, Web Service and HTTP 405 error
I have a web service which I host on my machine. I use Windows 7 and IIS 7.5.
Problem: When the client tries to consume the web service, he/she gets a HTTP 405 error.
In the log file of IIS, I can ...
5
votes
4answers
7k views
Best way to support “application/x-www-form-urlencoded” post data with WCF?
I'm building a WCF service based on a W3C specification which defines a RESTful web service endpoint that accepts "application/x-www-form-urlencoded" post data. WCF doesn't support this type of ...
5
votes
3answers
9k views
WCF: Configuring Known Types
I want to know as to how to configure known types in WCF. For example, I have a Person class and an Employee class. The Employee class is a sublass of the Person class. Both class are marked with a ...
3
votes
2answers
2k views
How can I prevent BufferManager / PooledBufferManager in my WCF client app from wasting memory?
Analyzing a WCF client application (that I did not write and still do not know too much about) that talks to a bunch of services via SOAP and after running for a couple of days will throw an ...
3
votes
2answers
2k views
Host WCF in MVC2 Site
We've got a very large, complex MVC2 website. We want to add an API for some internal tools and decided to use WCF.
Ideally, we want MVC itself to host the WCF service. Reasons include:
Although ...
1
vote
2answers
392 views
What is “Outbound Transaction” in layman terms?
We are going to build WCF services based on SOA. During a meeting recently, client explained the new system environment. He used the word “outbound transaction”. Due to time limitations, I could not ...
0
votes
1answer
215 views
Understanding Data Outside Of Service : SOA
Note: Data outside of service means the message returned by a service and consumed by the client.
I have a service named LastBuyer Service. This will return the last buyer name of a book when I input ...
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 ...
22
votes
4answers
8k views
How to handle WCF exceptions (consolidated list with code)
I'm attempting to extend this answer on SO to make a WCF client retry on transient network failures and handle other situations that require a retry such as authentication expiration.
Question:
What ...
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 ...
22
votes
5answers
6k views
How does a WCF server inform a WCF client about changes? (Better solution then simple polling, e.g. Comet or long polling)
see also "WCF push to client through
firewall"
I need to have a WCF client that connect to a WCF server, then when some of the data changes on the server the clients need to update its display.
...
21
votes
2answers
10k views
WCF GZip Compression Request/Response Processing
How do I get a WCF client to process server responses which have been GZipped or Deflated by IIS?
On IIS, I've followed the instructions here on how to make IIS 6 gzip all responses (where the ...
26
votes
2answers
16k views
How can I configure WCF to use x509 certificates over the internet?
I need to use an x509 certificate to get secure message level authentication from a rich client via the internet to a secure WCF Web Service.
Specifically, I am looking for a working step-by-step ...
21
votes
1answer
20k views
How to programmatically connect a client to a WCF service?
I'm trying to connect an application (the client) to an exposed WCF service, but not through the application configuration file, but in code.
How should I go about doing this?
Thanks.
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 ...
30
votes
7answers
23k views
What does this WCF error mean: “Custom tool warning: Cannot import wsdl:portType”
I created a WCF service library project in my solution, and have service references to this. I use the services from a class library, so I have references from my WPF application project in addition ...
30
votes
7answers
24k 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(), ...
28
votes
7answers
33k views
CryptographicException 'Keyset does not exist', but only through WCF
I have some code that makes a call to a third party web service that is secured using X.509 certification.
If I call the code directly (using a unit test) it works without any problems.
When ...
13
votes
2answers
4k views
Where to store data for current WCF call? Is ThreadStatic safe?
While my service executes, many classes will need to access User.Current (that is my own User class). Can I safely store _currentUser in a [ThreadStatic] variable? Does WCF reuse its threads? If that ...
12
votes
5answers
5k views
iPhone web service calls to WCF Service with Certificate Authentication
We are a .Net shop that has standardized on WCF Services. We are in the processs of developing an iPhone application that needs to make secure web services calls to obtain data for the app. To ensure ...
20
votes
4answers
15k views
Making a WCF Web Service work with GET requests
Background
I have created ASMX web services in the past and have been able to access the service from the web browser and Ajax GET requests using the address convention: ...
6
votes
3answers
8k views
Adding basic HTTP auth to a WCF REST service
I have a WCF HTTP REST Service and I tie into it with an HTTP client in a different programming language who writes its own custom HTTP.
I would like to add WWW-Authenticate basic authentication ...
25
votes
8answers
18k views
Caching in WCF
I am building a WCF service, I need to store reference data in cache which i will look up every time i receive input from the method... What is the right way to do this? (I would also like to define a ...
14
votes
3answers
20k views
Why does my C# client, POSTing to my WCF REST service, return (400) Bad Request?
I'm trying to send a POST request to a simple WCF service I wrote, but I keep getting a 400 Bad Request. I'm trying to send JSON data to the service. Can anyone spot what I'm doing wrong? :-)
This is ...
8
votes
5answers
6k views
Returning Error Details from AJAX-Enabled WCF Service
Short Version: Is there a/what is the suggested way to return error details to the client when an exception is thrown in an AJAX-Enabled WCF Service (aside from just throwing the gates open and ...
17
votes
4answers
29k views
How can I set an HTTP Proxy (WebProxy) on a WCF client-side Service proxy?
How can I set the HTTP proxy programmatically, on a WCF client, without using the default proxy?
Proxies, proxies, proxies.
According to the WCF model of development, I generate client-side ...
4
votes
3answers
5k views
how to avoid cross domain policy in jquery ajax for consuming wcf service?
how to avoid cross domain policy in jquery ajax for consuming wcf service??
What chages do i need to do in web.config for cross domain policy?
27
votes
7answers
47k views
WCF - Windows authentication - Security settings require Anonymous
I am struggling hard with getting WCF service running on IIS on our server. After deployment I end up with an error message:
Security settings for this service require 'Anonymous' Authentication but ...
11
votes
2answers
13k views
WCF service The maximum array length quota (16384) has been exceeded
I have a wsf service and a client application. While trying to communicate the client and the service I've gotten the following message:
"The formatter threw an exception while trying to deserialize ...
9
votes
2answers
4k views
CORS Support within WCF REST Services
I have a WCF REST service hosted within a Windows service and I would like to send the Access-Control-Allow-Origin HTTP header (defined as part of CORS) with every response.
My attempted solution ...
9
votes
2answers
25k views
Expose a WCF Service through a Named Pipes binding
Intro:
I successfully implemented a WCF Service hosted in a Windows Service a few days ago. The community here at StackOverflow helped me with the WSDL exposure here. I thank you once again. However ...
6
votes
2answers
5k views
WCF and interfaces on data contracts
While creating the WCF proxy using svcutil, is it possible to include the interfaces as well from which the data contracts inherit, e.g.:
public class SomeType: ISometype
{
public string Name { ...
2
votes
2answers
2k views
Connecting via named pipe from windows service (session#0) to desktop app (session #1)
Given:
- the application - desktop GUI (WPF) .NET app
- windows service watching for application (.NET also)
The windows service periodically "pings" application to get sure it's healthy (and if ...
11
votes
2answers
10k views
IIS7 - (413) Request Entity Too Large | uploadReadAheadSize
I've written a WCF service with .NET 4.0, which is hosted on my Windows 7 x64 Ultimate system with IIS 7.5.
One of the service methods has an 'object' as argument and I'm trying to send a byte[] which ...
9
votes
4answers
3k views
What are the benefits of using WCF over ASMX web services?
What are the benefits of using WCF over ASMX web services?
Any pointers?
4
votes
3answers
1k views
Is Transport Level Security Necessary When Using Message Level Security in WCF?
I'm still in the process of trying to better understand WCF security.
One question that I can't seem to get a grip on is… if message level security is used, then the entire message can be ...
9
votes
4answers
32k views
HTTP Bad Request error when requesting a WCF service contract
I have a WCF service with the following configuration:
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="MetadataEnabled">
...
6
votes
1answer
4k views
WSDL-first approach: How to specify different names for wsdl:port and wsdl:binding?
I am following WSDL-first (provided by our client) approach for developing WCF service but WSDLs generated from my wcf service is slightly different from WSDL provided to me by our client and because ...
4
votes
2answers
3k views
Make ASP.NET WCF convert dictionary to JSON, omitting “Key” & “Value” tags
Here's my dilemma. I'm using a RESTful ASP.NET service, trying to get a function to return a JSON string in this format:
{"Test1Key":"Test1Value","Test2Key":"Test2Value","Test3Key":"Test3Value"}
...
15
votes
5answers
13k views
WCF application start event
What is the best way to get notified when a WCF service is first started?
Is there something similar to the Application_Start method in the Global.asax for an ASP.NET application?
6
votes
2answers
23k views
The content type text/html; charset=UTF-8 of the response message does not match the content type of the binding (text/xml; charset=utf-8)
I created WCF service and testing WCF client using stand alone application. I was able to view this service using Internet Explorer also able to view in Visual studio service references. Here is the ...
4
votes
3answers
3k views
Shared data object between WCF service and Silverlight app
I have a custom data entity (data object) that is exposed via a WCF webservice. The WCF service lives in a web application. I then have a Silverlight application with a service reference to that WCF ...
3
votes
2answers
687 views
Alternatives for Translation Layer in SOA: WCF
Services are not object-oriented. Suppose I have a OOAD based design. We can convert it into DTO (that does not have any behavior) using a Translation Layer. But this can cause be very big increase in ...
3
votes
3answers
7k views
how to enable WCF Session with wsHttpBidning with Transport only Security
I have a WCF Service currently deployed with basicHttpBindings and SSL enabled. But now i need to enable wcf sessions(not asp sessions) so i moved service to wsHttpBidnings but sessions are not ...
2
votes
1answer
566 views
iPhone application crashes with Mprotect failed error (MonoTouch)
I have a problem with my iPhone application developed with MonoTouch.
I am developing an application that contacts a WCF Service, and when the WCF Service answer back, I update an UITableView with the ...
1
vote
2answers
1k views
One WCF service – two clients; One client does not work
I have one WCF service and two console app clients.
Service: The service code is created from a wsdl contact using WCSF Blue tool.
Client 1: This client is using wsdl that is obtained by browsing ...
1
vote
2answers
888 views
wcf conditional compression
I recently plugged in a custom encoder (uses binary encoder to do the actual encoding and Gzip compresser to compress the byte array). It works fine. The issue now is for small message size it ...

