TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Rv Singh
1.5k
245
90k
Behaviors included in Service Runtime of the WCF
Jan 21 2014 6:20 AM
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.
Reply
Answers (
0
)
Can you explain transactions in WCF?
Error while consuming WCF Service