I am using WebApi 2 to implement REST service, as per by observations WebApi 2 executes all request parallel, But I want to execute all request sequentially.
Please someone can help to execute all requests sequentially instead of parallel.
I am using WebApi 2 to implement REST service, as per by observations WebApi 2 executes all request parallel, But I want to execute all request sequentially.
Please someone can help to execute all requests sequentially instead of parallel.
Web API/REST services is stateless. So it has nothing to do with sequential or parallel execution. If you can describe/explain the problem you are trying to solve, then we can discuss.