Windows Communication Foundation is a part of the .NET Framework that provides a unified programming model for rapidly building service-oriented applications.

learn more… | top users | synonyms (2)

0
votes
0answers
16 views

calling web service return error in request

I have web service like the following [ServiceContract] [ServiceKnownType(typeof(test))] interface ItestbService { [OperationContract] IList<test> RetrieveTestList(); } public class ...
0
votes
2answers
21 views

Setting up a WCF host within a website project

This is going to be a weird question, but: I'm currently running a wcf service on my website (made in Visual Studio 2012 - .scv file). I have a console client which I try to test the connection with ...
0
votes
1answer
16 views

Can I Send a custom class from asp .net 4.0 website to a WCF .net 4.0 service

I want to create a wrapper class called Report that contains dictionaries and lists and such in my website generated by 100-1000 fields from the website page, then send it to my WCF service. I have ...
0
votes
0answers
11 views

Server binding if client has SoapHttpClientProtocol?

If my client uses SoapHttpClientProtocol , what binding should have the server ? I have tried to use BasicHttpBinding but on it I am getting following exception: The message with Action '' cannot be ...
0
votes
1answer
22 views

SignalR message not being received on the client

I've been trying to get my WPF client app to receive a SignalR message sent by the WCF service. I've tried many things and have now resorted to hacking away in the hopes that something just works. ...
0
votes
0answers
11 views

why I am getting ContractFilter mismatch at the EndpointDispatcher

Hello I have a service that communicates with client. I get following exception:The message with Action '' cannot be processed at the receiver, due to a ContractFilter mismatch at the ...
0
votes
0answers
26 views

WCF service doesn't accept new member to the enum

I've got a wcf service which looked something like this: [DataContract] enum MyEnum { [EnumMember]Member1, [EnumMember]Member2, [EnumMember]Member3 } [ServiceContract] interface ...
1
vote
2answers
18 views

host WCF in Windows Form

I have created a WCF service (DLL), and I can use it when adding a service reference to it from my "adjacent" project in the solution. I wish to make this WCF service accessible / host it, in a ...
0
votes
0answers
7 views

Do specific code depending on the WCF service behavior

Is it a good idea to get the current WCF behavior withing a WCF operation contract and do some stuff depending on the current behavior? If no: Why not? If yes: How can I do that? For example ...
0
votes
1answer
22 views

Create WCF service at runtime

I’ve created WCF service that connects between a windows 8 app and SQL Server. But now the connection is to be made at runtime, like where the server name is a user input. I wanted to know do we keep ...
0
votes
0answers
16 views

Impersonate user for calling a wcf service from asp.net mvc4

i'm trying to pass the user identity to a backend-Service written with WCF (hosted on IIS) from an MVC4 Web-application. Therefore i made a class: class Impersonation : IDisposable { public ...
0
votes
1answer
15 views

Get WCF request parameters in UserNamePasswordValidator

I have a stateless server with an WCF service. The server can have several DB connections. Therefore I must give the DB connection for EACH WCF request. I do this within a request object. So every WCF ...
0
votes
0answers
9 views

Service farm with WCF services: binding config

We created a service farm with 2 servers in it: AppRouter, AppSrv01, AppSrv02. On AppSrv01 and AppSrv02 we publish WCF services for our client application. Services are hosted using IIS, AppRouter ...
0
votes
0answers
10 views

Jquery AJAX calls to NLB (Network load balancer) and cross domain scripting issue

We have a simple dashboard application that makes Jquery AJAX calls to RESTFUL WCF service (whose endpoints are exposed using webHttpBinding). Things work as expected as long as UI application and ...
0
votes
0answers
23 views

The specified cast from a materialized 'System.Decimal' type to the 'System.Boolean' type is not valid

I have an issue with some linq causing the following errors. The specified cast from a materialized 'System.Decimal' type to the 'System.Boolean' type is not valid. The specified cast from a ...
0
votes
3answers
42 views

Async WCF Service

To make this easier to understand: We are using a database that does not have connection pooling built in. We are implementing our own connection pooler. Ok so the title probably did not give the ...
1
vote
0answers
30 views

WCF throwing exception when trying to access library

I'm a student trying to set up a WCF service. I got the host and client running with a servicelibrary, and it works fine until my client tries to call upon a service that accesses a library (Gamez) ...
0
votes
0answers
12 views

Response 400 (bad request) when invoking WCF service with other user than Administrator

I have a simple WCF service (hosted in Server01) which I've been using with no problems. After installing in this particular server (lets call it ClientServer01), I started to get the response 400. ...
0
votes
0answers
12 views

Stream returning from WCF service is not processable

we have a desktop application (VS 2010 C# .net FW 4.0) that connects to a (Vertica) DB and retrieves huge amounts of data (everything working smoothly). Since customers often have restictions on their ...
0
votes
1answer
24 views

WCF Username and Password in SOAP Header

I'm trying to get a WCF client to call a web service with security information provided in the SOAP Header of the request, as follows. ` <SOAP-ENV:Header ...
0
votes
0answers
9 views

Prism module system from within WCF service?

Can you boostrap a Prism module system from within the WCF service? Because no matter what I do my MEF dependencies are not being fulfilled. E.g.: This is my WCF service implementation public class ...
0
votes
1answer
21 views

Self-hosted WCF: automatically create service hosts and enable dependency injection with Autofac

I'm working on a Windows Service with a number of self-hosted WCF services. I'm using Autofac for DI/IoC. WCF services and endpoints are set up in app.config, and by enumerating the configured ...
0
votes
0answers
14 views

WCF mismatch between bindings issue

I am getting this error when trying to call my WCF service: The message could not be processed. This is most likely because the action ...
0
votes
0answers
24 views

unable to instantiate client WCF with faults contracts

I have a problem creating a client for a WCF service when there's a fault contract. When i put the fault contract, the client can not instantiate nothing,it can see only WPCILServiceException object ...
0
votes
0answers
27 views

Suggestion for architectural design

We are developing an application where WCF plays major role. We have WCF services which calls other services/methods to fetch data and give back to us. Following are the components: Windows service ...
0
votes
0answers
6 views

WCF service in Sharepoint with claims authentication and anonymous access mixed

I have a wcf sharepoint with the following authentication set in IIS: Anonymous authentication, ASP.net Impersonation, Windows authentication. I have a couple of services (svc:s) but everything is ...
0
votes
1answer
18 views

WCF Message Version

We have two WCF services. One is a service (A) with a method on it that is used to send data to it (push). The second is a service (B) that sends data to A. When i send data to A from B i get this ...
0
votes
2answers
20 views

Return an Array of a Struct in a WCF Datacontract

i need to return an array of a structure in a Datacontract. i cant manage to make it. i receive an error when setting the values for the array. Here's the Datacontract declaration: [DataContract] ...
0
votes
0answers
14 views

Publish.NET WCF Service to Azure

I have a project with the following structure: Console Application Console Application (Handles entities and db) WCF Application It works when i deploy it on localhost, but i want to publish it ...
0
votes
0answers
17 views

Custom DataContractResolver ResolveName DataContractResolver parameter should not be null

I am using a custom DataContractResolver public override Type ResolveName(string typeName, string typeNamespace, Type declaredType, DataContractResolver knownTypeResolver) { Type ...
0
votes
0answers
35 views

XML return from WCF application

i am using WCF to get data from database from my web application using .net framework. in my WCF application code, requirement is to get data in XML format in my web application code, requirement is ...
0
votes
0answers
11 views

How to update a multi-choice field in sharepoint with WCF/Rest web services?

I've been looking for this on the web for 4 days, and i still have no clue why my code isn't working... I'm using an ASP.NET MVC 4 application with a service reference to a sharepoint listData in ...
0
votes
1answer
41 views

how to cast an anonymous type to IQueryable<Order_Detail> in C#?

I am creating an OData service method in which I have written following code [WebGet] public IQueryable<Order_Detail> getByYear(int year) { var dc = new ...
0
votes
0answers
14 views

Sharepoint 2013 custom service with separate web.config file?

I am wondering if its possible to create a separate web.config file for a custom service which references the PSI on SharePoint 2013. So I have my "service.svc" within a folder in the PSI directory, ...
0
votes
0answers
8 views

How can I get serviceCredentials > windowsAuthentication > allowAnonymousLogons to work in WCF?

I have a WCF service exposed as a netTcpBinding. On the service side: <netTcpBinding> <binding> <security mode="Message"> <message ...
0
votes
0answers
13 views

SAP Netweaver SOAP Service returning null response to WCF client

I've added a SAP Netweaver service reference to my project using a local WSDL. The server returns a null response, but using Fiddler I can see the correct response is being sent. I assume this means ...
1
vote
1answer
15 views

OperationContext.Current in event : Null exception

I am trying to call a callbackcontract method in a method, which is called when a certain event is triggered. But i get an exception when tried to get the OperationContext.Current. How can I call the ...
0
votes
2answers
46 views

How to synchronously call DiscoveryClient.Find in ASP.NET

I'm trying to discover a service using DiscoveryClient from an ASP.NET page void Page_Load(...) { ... var result = DiscoveryClient.Find(anyCriteria); .... } The call fails whith an ...
0
votes
0answers
21 views

Writing a (wcf) webservice that returns XML and an XSD / WSDL

I'm about to write a webservice in C#, which should return an XML document. I am planning on using WCF because MEX will allow people to easily build a client to interface with it. I'm a bit confused ...
-5
votes
0answers
17 views

.NET 4.5 WebApi or WCF Services. When?

I am not clear when you need to use the WebAPI or WCF services. What are the best practices? They can you clarify the differences?
0
votes
2answers
22 views

How do I share Service Reference Types Across Multiple Tiers using C# and Visual Studio 2010

My project is split into a service tier project and an implementation tier project. Both are written in C# using Visual Studio 2010. The service tier accepts a request object and passes it to the ...
3
votes
0answers
68 views

Close TCP connection when owner process is already killed

I have a Windows service that - when it starts - opens some WCF services to listen on the 8000 port. It happens that this service crashes sometimes. When it does, the TCP connection is not released, ...
0
votes
0answers
11 views

Make all methods in a WCF service all be GET's with the same body wrap style

I would like to make all the methods I am adding to my WCF service have the following behaviour: [WebInvoke(Method = "GET", BodyStyle = WebMessageBodyStyle.Wrapped)] Instead of having to add these ...
0
votes
2answers
18 views

Mixed transports in NServiceBus 4.0

I'm currently working on a project that combines Java and .NET systems. The communication between the two is from Java over ActiveMQ to .NET MSMQ using BizTalk as a translator. I was wondering if we ...
0
votes
0answers
9 views

Can Wsdl.exe handle soap encoded arrays

I have a WSDL that contains an array definition based on soap encoding (http://schemas.xmlsoap.org/soap/encoding/). The array contains another complex type and the WSDL looks something like that (Its ...
0
votes
0answers
25 views

WCF/jQuery - Looking for sample code for File Upload solution from blueimp accessing WCF service

I am having difficulty to using the .js scripts from blueimp: https://github.com/blueimp/jQuery-File-Upload/wiki/Basic-plugin The idea for our application is to have a simple HTML form with the file ...
0
votes
2answers
42 views

how to use data cache in WCF

My case is use WCF to return datatable from sqlserver database. some wcf method use in high frequency. so it will give much more stress to database. can we use cache in wcf,like http cache,set a ...
0
votes
0answers
9 views

create a proxy for a datapower application

I am trying to consume a IBM datapower webservice in c#, wcf. But this is the error the vendor has sent. May 23 10:29:44 [error] wsgw(MedsHistoryWSP): trans(308571109)[request][ ]: Required ...
0
votes
0answers
11 views

How send Generic List as a wcf service parameter from silverlight without using Add Service Reference?

I have a Client and Server application. For Client application I use SilverLight and for Server application I use WCF. I provide services for SilverLight application using ChannelFactory. So there is ...
0
votes
0answers
68 views

How can I test this method? [duplicate]

This is my web service method public string PostAllSurveyList(List<Survey> surveyList) { var surveyDbList = ConstructDbServeyList(surveyList); foreach (var ...

1 2 3 4 5 601