DRAG DROP
Service Contract exhibit:
[ServiceContract]
public interface IService
{
[OperationContract]
string PassGuideOp (string s);
}
There is a WCF service PassGuideService.
PassGuideService uses the service contract in the exhibit.
PassGuideOp must respond to HTTP POST request.
How can this be ensured?
Explanation: