Tagged Questions
The wcf-binding tag has no wiki summary.
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
...
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 ...
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. ...
14
votes
3answers
34k 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 ...
13
votes
3answers
14k views
WCF - net.pipe vs. net.tcp vs. http Bindings
I'm new to WCF and would like to know the differences/advantages/limitations/etc of each of the following bindings:
net.pipe
net.tcp
http
Supporting scenarios on when to use each binding and other ...
13
votes
2answers
5k views
How to get the IP address of a WCF remote endpoint?
Is there a way to get the remote IP Address of a WCF connection?
I guess the reason why it's not built-in into the WCF framework is that WCF can work with non TCP/IP bindings, so the IP Address is ...
13
votes
5answers
34k views
WCF error: The caller was not authenticated by the service
I am trying to access my WCF service on a server from my client console application for testing. I am getting the following error:
The caller was not authenticated by
the service
I am using ...
12
votes
2answers
7k views
Is it possible to make the WcfTestClient work for custom transport channels?
Goal
I would like to be able to both host and connect to a vanilla sockets server via WCF, within the hosting framework I am devising. I want to be able to use WCF to codify the transport and ...
11
votes
1answer
4k 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.
11
votes
3answers
7k views
WCF Bindings - so many! How do I choose one?
We have an R Server
(R is a programming language used in statistical analysis) that basically takes a script and a csv file, processes some data and returns results as text.
I need to write a ...
10
votes
2answers
465 views
WCF Discovery .NET 4: Problem with config / programmatically definition
i have a discovery enabled WCF service and now i want to connect the client to it.
Problem: When i use the udp endpoint ( 1. ) and try to programmatically discover the service, it works... When i use ...
10
votes
1answer
5k views
XDocument.Descendants() not returning any elements
I'm trying to bind a Silverlight DataGrid to the results of a WCF service call. I was not seeing the data displayed in the grid, so when I ran through the debugger, I notice that ...
9
votes
1answer
11k views
BasicHttpBinding vs wsHttpBinding vs WebHttpBinding [closed]
I need a comparisons chart of above 3 mentioned bindings in terms of features and performance. i have seen some between ws and basic but i need web as well.
Please if anyone has link to any article ...
9
votes
3answers
12k views
WCF maxReceivedMessageSize not being read from config
I have a the following server side app.config for a WCF service:
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="default" ...
8
votes
2answers
6k views
WCF: using streaming with Message Contracts
I am trying to use the WCF streaming with Message Contracts, because I need additional parameters beside the stream itself.
Basically I am creating a file upload and download service, with some ...
7
votes
2answers
442 views
Cannot activate binary http binding on server
I'm trying to use binary message encoding in a WCF service, following the many examples on this site.
On the server I have the binding declared as so:
<customBinding>
<binding ...
7
votes
2answers
575 views
Calling a WCF service without generating an Assembly
I am trying to write some code in C# that will call a WCF service on the fly by importing the WSDL, examining it and then making calls to it dynamically.
The service I am calling can change from time ...
7
votes
7answers
7k views
WCF over SSL - 404 error
Okay, I must be missing something utterly simple here, because I've been googling for days, and looking at dozens of answers there, and here on SO, and i just CANNOT get this to work, no matter what ...
7
votes
3answers
3k views
Using protobuf in WCF services
My asp.net web pages are on IIS web server and it communicates with WCF services(sitting on windows 2008 app server) using basic HTTP binding.
The performance of my wcf services doesnt seem to be that ...
6
votes
1answer
96 views
How can I prevent VS2010 to create a new binding each time I update a service reference?
I'm developing a Winforms Client application with a WCF Service in C # 3.5 and Visual Studio 2010.
Every time I use "Update Service Reference" in the IDE, considering I have already a working binding ...
6
votes
3answers
639 views
How do I modify WCF to process messages in a different (non SOAP) format?
I am working with WCF to exchange messages with a third party company. The messages need to be sent and received in an envelope that matches the ebXML specification. Ideally I would like to use as ...
6
votes
3answers
2k views
WCF, net.tcp, and ASP.NET development server
I'm setting up a net.tcp WCF service using instructions here: http://blogs.msdn.com/swiss_dpe_team/archive/2008/02/08/iis-7-support-for-non-http-protocols.aspx
One of the steps says to do the ...
6
votes
2answers
2k views
basicHttpBinding vs wsHttpBinding
In a WCF endpoint, what is the difference between basicHttpBinding and wsHttpBinding? When should each be used?
6
votes
3answers
7k views
Consuming a WCF WsHttpBinding WebService in Java
I'm trying to get a Java Client to communicate with a WCF wshttpbinding WebService. But I am unable to do so. The call either hangs, or I get "musunderstoodheader expcetions".
My Web Service is just ...
5
votes
2answers
63 views
WCF in binary legacy environment
We are writing C# client which should connect to old legacy servers. To be extensible in the future we would like to utilize WCF framework.
The old legacy protocol is proprietary & binary one. To ...
5
votes
1answer
190 views
WCF and Silverlight 4.0 in N-Tier App : authenticate calls to the service
I have an N-Tier app which built as follows:
On the server side in IIS7 is sitting an ASP.Net Application that exposes methods on a WCF Service. Those methods talk to the DB using EF4. Clients written ...
5
votes
3answers
484 views
WCF client with proxy settings set to “Use automatic configuration script”
I'm currently developing an application that needs to communicate with a webservice on the internet. Internet explorer is until know the only application that is connecting to the internet through a ...
5
votes
2answers
4k views
WCF change endpoint address at runtime
I have my first WCF example working. I have the host on a website which have many bindings. Because of this, I have added this to my web.config.
<serviceHostingEnvironment ...
5
votes
3answers
272 views
How to hide my WCF service
I have a WCF service embedded into windows service. It's bind to localhost but it also accepts connection from this kind of URL - "http://ip:port/ServiceName", how can i hide it from others and allow ...
5
votes
2answers
659 views
How to add net.tcp to the “Enabled protocols” by using a WIX 3.5 project/setup?
We have a few MSI packages (generated by WIX) that install WCF services. Most of these services need net.tcp for their endpoint bindings.
I'd like to make our deployment life easier and automate the ...
5
votes
4answers
5k views
netTcpBinding or wsHttpBinding
I have a WCF Service hosted as Windows Service and client is an ASP.Net application consuming WCF Service methods.
In process of implementing security, I am confused over which among ...
5
votes
3answers
12k views
WCF Service netTCPbinding
I want to use netTCPbinding, so I've changed my web config as below. I'm experiencing this error:
Could not find a base address that matches scheme net.tcp for the endpoint with binding ...
5
votes
4answers
4k views
WCF Multiple Bindings
I'm getting the following error when I try multiple end points..
System.ServiceModel.AddressAlreadyInUseException: The TransportManager failed to listen on the supplied URI using the ...
5
votes
2answers
7k views
What is the maximum size that maxReceivedMessageSize can be set to for a NetNamedPipeBinding?
I noticed that 2147483647 seems to be a popular choice for maxReceivedMessageSize but is this the limit?
5
votes
2answers
9k views
WCF: Net.TCP multiple bindings, same port, different IP Addresses
I've run into a problem. I'm a little new at WCF so any help would be greatly appreaciated.
Here's my code:
public static void StartHosts()
{
try
{
// Create a new ...
5
votes
4answers
5k views
WCF Binding Performance
I am using basic HTTP binding.
Does anybody know which is the best binding in terms of performance as thats the key issue for our site?
5
votes
3answers
487 views
Logic first, WCF security later?
I'm working on a WCF service that will be communicating over net.tcp to n instances of a client app (that is being developed by another programmer in my office).
At the moment I am using net.tcp ...
4
votes
1answer
107 views
WCF SOAP Action
I am rewriting a legacy asp.net web service in WCF 4.0. My obvious end-goal would be that the new endpoints would exactly match the legacy ones. The problem i encountered is that in the legacy web ...
4
votes
1answer
105 views
Web service with that provides two interfaces is causing error in WPF application
I have a web service that provides two interfaces. One is "MyAppNameData" and the other is "MyAppNameSync". I am adding two service references to a WPF application. In the code, when I use ...
4
votes
2answers
235 views
SSL and WCF Transport Security
I have an IIS-hosted WCF service which is configured to use basicHttpBinding with transport security.
I have configured IIS with a certificate and I'm using an https endpoint to call the service.
...
4
votes
1answer
836 views
How can I combine the WCF services config for both http and https in one web.config?
I spent a lot of time figuring out how to configure my WCF services so that they would work for https in the production environment.
Basically, I needed to do this:
<behaviors>
...
4
votes
5answers
2k 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 ...
4
votes
2answers
262 views
WCF 3.5 and UDP
Is it possible to make udp binding in wcf 3.5 or it's only possible in .net 4.0 ?
If it's possible in .net 3.5 could somebody give me an example please ?
thanks
4
votes
4answers
510 views
WCF Service Communication Exception Due to Parameter Size
I've got a WCF Web MEthod that takes in an XElement object as a parameter. For one of my XML files (sized at 600KB or so) this works just fine, however, for this bigger XML file (about 5MB) I get a ...
4
votes
2answers
402 views
ASP.NET website -> WCF service -> WCF service, with impersonation all the way?
In short my scenario is like so:
The user triggers an action in the web browser, which causes an Ajax call to a web service in the web server (server A).
The web server issues a call to a WCF ...
4
votes
1answer
2k views
WCF service fails to start when more than one service is available
I am running a WCF service from inside a exe (for debugging, it will be moved to the windows service when deployed) I got one service running fine inside of it however when I run a second service I ...
4
votes
1answer
758 views
Configuring both webHTTP and NetHTTP bindings over SSL in WCF on Azure
We would like to expose our WCF services over REST and also over TCP securing them both with SSL. We have a valid SSL uploaded to Azure and the proper mapping setup so that going to ...
4
votes
3answers
762 views
Serial port communication using WCF?
Are there any bindings to communicate on Serial port using WCF?
4
votes
1answer
4k views
WCF IIS hosted service multiple Service Contracts implemented by a single service - how do I share uri between endpoints via config
I have a set of Service Contracts which split up my service interface into chunks of related functionality. I am currently implementing all contracts using a single service class (may want to split ...
4
votes
1answer
7k views
How to increase MaxStringContentLength on the server side for binary Http binding
I recently converted some Silverlight 3 WCF services to use the new binary http bindings. Long strings are often sent over to the server for deserialization in these services and I previously used ...