WITH COMPLETE SOLUTIONS
When converting a WSDL service into a RESTful service, what files need to be
modified?
Service.svc
IService.cs
Web,config
What functions does WCF (Windows Communication Foundation) support?
Distributed Transactions
Interoperable Web services
WS-* Specification
A service is defined through a class. What WSDL element corresponds to the
Web method name in the class?
operation
Web Service Description Language (WSDL) is used for
defining the interface of services.
In a distributed application with multiple threads, what techniques can be applied
to increase the performance?
Use non-blocking calls and callbacks for communication
Use a flat level of threads, instead of hierarchical layers of threads.
Use a pool of resource with semaphore, instead of a single cell with lock.