views:

63

answers:

1

Hi,

I'm creating an ASP.NET web application that is to communicate with a WCF web service. When executing the asp.net web application, that is, when I'm accessing it through a web browser, i get the following error:

Unrecognized attribute 'transactionFlow' in web.config. transactionFlow is indeed an attribute under basicHttpBinding in my web.config.

Have anyone experienced the same problem? Or do anyone perhaps have an idea why this attribute is not recognized at the web server?

Thanks in advance!

+2  A: 

Only NetTcpBinding, NetNamedPipeBinding, WSHttpBinding, WSDualHttpBinding, and WSFederationHttpBinding are transaction-aware.

RandomNoob