Questions tagged [wcf-binding]

The configuration of encoding, protocol and transport detailing how WCF services and clients communicate with each other. This tag is for both the default system-provided bindings, and custom bindings.

A WCF binding is a combination of encoding, protocol, and transport details used by WCF web services and clients to communicate with eachother. It determines the wire representation of messages exchanged by services and clients.

WCF offers default system-provided bindings for typical combinations, e.g. for typical http or https connections. You can also create custom bindings for your application, detailing non-default options for encoding, transport, and protocol.

References

1642 questions
0
votes
1 answer

Client is using WCF that wants to communicate with this JDE (JD Edward) Web service

I have one requirement where our client is having a portal to create tickets.... their portal will send the data created by calling a WCF service to store into JDE system. They prefer to ahve WCF web service. Using WCF they will send request in jde…
0
votes
0 answers

Window Service installed but EndPointNotFoundException was caught

I am struggling to get out from this exception. I don't know why it is thrown always. My service( server) installed correctly from insaller and it is running in the background. But server has exposed the end points in a way :
Usman
  • 2,742
  • 4
  • 44
  • 82
0
votes
1 answer

what different message encodings does WCF use and in which scenarios?

I am new to WCF, SOAP. I have searched on MSDN and other portals, but did not get a suitable answer. Please pardon me if I am asking something silly, but I really need to get these cleared. I got some help from these posts. Still would love to know…
swap000
  • 1
  • 3
0
votes
0 answers

Limit the size of sending data in WCF

I am trying to built a WCF Service that can send only some Kb's of data. In my Service there is a method which returning the 11500 Array object to client but I want to return only 500 Array or only 500KB data at a time. I tried to use…
ankit Gupta
  • 313
  • 1
  • 5
  • 19
0
votes
0 answers

wcf per-call, http-binding - IDisposable pros cons

If I am using wcf service per-call mode and with http-binding (not using multi-threading / thread in any method) now If I implement IDisposible interface in my service will there be any issue in performance? Is it safe to implement IDisposible…
0
votes
1 answer

WCF: Invalid Security Header

Usually when I consume a web service I add a service reference, put in the URL for the WSDL, and then finagle my way through the API's. This time around I get a FaultException with the message: "Invalid security header". Here is my…
micahhoover
  • 2,101
  • 8
  • 33
  • 53
0
votes
1 answer

Unable to call WCF service with wsHttpBinding from Iphone

I have designed a WCF service for Authentication of the new user for both Iphone and Android. Initially I was using basciHttpBinding and my service was working fine for Iphone, but 15-20 days back I have changed the configuration and now I am using…
user3590502
  • 11
  • 1
  • 5
0
votes
1 answer

WCF communication on Http

I have a WCF service which works fine when accessed internally. The WCF link is . I requested the network team at our organization to expose this WCF to outside world since public websites will access this WCF. I gave the network team DNS as…
bp581
  • 859
  • 1
  • 16
  • 47
0
votes
1 answer

WCF Service Help page for net.tcp binding

Is it possible to configure a WCF service (with net.tcp bindings) in such a way that it can display a help page as it shows in case of http bindings?
Ravi
  • 95
  • 1
  • 1
  • 8
0
votes
1 answer

Which view is causing the WPF binding expression error

When I run my WPF application, I get lots of binding expression errors showing in Output window. But each error message does not tell me which view (.xaml) file has the error. For example, the error below does not tell me: System.Windows.Data Error:…
Ray
  • 4,679
  • 10
  • 46
  • 92
0
votes
1 answer

How to secure MEX endpoint WCF

suppose i have developed a WCF service with one mex endpoint. now i like to know how can i secure the mex endpoint means that if anyone know my mex endpoint address then that user may not be able to add my mex endpoint address from their VS IDE to…
Thomas
  • 33,544
  • 126
  • 357
  • 626
0
votes
2 answers

Silverlight is calling completed event more than once

I have a silverlight appplication in which i make a call to wcf using basichttpbinding.I have checked all the loops.The problem is that there are certain completed events which are called more than once.I start by handling the loaded event of the…
Tarun
  • 267
  • 2
  • 9
  • 26
0
votes
0 answers

Can't return dataTable WCF

I can't return the dataTable in WCF, i don't know what am missing: My IService1.cs has: ServiceContract] public interface IService1 { [OperationContract] UserClass ReturnUser(string Username); } [DataContract] public class Users { private…
0
votes
0 answers

WS-Security: X.509 Certificate Token Profile 1.1 & Biztalk

I need to communicate via BizTalk WCF Adapter (probably Custom or WSHttp) with a webservice secured with WS-Security: X.509 Certificate Token Profile 1.1 The requirement are below (taken from SoapUI): Key Identifier: Issuer Name and Serial Number…
0
votes
1 answer

Binding WPF Controls to a WCF Service

I want to know how to bind WPF controls to a WCF Service, I only find references to bind to a WCF Data Service
Rafael
  • 2,413
  • 4
  • 32
  • 54