Answer Posted / rahul bhute
We can specify transaction in 3 ways in WCF:-
TransactionFlowOption.NotAllowed
This is a default option. Using this option no transaction
will be propagated across the binding. If any client
attempts to call the WCF service in a transaction it will
be ignored for this option.
TransactionFlowOption.Allowed
This option specifies that client can call this WCF service
in a transaction. It’s not compulsory that the service
needs to be called in a transaction. You can call without
the transaction also.
TransactionFlowOption.Mandatory
This option specifies that client must call the WCF service
in a transaction mode. If the WCF service is called without
transaction, ‘FaultException’ will be raised.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is application variable?
Explain the overview of asp.net?
Which object wraps the state or data of a user?
How should I destroy my objects in asp.net?
How do you declare static variable?
What are the versions of garbage collection?
What is true about application service provider?
How information about the user's locale can be accessed?
Why do we use web config?
Whats the difference between registerclientscriptblock, registerclientscriptinclude and registerclientscriptresource?
What is difference between Server.Transfer and Response.Redirect in ASP.NET?
Which protocol is used to call web service?
Which adapter should you use, if you want to get the data from an access database?
What is x xss protection?
What is the viewstate in asp.net?