I’m planning to create a web service that will be hosted on IIS to handle reservations. One of the methods is
ReserveTimeSlot() which returns a reservationID to a client. The client has 2 minutes to confirm reservation or to cancel it. If it doesn’t respond then after 2 minutes the reservation is cancelled. Reservations are stored in a database.
I’m not sure how can one implement a 2 minute timeout into a web service call. Helpful suggestions are needed.
I have found an acceptable solution for my case in this link
WCF Service Application Timer
The first tests are promising. Thanks for devoting time for my questions.