I try to use one of my WCF services using net.tcp binding and I get the following error:
"The .Net Framing mode used is not supported" net.tcp: // myWCFService: 8050 / MyService ".
The research that I did says that this is caused by the wrong “transfer moment” in the binding configuration, but in my service I install it as follows:
transferMode="Streamed"
I really tried all (4) transfer options in the WCF service to no avail. This is a new consumable service using the Add Service Link tool in VS.NET 2010, so there is nothing on the client that I can manipulate or change the configuration, except for providing the URL to consume.
I also tried changing the port on which it was hosted, as this error could be generated using the same port, but that also did not help.
Anyone have any ideas on this? Thank!
source
share