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
2 answers

There is any WCF binding that accepts the data in a HTTP query string?

There is any WCF binding that accepts the data in a HTTP query string?
Jader Dias
  • 88,211
  • 155
  • 421
  • 625
0
votes
2 answers

WCF Service to talk to WCF Service

I have a solution with 3 projects Winform Client WCF Service hosted in a windows service WCF Agent hosted in a windows service The client (Item 1) talks to the agent (Item 3) via the service (Item 2) - all using WCF. The client (item 1) gets…
user1438082
  • 2,740
  • 10
  • 48
  • 82
0
votes
1 answer

WCF webservice needs to listen on 2 ports iisexpress. TCP error code 10061

We have a wcf webservice that an external client will be using to provide requests. This webservice (the webservice) calls another wcf service ( the agent) where the business logic is implemented. The agent also monitors activity in the database…
Dar
  • 383
  • 1
  • 5
  • 16
0
votes
1 answer

WCF using reference

I have created a windows service and its job is to start a WCF service in the same project.Now i have a windows client in a project within the same solution. i have added the service reference on the client successfully but when i type in the…
user1438082
  • 2,740
  • 10
  • 48
  • 82
0
votes
1 answer

How to: Migrate ASP.NET Web Service Code to the Windows Communication Foundation

I am trying to migrate an ASP.net ASMX web service to WCF per the article below http://msdn.microsoft.com/en-us/library/aa738697.aspx I am not sure what to do on the first part of step 9 or the add to solution part. 9.Run ServiceModel Metadata…
China Syndrome
  • 953
  • 12
  • 24
0
votes
0 answers

WCF Service Consume issue

I have a windows service that hosts a WCF service. I have a client that consumes the service. The client does not recognize the ServiceReference1 even though I added it as a Service Reference. I have been trying to fix this all day - I have read the…
user1438082
  • 2,740
  • 10
  • 48
  • 82
0
votes
1 answer

Sending Data over 2.1 MB fails for WCF

i am writing a code which will upload selected files to some server using WCF. i am using .Net 4.0. I am having one aspx page with fileupload control. where user browse the file and click save i am keeping these files (read in byte then converted to…
0
votes
1 answer

WCF security with load balancer

We need to create a WCF service (.NET 4.0) that will be consumed by a client outside of our organization. The case is that we have two servers that are behind a load balancer which terminates the SSL. This is where it gets confusing for me. How we…
0
votes
1 answer

Self-Hosted WCF SSL on Win XP Fails

Trying to configure an SSL endpoint for a self-hosted WCF service on Windows XP. My configuration works fine on Windows 7; but Windows XP, using the same certificate, doesn't respond. I get a server not found error. When I run netstat -an, I can see…
Ayo I
  • 7,722
  • 5
  • 30
  • 40
0
votes
1 answer

Duplex Service in asp.net

I have a duplex service and i'm using silverlight for the functionality of inserting values and retrieving values.The first thing i want to know is: when i add a new endpoint for example wsdualhttpbinding,then my service doesn't work.It doesn't give…
Tarun
  • 267
  • 2
  • 9
  • 26
0
votes
1 answer

WCF wsHttpBinding : Avoiding multiple "ISSUE" calls while calling a web service using wsHttpBinding

I am using wsHttpBinding to call a WCF web service. When I look into the Fiddler2, I see multiple calls to the server before calling my actual OperationContract. From this post I understood what these service calls are doing. However, I want to know…
Learner
  • 4,661
  • 9
  • 56
  • 102
0
votes
2 answers

WCF services using the same port from different processes?

I know you can create multiple services on the same port within a single process. We have the situation where we are assigned a port to use for all traffic but the architecture doesn't currently support starting all wcf services from a single…
Philip
  • 339
  • 3
  • 12
0
votes
1 answer

How to read streams in parallel at client from a WCF Service Method, without blocking each other?

I'm trying to create a download application, in which there would be four or more download queues using which a user can download files from the server. What would be best possible solution to accomplish this without letting the queues blocking each…
0
votes
1 answer

Modify web.config system.ServiceModel/client/endpoint with Microsoft.Web.Administration.ServerManager

I'm having a bit of grief trying to modify my web applications web.config file using the Microsoft.Web.Administration.ServerManager library. What I am trying to do is modify the client section located in System.ServiceModel. Basically I would like…
Maxim Gershkovich
  • 45,951
  • 44
  • 147
  • 243
0
votes
1 answer

Use Both Certificate and User/Pass to Consume Java Web Service From .Net

I have a .Net c# client that needs to consume a Java web service from a third party. They require both a client cert and user name and password. I have the cert set up but constantly get 401 Unauthorized because I don't think the username and…
Brett Bim
  • 3,190
  • 4
  • 28
  • 26
1 2 3
99
100