Windows Communication Foundation is a part of the .NET Framework that provides a unified programming model for rapidly building service-oriented applications.
0
votes
0answers
3 views
WCF error at client - Hosted in Azure
I deployed a WCF service in Azure website.This can be easily accessed as below -
http://mytestwcfservice.azurewebsites.net/Service1.svc
This service as following functions -
A) ...
0
votes
0answers
10 views
Cannot find the X.509 certificate when running wcf service as LocalSystem
I have a problem using the X509Store.Certificates.Find function when running my wcf service as LocalSystem.
The StoreLocation is 'LocalMachine' and the StoreName is 'My'.
When running my service as ...
0
votes
1answer
12 views
WCF Service Reference
I created a WCF service that works perfectly when I go to http://localhost:52099/MyPagesWS.svc
Then I create a test MVC 4 project and add Service Reference with name ServiceReference1 to that url. ...
0
votes
0answers
16 views
Multiple WCF services & mexHttpBindings
I'm quite new in WCF services and I'm very confused as it comes to configurating endpoints and bindings.
I have 2 service contracts ICustomerService and IArticleService.
With my current configuration ...
0
votes
0answers
11 views
WCF dynamic proxy with NetNamedPipeBinding not being garbage collected
since I couldn't find the appropriate answer to my question in a couple hours, I'm posting it here.
I have a WPF/WCF application with shared interface (IService) library and dynamically created ...
0
votes
1answer
14 views
WCF: The maximum string content length quota (8192) has been exceeded. Readquota not working
We are having some trouble with the following error:
The maximum string content length quota (8192) has been exceeded while reading XML data. This quota may be increased by changing the ...
1
vote
1answer
17 views
How do i provide a Console-Hosted WCF Service on localhost to the outside via my domain?
I have got the following problem:
I host a WCF Service in a Console Application on a Server at localhost:72/service .
This Port is reachable from the outside via e.g. mydomain.org:62345/service .
...
0
votes
0answers
21 views
System.ServiceModel.CommunicationException: The server did not provide a meaningful reply
I hosted my WCF service in IIS and trying to verify through WCFtestclient on same machine. I am facing following issue:
-:Error Logs:-
The server did not provide a meaningful reply; this might ...
0
votes
0answers
7 views
How to Host a WCF Service in WAS?
I have a simple WCF service with small logic like
Add(int x, int y)
Sub(int x,int y)
Mul(int x,int y)
Div(int x,int y)
Now I hosted the service using IIS and Self Hosting(using ...
0
votes
0answers
29 views
Override the '65536' limit in a WCF endpoint
I know many have posted the solutions about this, I have tried all of solutions that were posted on the internet but those didn't work for me. In this scenario, I want to consume WCF service from a ...
0
votes
0answers
6 views
How to secure WCF Service with NetTCPRelayBinding
I have a WCF Service using nettcprelay binding and I want to make it secure.
I can not use transport level windows authentication as it is going to be access over internet with tcp protocol. If I am ...
0
votes
0answers
32 views
Object returned from WCF server is empty
In the client application, I input an item id, and the WCF server is supposed to return an object of type ItemDTO. However, when the reply is made, the object is empty.
ItemDTO itm = ...
0
votes
0answers
9 views
Mixing Service and Project References
I have a solution which has three layers: common, data, and business
The common layer defines objects that are be referenced and used by the other layers. The data layer contains data access code and ...
0
votes
0answers
31 views
Async WCF self hosted service
My objective is to implement an asynchronous self hosted WCF service which will run all requests in a single thread and make full use of the new C# 5 async features.
My server will be a Console app, ...
0
votes
0answers
8 views
How do I send API push message with .Net / Parse.com? (C#)
This is my application code for sending push message using PARSE
public static string ParseAuthenticate(string strUserName, string
{
var httpWebRequest = ...