Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
0
Answer
Behaviors included in Service Runtime of the WCF
Rv Singh
10y
912
1
Reply
The following behaviors are included in the WCF Service Runtime layer..
1. Throttling behavior
Throttling behavior provides the options to limit how many instances or sessions are created at the application level.
2. Error behavior
By implementing IErrorHandler interface WCF allows an implementer to control the fault message returned to the caller and also it performs custom error processing such as logging
3. Metadata behavior
Through the metadata behavior we can publish metadata of the service by configuring an endpoint to expose the IMetadataExchange contract as an implementation of a WS-MetadataExchange (MEX) protocol. By default it is disabled.
4. Instance behavior
This behavior specifies how many instance of the service has to be created while running WCF.
5. Transaction behavior
This is used to enables the rollback of transacted operations if a failure occurs.
6. Dispatch behavior
This behavior controls how a message is processed by the WCF Infrastructure.
7. Concurrency behavior
Concurrency behavior measures how many tasks can be performed simultaneously
9. Parameter Filtering
This demonstrates how to validate the parameters passed to a method before it is invoked.
Post
Reset
Cancel
Answers (
0
)
Next Recommended Forum
Can you explain transactions in WCF?
Error while consuming WCF Service