3
votes
0answers
166 views
Custom bootstrapper executed from windows-service, can't find endpoint
We have a solution consisting of an windows-service and a console application which acts as a bootstrapper calling a WCF service for work items.
All of this works fine except for when the solution is ...
3
votes
0answers
396 views
Multiple parameters passed in WCF client don't work (even when WebMessageBodyStyle is Wrapped)
Hi fellow StackOverflowers,
I've got a WCF service wrtten C# that i can succesfully consume from things like jquery.
I want to be able to consume it by adding a web service reference in C# and ...
3
votes
0answers
683 views
adding prefix to serialized xml element
I have the following class which implements IXmlSerializable:
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", ...
3
votes
0answers
1k views
Adding a WCF Service to a project
I have a C# WinForms Project which contains some WCF service definition files which I have created in the project by adding standard classes (not using Add Item > WCF Service).
The project contains ...
2
votes
0answers
39 views
Issue with C# WCF Web Service accepting XML data
I have created a basic WCF REST web service in C#, and I need it to accept a content type of "application/xml" in an HTTP POST. The code I have will only work if the content type of the POST is ...
2
votes
0answers
46 views
How to measure WCF outbound connection count?
I have a wcf webservice and 5 client machines which connect to it remotely.
Unfortunately, I'm experiencing some communication errors on my client machines (Its a 3 tier application).
I would like ...
2
votes
0answers
29 views
WCF Requests Hanging Infinitely in IIS until Recycled
We have been dealing with a troublesome issue with WCF for quite some time, and it has gotten to a point that we are desperate to find a fix.
I have a WCF Service that is hit frequently, ...
2
votes
0answers
159 views
Uploading large files from android to c# WCF Rest Service
i am developing an android application where i can upload video,audio and images from android device to WCF REST Service. it is uploading a video file of 10MB size perfectly, but when i tried to ...
2
votes
0answers
36 views
Sequence of operation for buffered transport in WCF
Im trying to understand what actually happens when data is sent in buffered mode (the general steps). Specifically, if the data which is required to be sent is already stored in memory, does WCF ...
2
votes
0answers
44 views
How to kill all current client connections from ServiceHost?
I have a WCF service running in my server, and a couple of clients who consume the service after authenticating themselves against a custom UserNamePasswordValidator, just like the one described in ...
2
votes
0answers
58 views
Using DynamicProxy to Adapt an Interface to a Different Type
I have a custom generic class that is used call methods on a remote interface. This class has a single, overloaded method, Execute which accepts either an Action<T> or Func<T, TResult> to ...
2
votes
0answers
68 views
Entering values for a Byte array in WCF Test client
I'm trying to use the WCF test client to debug a web method and the method expects 2 byte arrays as part of its input.
For now, I've just been using the debugger and placing breakpoints right before ...
2
votes
0answers
55 views
WCF multiple instances of a service, 1 per thread
Im trying to set up a distributed computing environment using WCF. I have a large amount of data to process, which i have managed to split into discrete blocks.
Is it possible to create multiple ...
2
votes
0answers
90 views
WCF Service proxy creation error from remote server
I have a WCF Service hosted in a Windows XP machine with Visual Studio 2008. When I am trying to browse the wcf service from local machine it is behaving perfectly alright. When I am trying to add the ...
2
votes
0answers
113 views
WCF DataServices with multiple DbContexts and databases
This is my first time working with WCF DataServices but I was able to get a simple entity-backed service up and running by just referencing my DBContext when I implemented my service class, for ...