vote up 0 vote down star

I need to make call to a WCF service in a Transaction scope. I have never tried transactions in WCF serivce.

Does anyone have experience in similar requirement?

flag

65% accept rate

1 Answer

vote up 1 vote down check

Sure. The most important thing to keep in mind it that not all bindings support flowing transactions. The basicHttpBinding doesn't while the wsHttpbinding and the netTcpBindings do. Other than that I suggest a little more concrete questions.

link|flag
Does the encoding(Text/Binary) effect the transaction behaviour of a WCF service? – Balaji Sep 15 at 8:48
No, the encoding is just a matter of how objects are wrapped up and shipped across the wire. The wsHttpBinding uses XML and the netTcpBinding use binary by default and both support transactions. – Maurice Sep 15 at 9:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.