I am trying to consume one of my WCF services using a net.tcp binding and I am receiving the following error:
"The .Net Framing mode being used is not supported by 'net.tcp://myWCFService:8050/MyService'."
The research I have done states this is caused by having an improper "transfermode" in the binding configuration, but in my service I do have it set as follows:
transferMode="Streamed"
I actually have tried all (4) transfermode options on the WCF service to no avail. This is a newly consumed service using the "Add Service Reference" tool within VS.NET 2010, so there is nothing on the client I can manipulate or alter configuration other than providing the URL to consume.
I also tried changing the port it was hosted on as this error can be produced by something using the same port, but that didnlt help either.
Anyone have any ideas on this? Thanks!