Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

73
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()) { ...
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
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 ...
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.
7
votes
2answers
2k views

WCF Client Configuration: how can I check if endpoint is in config file, and fallback to code if not?

Looking to make a Client that sends serialized Message objects back to a server via WCF. To make things easy for the end-developer (different departments) would be best that they didn't need to know ...
6
votes
3answers
4k views

How can I set the maxItemsInObjectGraph property programmatically from a Silverlight Application?

I have a Silverlight 3.0 application that is using a WCF service to communicate with the database, and when I have large amounts of data being returned from the service methods I get Service Not Found ...
6
votes
1answer
955 views

WCF Service Client Lifetime

I have a WPF appliction that uses WCF services to make calls to the server. I use this property in my code to access the service private static IProjectWcfService ProjectService { get { ...
6
votes
1answer
9k views

How to add custom soap headers in wcf?

Can I add Custom SOAP header in WCF incomming/outgoing messages in basicHttpBinding, like we can add custome authenticatino header in ASMX web services? Those custome SOAP header should be accessble ...
6
votes
3answers
2k views

What is the proper life-cycle of a WCF service client proxy in Silverlight 3?

I'm finding mixed answers to my question out in the web. To elaborate on the question: Should I instantiate a service client proxy once per asynchronous invocation, or once per Silverlight app? ...
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
2answers
861 views

Do I need to expose a constructor in a WCF DataContract for it to work during object instantiation on the client?

I have a class in a WCF service, lets call it A. A is a data contract, which contains as one of its DataMembers a collection of another custom object B. To avoid Null Reference problems on the client ...
5
votes
1answer
9k views

There was no endpoint listening at <URI> that could accept the message. This is often caused by an incorrect address or SOAP action

I have two WCF clients consuming a 3rd party web service. These two clients execute the same method call. In the one case it works every time, in the other I get the "There was no endpoint listening ...
5
votes
2answers
8k views

Create WCF client programmatically

I have a website with a Silverlight-enabled WCF service. The service works fine, and I can browse to the WSDL page in the browser with no problems. Now, I am trying to create a client in a DLL. I ...
5
votes
7answers
4k views

Where to trap failed connection on WCF calling class?

I'm trying to write a class that encapsulates WCF calls (the client is Silverlight, if it matters). It all works swimmingly, but I'm not sure how to trap a connection failure, as if the server won't ...
5
votes
4answers
2k views

Two WCF services with different contracts but same business objects

For example I have two services hosted in IIS. [ServiceContract] public interface IDeviceService { [OperationContract] DeviceCollection GetAllDevices(Customer customer); } ...
4
votes
1answer
68 views

Handling WCF events in another process

I have a non-serializable object that I would like to access from a separate process. I've looked around and it seems the only viable option is to use WCF but I'm not sure how to do this as I'm new to ...
4
votes
2answers
694 views

How does Node.js work from a network / TCP / HTTP connection perspective? Can WCF emulate this?

My understanding is that node.js is a python app that is geared towards the Linux world. Everyone seems to be quite happy with it's speed and ability to handle many concurrent connections. I'm ...
4
votes
1answer
182 views

Proxy class not having equals method WCF

I have a class as DataContract in my webservice and it inherit from IEquatable. But my siverlight webservice generated proxy class does not have equals. Can any one tell me why this is happening and ...
4
votes
2answers
685 views

WCF Timeout issue?

I have a somewhat long-taking WCF-based process. WCF service runs in Azure if its of any help. The issue I believe has to do with timeouts: 1) Winforms client has the following .config setting in ...
4
votes
3answers
650 views

Can we upload a file size of 500MB using WCF Service?

I have written a WCF Service to upload a file. So far i am able to upload a file size of 300MB. When i tried further i am receiving an error mentioning "The underlying connection was closed: The ...
4
votes
1answer
6k views

WCF client endpoint identity - configuration question

I'm having a strange situation here. I got it working, but I don't understand why. Situation is as follows: There is a WCF service which my application (a website) has to call. The WCF service ...
4
votes
2answers
1k views

WCF, channel factory, and exceptions

Using vs2008, vb.net, C#, fw 3.5 I am consuming my service in my client Service is hosted in IIS Client(winforms MDI) is generated using svcutil using /l, /r, /ct, & /n switches Service and ...
4
votes
3answers
9k views

WCF - There was no endpoint listening at net.tcp://…/Querier.svc that could accept the message

WCF - There was no endpoint listening at net.tcp://myserver:9000/SearchQueryService/Querier.svc that could accept the message. I have the net.tcp protocol enabled on the IIS application Windows ...
4
votes
3answers
3k views

How to consume multiple WCF services from one client

I am still learning the whole WCF thing, so please bear with me here. What I have is two self hosted services created using C# and VS 2008: Service # 1 Adds two numbers and returns the result. ...
3
votes
2answers
48 views

Handling exceptions WPF Application with a WCF Service

I have a WCF Service that talks to the DB. All the operations go through the service. What is the best way to return an exception to the client(in this case WPF application). Lets say I have ...
3
votes
1answer
120 views

Preventing Http Redirect 307 with WCF Service

I am connecting to a WCF Service that does a re-direct to another Url. When I connect to the WCF Service at http://myserver-hp/testws. This in turn does a re-direct to the end point : ...
3
votes
1answer
227 views

Why do i get a signature over the certificate in my soap header

I need to communicate with a soap service that supports Soap1.1 en WS Security 1.0. I have put up some code in C# that communicates with this service, but it's returning an FaultException. One of the ...
3
votes
2answers
219 views

WCF TCP clients - basic guidelines on how to use them?

I've got a WCF service and want to connect to it using a TCP binding. This is all well and good, but how are you supposed to handle the clients? I've noticed that if you create a new client for each ...
3
votes
1answer
350 views

WCF Service Generated Proxy Class Exposing Function as ByRef Sub

I have a WCF Service exposing a single contract and operation: <ServiceContract(Namespace:="ImageSystem")> _ Public Interface IUploadService <OperationContract()> _ Function ...
3
votes
1answer
124 views

WCF and Queuing calls

Have been playing with WCF IIS & self hosted solution (i think i said that right). Basically, copies of the same codebase, hosted websites are talking to each other. When an event occurs, I need ...
3
votes
1answer
365 views

Loading the WCF configuration from different files on the client side

A common problem in WCF that many people face is the impossibility of loading the client configuration from different configuration files. This is a common scenario when the developer wants to ...
3
votes
3answers
176 views

Should the WCF service stay opened all the time?

I am creating a wcf service, my wcf service now is hosted in a console application as shown below PersonService = new ServiceHost(typeof(PersonService)); ...
3
votes
3answers
153 views

Converting type from a WCF service

I'm sure this must be a pretty common problem. I have two WCF services, that basically expose standard access and admin access to one larger service. There is a similar method Foo on each service. ...
3
votes
1answer
437 views

Client Cannot Connect to Self-Hosted WCF Service Started with no BaseAddress

I have created a service without giving the base address in the servicehost constructor. and added the endpoint to host by calling AddServiceEndpoint method. In the AddServiceEndpoint method i am ...
3
votes
2answers
355 views

How to set .NET Client webservice ClientRuntime.MaxFaultSize

I'm calling a java webservice that returns a type of FaultException that contains a list of errors. So the response message size is always large. In my c# (clr3.5) client I get the following error ...
3
votes
2answers
383 views

Is there an execution timeout for WCF operations marked as OneWay?

Does the OneWay operations in WCF service execute as long as the operation is complete? By my experiment, I think there is no timeout. I was able to run an operation for half an hour. (I closed after ...
3
votes
3answers
375 views

How to bind a WCF Http client to a specific outbound IPAddress before making the request

I want my request to go out through a specific IP Addresses. Is there a way to do that in WCF. The explanation of why I need this is a little long winded so i'd rather not get into that. Here is ...
3
votes
2answers
77 views

WCF Error Architecture

I am looking at implementing a Web Service API for our product. I have figured out how you go about the general architecture/fault handling within WCF. My question is a more general one of how to ...
3
votes
1answer
575 views

.NET Webservice Client: Auto-retry upon call failure

We have a .NET client calling a Java webservice using SSL. Sometimes the call fails due to poor connectivity (the .NET Client is a UI that is used from the weirdest locations). We would like to ...
3
votes
0answers
566 views

Consuming Java Webservice with Date and Time elements in WCF

I need to consume a Java Webservice which has elements of type Date and Time. Example from the wsdl: ... <xsd:element name="fromTime" nillable="true" type="xsd:time" /> <xsd:element ...
3
votes
2answers
939 views

WCF named pipe client notification/detection of pipe state change

I have two .NET C# windows forms applications that are communicating with each other via WCF named pipes. One of the applications is hosting a WCF service and the other is the client. Communication ...
3
votes
0answers
549 views

Minimal client which supports message-level security over the channel interface

I'm trying to build a minimal client for a WCF service, using the WSHttpBinding with SecurityMode: Message over a direct channel interface. My current code is very simple: EndpointIdentity i = ...
3
votes
4answers
14k 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 ...
3
votes
1answer
792 views

Does each authenticated WCF client connection need a CAL?

Just like the title says. Does each authenticated WCF client connection to a WCF server that you have developed need a windows CAL? ...
3
votes
2answers
2k views

Streaming Image files using Wcf

I want to send a large image to server through Wcf.I may pass it as a byte[].How can i do that.What is MTOM...where can i find a sample...?
3
votes
1answer
11k views

WCF Test Client error: Failed to Invoke the service

I'm getting an error when trying to use the WCF Test Client with my WCF service. Here is the service code: [ServiceContract] public interface IEmployeeService { [OperationContract(Name = ...
2
votes
2answers
184 views

Consuming non-wcf SOAP fault from WCF client (soap fault defined)

I have a non-wcf server that I call from WCF client and I need to gain access to registered soap fault in case server throws it (it contains a feedback I need for user). I used the example from How to ...
2
votes
1answer
146 views

WCF programmatically set endpoint address: No elements matching the key were found in the configuration element collection

I'm performing what I believed was a pretty basic task. We have an environment with multiple servers (DEV, TEST, PRODUCTION) and I'd like to programmatically change the service endpoint. To do this ...
2
votes
1answer
108 views

How to send list of objects to WCF service?

I'm building WCF service and I would like to accept List as a parameter to one of my method. Here is my code: [ServiceContract] public interface IProductService { [OperationContract] int ...
2
votes
0answers
103 views

How does the client pass parameter to a RESTful WCF Service

I am building a RESTful service as below with 2 methods (NOTE: I have the ASPNETCompatilibilityMode set to true): [WebInvoke] string TestMethodA() { string test = ...

1 2 3 4 5 11