We have already 2 hostings IIS and self hosting.
there is another hosting ie WAS Hosting.
What is the use of the WAS(Windows activation Service)
compared to other hostings.
Answer Posted / maya
WAS hosting is used to host the application on IIS with different protocol along with HTTP. WAS hosting is available in IIS 7 onwards where we have ability to mention the protocol to be used for any website we have created.
To host the service on WAS, simply create a website in IIS and go to Manage Websites > Advance Settings and at the Enable Protocols write the command separated values like "http, tcp" and this website can be used by both http and tcp protocol.
WAS is generally used when the WCF service has to be consumed locally (in the intranet environment).
The benefit are
1. In self hosting the dependency is on the system to start and stop
2. in IIS only http protocol can be used
IN WAS as soon as system starts, the WAS starts and no need a controller app to start and stop the service
It can be hosted on multiple protocol.
Because it can be hosted on multiple protocols such as TCP, it is faster than others.
There are many very good WCF interview questions available at http://www.dotnetfunda.com/interview/showcatquestion.aspx?category=74 you can read them.
Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What are the different modes of communication in wcf?
What are the transport schemas supported by wcf?
What are the core security features that wcf addresses?
What are the advantages of hosting wcf services in iis as compared to self hosting?
What are the duplex contracts in wcf?
What is purpose of IsWrapped property in Message Contract in WCF?
What is the difference between wcf and web services?
How many types of contracts in WCF?
What are the types of Data Contracts in WCF?
What do you understand by the term impersonation?
What are the three types of transaction manager WCF supports?
What are the essential components used in wcf?
What do you understand by the term data contract?
what is the endpoint in WCF and what are the three major points in WCF?
What are the types of contract?