Questions tagged [wsdualhttpbinding]

A secure and interoperable WCF binding that is designed for use with duplex service contracts that allows both services and clients to send and receive messages.

The WSDualHttpBinding provides the same support for Web Service protocols as the WSHttpBinding, but for use with duplex contracts. WSDualHttpBinding only supports SOAP security and requires reliable messaging. This binding requires that the client has a public URI that provides a callback endpoint for the service. This is provided by the ClientBaseAddress. A dual binding exposes the IP address of the client to the service. The client should use security to ensure that it only connects to services it trusts.

http://msdn.microsoft.com/en-us/library/system.servicemodel.wsdualhttpbinding.aspx

63 questions
0
votes
1 answer

Allotted timeout while logging System.Net on Trace level

I'm having an issue with my program. I've created a service which is logging its actions with NLOG. Next to this service I've created a tool to catch this logging and show it to the user. This connection is based on WSDualHTTPBinding. Besides the…
Jownster
  • 25
  • 10
0
votes
0 answers

is it possible to apply https on WsDuallHttpBinding in WCF?

I found WCF WsDualHttpBinding accept http, however https is not acceptable. I got following errors if https is used: System.ArgumentException: The provided URI scheme 'https' is invalid; expected 'http'. Parameter name:…
Mulder2008
  • 181
  • 3
  • 8
0
votes
1 answer

Implementing WCF callback in MVC

I successfully implemented a WCF service (with wsDualHttpBinding) in MVC. "SendResult" function get correctly called from WCF and receives the results in the "Events_For_Export_Result" array. Now I should redirect MVC to a controller/view to show a…
user4019463
0
votes
1 answer

ComboBox not binding on WCF callback

I'm creating a sample chat application. On Form load, WCF service is called. -- here user's callback is registered at wcf service, added to a UserList Other users are notified about the current users by sending the UserList to them using their…
donstack
  • 2,557
  • 3
  • 29
  • 44
0
votes
1 answer

WSDualHttpBinding wont work on some computers

I have an wcf that uses an wsdusalhttpbinding WSDualHttpBinding binding = new WSDualHttpBinding(); binding.MaxBufferPoolSize = int.MaxValue; binding.MaxReceivedMessageSize = int.MaxValue; binding.Security.Mode =…
Dendei
  • 551
  • 1
  • 7
  • 18
0
votes
1 answer

wsDualHttpBinding Not Working When Deployed Under Azure

WCF Duplex not working under Azure. Everything works fine under IIS Express. I know duplex binding is problematic because of the server callback, but.... I already shut down my firewall. TCPView (Sysinternals) shows 10 to 12 packets being…
jsanalytics
  • 13,058
  • 4
  • 22
  • 43
0
votes
1 answer

Can we use wcf WsDualHttpBinding(DUPLEX comm) for communicating between two different websites in asp.net

I want to make duplex communication(CHAT like application) between two different websites in asp.net. I have seen lot of demos of duplex communication with two windows application (nettcpbinding) binding. But I want to achieve this with two…
Rahul Ranjan
  • 1,028
  • 1
  • 10
  • 27
0
votes
1 answer

Large data transfer using wsDualHttpbinding fails

I'm trying to send data of size greater than 25 MB to multiple clients at the same time using callbacks. I have implemented the service with wsdualhttp binding. It throws "System.OutofMemory" and "Failed to allocate memory" exceptions when the…
0
votes
2 answers

WSDualHttpBinding in WPF not responding

I have problem with using WCF WSDualHttpBinding only in WPF application. Before changes this WCF worked. Now not working. I changed only ServiceBehaviour (ConcurrencyMode and InstanceContextMode) to: [ServiceBehavior(IncludeExceptionDetailInFaults =…
Musketyr
  • 745
  • 1
  • 16
  • 37
0
votes
0 answers

wsdualhttpbinding in remote server

We are developing an application using WCF services. Our client app is a desktop WPF app and we use wsdualhttpbinding protocol to communicate with the server. Everything is working well in our local machines but when we deploy it to the remote…
0
votes
1 answer

WSDualHttpBinding - Java or SoapUI Client

I have been struggling with this problem for more than a week. I have a third-party WCF webservice which works with WSDualHttpBinding. I have wsdl file from them, and I am trying to communicate. I used: Metro which generates Java code. I tried it…
B.W
  • 33
  • 6
0
votes
1 answer

wsDualHttpBinding doesn't work for some clients in Intranet

I have WCF-service (hosted by IIS) that is used with wsDuallHttpBinding in Intranet environment without Domain controller.
Andrew Florko
  • 7,672
  • 10
  • 60
  • 107
0
votes
1 answer

How to acces a Service from the Service host in WCF Communication

I have a number of clients, communicating using WCF wsDualHttpBinding, that are accessing a host, asking for information. This information has be to searched, this means that the answer is can not be given back in the same thread. The problem looks…
Rob
  • 1
0
votes
2 answers

Configure wsDualHttpBinding with https

I am trying to configure my wcf service to use a wsDualHttpBinding over https. My current config looks like this: Service
Christoph
  • 438
  • 1
  • 6
  • 14
0
votes
1 answer

ClientBaseAddress doesn't seem accessible

I am using wsDualHttpBinding, server is self hosted. I am having a problem that looks to me that my ClientBaseAddress of my client is not accessible. I am at a loss of how to fix this problem. Here is my service…
jpiccolo
  • 768
  • 1
  • 6
  • 19