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)

1
vote
0answers
75 views
+50

IIS 7.5 handles RESTful POST differently than other servers

I make a RESTful POST to an IIS 7.5 server and it cannot see the body: HttpClient httpclient = new DefaultHttpClient(); ResponseHandler<String> responseHandler = new ...
0
votes
2answers
58 views
+50

Do I need to configure wcf with transport security if IIS is setup to negotiate certificates?

Even with all of the documentation available instructing me how to configure WCF to allow certificates over SSL, I'm having a hard time discerning where IIS' responsibilities lie and where the WCF's ...
11
votes
2answers
205 views
+50

WCF “Self-Hosted” application becomes unresponsive

We have a C# (.Net 4.0) console application that "self hosts" two WCFs services: one used WSHttpBinding, and another uses BasicHttpBinding. Connecting to these services, we have two separate client ...
0
votes
0answers
23 views
+50

WCF REST JSON collection null with Twitter

I'm issuing the friends/ids call like so: GET /1.1/friends/ids.json?screen_name=blablabla HTTP/1.1 A valid response is issued: ...
0
votes
0answers
85 views
+50

How to get access token from ACS via SAML assertion?

I was able to retrieve, decode the security token (SWT) from various identity providers configured in ACS. Now I should be - according to example - able to do this: String headerValue = ...
3
votes
1answer
50 views
+50

WCF - Random client timeout when making multiple calls

I have a WPF client requesting data via WCF service hosted in IIS 7. The service method makes a call to a stored procedure (SQL 2012) using EF to retrieve some data. There's a lot of data to load so ...
0
votes
0answers
16 views
+200

WCF architecture so I can work with callbacks and authenticate against an AD

Sorry for the long title. This one is about WCF configuration and security. I have the following scenario: one server (IIS) N clients (WPF applications) web services to communicate between clients ...