for questions about Windows Core Foundation (WCF) clients.
0
votes
0answers
9 views
This operation is not supported in the wcf test client Error
The error is on both the following methods in my interface:
[OperationContract]
IEnumerable<CommonLayer.Appointment> getUnverifiedAppointments();
[OperationContract]
...
0
votes
0answers
30 views
Anti-pattern WCF Client Proxy
I have inherited a project from an IT team that moved to a different project. I noticed right away that they had let the Entities objects bleed all the way to the MVC3 Views! I also have to take into ...
3
votes
2answers
113 views
Adding service reference to SOAP service does not generate async methods
in metro style app I want to add service reference (wikispaces). VS2012 properly discovers service:
Unfortunately, the generated Reference.cs do not provide any methods from service:
Why it ...
0
votes
0answers
114 views
Visual Studio 2010 Add Service Reference (WCF) “Proxy Auth” (407)
I'm having an issue adding a service reference to a sample client project using .NET 4.0, VS2010 and WCF.
The WCF service is deployed to IIS (6 at present) and I can browse the WSDL exposed by the ...
0
votes
0answers
50 views
Requiring SSL with WCF causes “The HTTP request was forbidden with client authentication scheme 'Anonymous'” error?
We have a WCF service hosted in IIS that a client dll is trying to access. The service is bound in IIS to use HTTPS and is set to ignore client certificates, which works just fine, but requiring SSL ...
0
votes
1answer
27 views
Trouble with endpoints of my wcf
My WCF service web.config.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<connectionStrings>
<add name="ZesdaagseResultsContext" connectionString="Data ...
0
votes
0answers
21 views
Running example code result error application not support wcf test client it uses DataAcessManager.InventoryProject?
I am new to WCF. I tried this example code and receiving the error, mentioned in title on AddNewProject(). I found this method in this service application:
[OperationContract]
void ...
3
votes
0answers
88 views
+100
ChannelFactory bug with dynamic arguments
This question is related to Bug in the dynamic language runtime in combination with IIS 7.5
ChannelFactory hangs if I provide it with a correctly typed dynamic object.
dynamic src = "MSFT";
var ...
1
vote
0answers
159 views
WCF Client Certificate set in App.Config
I'm working with a vendor who exposes a Java web service. I've created a WCF client to consume their service, but I'm having some problems with the client cert. The vendor is claiming that our ...
4
votes
4answers
296 views
embed app config into c# code in wcf
i have a client program that connect to my wcf service. i want to embed app config to C# code till users can not change or even see app.config .
but i cannot bring these two config setting to C# ...
0
votes
2answers
367 views
Windows Hosted WCF Service Returns 400 Bad Request Invalid Hostname To JAVA Client
As the title indicates I have a WCF Service hosted in a Windows service. When I use the Visual Studio WCFTestClient it the GetVersion() Method (which just returns a string) works fine. When I attempt ...
-1
votes
1answer
69 views
Unable to create an object of com components written in unmanaged code from .Net wcf service
I am writing a Wcf Service library and want to load an unmanaged com dll. The com dll threaded model is not set so its a Single-threaded legacy component that runs only in the main STA threading model
...
0
votes
1answer
257 views
Force WCF to create an xml namespace alias in client proxy
I used the Add Service Reference feature to create a proxy to an external web service.
By default, the WCF client is producing SOAP messages where the message body has namespace decorations that look ...
0
votes
1answer
208 views
BancBox SOAP API getClient - call fails using WCF client infrastructure
I apologize in advance if this post feels too long. But 1) this is my first post ever and 2) I have really been over the river and through the woods trying to figure this out.
The Add Service ...
0
votes
0answers
87 views
How do I handle a SOAP response that is plain text and not xml?
I have to communicate with a third party that wants a SOAP 1.1 message with a signed body. I was given xsd's but no wsdl. The communication is supposed to be: I send a SOAP request and they return a ...
3
votes
2answers
379 views
Calling WCF service from dynamics crm 2011 plugin
I have written a plugin for Dynamics CRM 2011 that calls a WCF service hosted on a different server. Below is the code in my plugin. In the class library for the plugin I have not used a service ...
0
votes
0answers
38 views
WCF connected client need to be remove when browser closes, system shutdown or System Hibernate
I have created a WCF service with PollingDuplexHttpBinding to achieve real time collaborative environment for silverlight client, there is a list of connected client in WCF service with their ID and ...
0
votes
0answers
57 views
How to manually create a ChannelFactory<T> and open it asynchronously
I have a WCF client application that talks to numerous WCF services.
The ChannelFactory(string endpointConfigurationName) constructor takes a lot of time to complete.
Doing so with many services is ...
0
votes
1answer
148 views
WCF Client Configuration in a Sharepoint Webpart
I have a Sharepoint 2010 webpart that calls a WCF service.
I've created a service proxy and manually coded the endpoint, see below.
In a conventional WCF client I'd use the config files for the ...
1
vote
0answers
96 views
Quality of OData in Mono for Android
I am looking to create some cross platform libraries. One of the most important things for me for my mobile platforms is to access web services. After doing quite a bit of reading, it seems that the ...
0
votes
0answers
66 views
Issue with multiple interfaces in a single service
I am using WCF with NetTcpBinding on a solution where both client and server are windows forms. The service is hosted by one of them. I am using VS.2012.
On the server side I have several service ...
1
vote
2answers
116 views
In creating a simple message bus, what is a recommended architecture?
I am about to start a project that will serve as a simple message bus. Messages or events will be sent to it just waiting for a subscriber. The messages don't have to be stored, as I just want this ...
-1
votes
2answers
179 views
Why are all the items in the response object null?
I currently program a WCF client that interacts with a SOAP Web service.
My problem is that my response objects always zero remain, even the simple types.
There is no exception occur.
WSDL Location: ...
0
votes
2answers
255 views
Is it possible to deploy a WCF service and a WebSite in the same WEBSITE PORTAL from AZURE?
I' deploying two services, one of them is a website and the another is a WCF Service for desktop applications.
I have one web site called contoso2.azurewebsites.net and that place I place my web ...
1
vote
1answer
323 views
Could not find endpoint element with name and contract
I have added reference to a WCF service that has two end points. On adding the service the following get added to the Config file:
<client>
<endpoint name="ABCServiceV1" ...
1
vote
2answers
395 views
Consume WCF service over the internet using wshttpbinding?
basically ive followed this tutorial here
and have everything up and running and working fine off my local machine. I have deployed it in IIS and allowed necessary Firewall ports so off i go to my ...
0
votes
1answer
45 views
Are client service contracts still autogenerated in WCF 4.0?
I have a net.tcp binding example that apparently dates back to .NET 2.0 runtime version. The client code of the WCF Net.TCP binding example has an interface marked as ...
1
vote
2answers
246 views
Using SimpleMembership With WPF Applications
I started my project using ASP.NET SIMPLE MEMBERSHIP. Now I have the necessity to create a WPF application which can add users to SIMPLEM MEMBERSHIP tables.
In the ASP.NET, I've identified that this ...
0
votes
0answers
89 views
SSPI: user principle name WCF client
I am trying to access a wcf client. I know people are getting information out of it right now, so I know it works. My problem is I can't seem to get past it. The service is a mutual certific ...
0
votes
1answer
2k views
The server was unable to process the request due to an internal error. in WCF error
i have written my service in framework 4.0 using c# its an simple method which returns a value
the webconfig is like this
<?xml version="1.0" encoding="utf-8"?>
<configuration>
...
0
votes
1answer
370 views
Parameter is not valid error
I am getting parameter is not valid error.how to solve this problem?
The following code is server side
MemoryStream ms = new MemoryStream(ObjDt.ImgUpload);
...
5
votes
2answers
399 views
WCF Client how can I deserialize an incompatible date format from the JSON response?
I have scoured the Net for info on this, but most of the results are about creating WCF services or situations where the service is under your control.
I am building a WCF client proxy for a RESTful ...
1
vote
1answer
427 views
Send Large amount of data Using WCF with client ASP.NET
want to save a file in database as binary data using WCF. Client is ASP.NET C#. i have using the following code and able to send less then 100KB.
Client config file's code is
...
1
vote
0answers
44 views
WCF: Select between regular and duplex service contract at runtime
I am writing a WCF client/service. The service can perform some long operations so I have added a callback contract IProgressCallback. The system I am developing has to run in all kind of ...
-4
votes
1answer
90 views
Create a Windows Communication Foundation Client using wsdl file [closed]
I need to create a Windows Communication Foundation Client and to call the web service using some wsdl that i got.
is there some example how to do it ?
thanks.
0
votes
1answer
38 views
how to select transport automatically depending on schema?
Don't understand how to make it properly, so, decided to ask.
There is some external service. This service has two implementation - with transport security and without. So, there is two urls ...
1
vote
1answer
548 views
The caller was not authenticated by the service
i am using wcf and found this error. please help me where i made mistake
" The caller was not authenticated by the service."
i have used this code in client.config file
...
0
votes
0answers
82 views
Can a ChannelFactory become Faulted?
Let's say i'm caching a ChannelFactory<T> and using it to create channels. These channels are used to make WCF calls to other services, and are then being (safely) disposed.
Do I need to worry ...
0
votes
1answer
58 views
Instanciate proxy of WCF service referring to the same instanciating class
I have a class implementing some audit methods (AuditcClass.cs). I have also implemented a WCF service that uses the AuditcClass.dll methods.
Now I need to be able also to reference the WCF service ...
1
vote
0answers
126 views
Python Suds soap client for WCF. WS-reliable messageing
I have WCF service which uses WS-reliable messaging. I would like to write some python scripts that connect to this service using suds soap client but it seems that suds doesn't support reliable ...
2
votes
1answer
95 views
WCF slow on every request
I have a WCF service, which connects with SQL server and fetch some data, construct objects and then returns it. I use simple binding, .NET 4.0, I have not added any special setting just default ...
0
votes
0answers
87 views
Why does increasing max connection count slow down my service?
I am fairly new to WCF and am working on testing one for performance. While doing this i found several settings that increase performance for a WCF service but only some work.
The "best" examples i ...
0
votes
1answer
95 views
MEX Client Behavior differs across machines
I have a .NET WCF web service running on a server that I access from several different computers. To test my connectivity, I have a PowerShell script that builds a proxy, connects to the web service, ...
1
vote
1answer
93 views
Specifying explicit user credentials in WCF config file
I have a WCF Service hosted in IIS on DomainA. My client machine is either not joined to any domain or it is on a domain that is not trusted hence I am not able to invoke the service. (Error: There ...
1
vote
2answers
384 views
Using client endpoints from app.config file
.net 4.0
I have two web projects using their own web.config file and using the same endpoints to call the same WCF web service.
Both use a common project (dll) which has an app.config file. I would ...
-2
votes
1answer
377 views
WCF + “The underlying connection was closed: The connection was closed unexpectedly.” [closed]
It's been a nightmare learning and getting a working WCF to transfer "web crawling" data.
First it was GoDaddy's server creating a non-traceable error that closed my WCF connection every 15 seconds ...
1
vote
1answer
156 views
How to load WCF Service bindings for a Visual Studio 2010 Addin?
My Questions is:
I want to call WCF Service methods via Visual Studio Addin and the addin/or Visual Studio host is looking int the wrong place for configurations ( or maybe its looking at the right ...
0
votes
1answer
160 views
Self-hosting a WCF service, when I try to get one error can any solve the issue
***could you provide the app.config file according to my Program class please
if possible please provide app.config code i got your point but for that what you are telling i don't know how to do***
...
4
votes
1answer
492 views
Generate only WCF Client Proxy code with svcutil without including referenced classes
I have a WCF service contract and implementation inside a class library. I register endpoints and start the service programatically with a worker role and want to use the service for interrole ...
-4
votes
1answer
247 views
why we need self hosting in wcf and what's the use of it [closed]
why we need self hosting in wcf and what's the use of it.
why we need this three ways of hosting our WCF e.g. IIS,WAS,Self Hosting
...


