0
votes
1answer
259 views
msmq with multiple endpoints and concurrent processing
I have built a WCF load balancer/router to conditionally route any one way service to multiple endpoints all using MSMQ bindings. I have also created a host that uses all the endp …
1
vote
3answers
138 views
accessing WCF service through URL
I have a WCF service ( Let's say WCFService1 ) is deployed on two remote machines. Since the same service is deployed on two different machines they have common interface and commo …
1
vote
3answers
206 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 wo …
0
votes
1answer
21 views
WCF Http to Tcp Proxy
I have a number of WCF services on my internal network which are hosted by IIS 6 using the basicHttpBinding. There are several existing applications which use these services by us …
1
vote
1answer
39 views
Can a WCF Service provide publish/subscribe activity to a Linux-based C++ client application?
I have a WCF service written to provide certain functionality to intranet-based clients. This is easy when a client is running Windows. I want to implement the same functionality …
1
vote
4answers
61 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 am …
0
votes
4answers
66 views
WCF Maximum Message Size Quota
I'm trying to call a WCF service (hosted in a Windows Service, not IIS) and am getting the following error:
The maximum message size quota for
incoming messages has been exce …
1
vote
1answer
24 views
How to avoid creation of xml tag for properties which has the value Nothing in WCF?
Suppose i have a service, where i give some input , and i am setting the properties of Name and Age as Nothing
Name and Age are nullable types.
Now as Name and Age are nothing i d …
0
votes
1answer
44 views
WCF Error: “The given key was not present in the dictionary.” on initializing client proxy
I am getting the following error: "The given key was not present in the dictionary."
The code is just trying to create a proxy client connection:
FileService.FileServiceClient s …
2
votes
2answers
2k views
WCF: Net.TCP multiple bindings, same port, different IP Addresses
Hi there, 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
{
…
0
votes
1answer
39 views
ASP.Net Membership provider in WCF (WebHttpBinding)
Hi,
I'm developping a WPF application that needs authentification. I want to use the client application services to use the ASP.Net Membership Provider (see this link if you don't …
1
vote
2answers
64 views
Profiling bandwidth and speed of different WCF bindings
I'm interested in knowing the different bandwidth and performance characteristics of the different WCF bindings (basicHttp, WSHttp, nettcp, etc.). Aside from writing a service and …
0
votes
1answer
13 views
WCF service parameters from Flash are empty
I have a Flash app that needs to save some data in a Database using a WCF web service. The WCF service is configured to use basicHttpBinding.
The flash app is being developed by s …
0
votes
0answers
14 views
Session Handling in WCF with a Java Client
Hi all
What's the best way to implement Session Handling in a WCF Service if the client that is using the service is not a WCF client but a Java client ?
Is it possible to use the …
0
votes
2answers
300 views
Silverlight serialization of a .NET Web service causes XML error
I've got this class being provided by a web service that is then being consumed by a Silverlight app (I don't know if that's relevant or not)
[Serializable]
public class Entry
{
…
