Tagged Questions
3
votes
2answers
129 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
140 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
58 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
32 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
22 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 ...
5
votes
1answer
131 views
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 ...
4
votes
4answers
308 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
384 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
284 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 ...
3
votes
2answers
388 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
1answer
149 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
69 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
117 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
187 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
263 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
379 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
409 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
46 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
259 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
1answer
3k 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
385 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);
...
1
vote
0answers
46 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
95 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
39 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
634 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 ...
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
90 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
96 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
96 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 ...
-2
votes
1answer
409 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 ...
0
votes
1answer
164 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
501 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
257 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
...
9
votes
1answer
469 views
WCF Proxy Returning Array instead of List EVEN THOUGH Collection Type == Generic.List
I have a VS 2010 solution containing a WCF Library project and another project consuming that web service. After opening in VS 2012, it was upgraded.
The proxy now returns List<T> types as ...
1
vote
2answers
181 views
WCF Service concurrency issues and timeouts
I have a WCF service which receives a message from one application and send a notification to the other connected client applications.
In my first test scenario one client application is sending a ...
0
votes
0answers
91 views
How to get webmethod info from just the WCF webservice URL?
I have been given a task to create client for a WCF webservice and unfortunately the person who is attending the server part is gone, at least for now. I need to know the request-response parameters ...
0
votes
1answer
490 views
Unsupported Media Type (415) When Adding WCF Service in VS2010
I have a solution with an MVC website and a Console App. The website is hosting 2 WCF services and whenever I try to add a reference to either one in the console app, I get the following error:
The ...
0
votes
1answer
44 views
testing WCF services on server
I'm trying to test my net.tcp binded wcf service on my server machine, the service cannot be accessed from outside, does anyone know any tool that can be helpful to call my service on server 2008 ...
0
votes
0answers
50 views
How to check dead clients before callback in wshttpduplexbinding
i have created a wcf service using wshttpduplex binding, i wanted to check (if the client is connected or not) before calling him back.
i checked timeout exception to detect a dead client but the ...
2
votes
0answers
105 views
WSE 3.0 -> WCF Security Tokens
I have a WSE 3.0 client and the current implementation is:
System.Security.Cryptography.X509Certificates.X509Certificate2 cert = new ...
3
votes
1answer
106 views
Self starting and fault exceptions
What is the best way to handle any faults that may occur for a WCF service? So apart from try/catch in the service/WCF itself, what if the client faults for example the system went down (i.e MSMQ went ...
2
votes
1answer
137 views
How to implement .NET code library as a service layer - sharing same BL/CRUD between several applications
Setting: I'm developing an intranet tool set for my department, the main point of which is to centrally manage data quality and accessibility, but also to automate and scale some partial-processes.
...
0
votes
0answers
71 views
how to detect dead clients from WCF.Net4 service before callback in wsHTTPDuplexBinding
i have created a wcf service using wshttpduplex binding, i wanted to check (if the client is connected or not) before calling him back, i have googled alot for the solution and worked on most ...
0
votes
3answers
136 views
WCF works in VS but not in IIS
Have a web application. It runs 2 wcf services, and is a client for another. One wcf service works fine, the other does not work on the dev server but does work locally. The error is "The content ...
0
votes
2answers
371 views
Importing WSDL into a .NET project only creates an empty namespace
I'm trying to use WCF for the first time. Here's what I did:
Created a console .NET 4 project in VS 2010
Added a WSDL file as a service reference.
However, I can't seem to be able to use the ...
0
votes
0answers
84 views
Is there a performance issue if we increase maxStringContentLength to 200000000 in WCF Client configuration file?
I get this exception when I use the default binding settings in configuration file.
The maximum string content length quota (8192) has been exceeded while reading XML data. This quota may be ...


