I have a web service which is created by using C#.
In this web service one config.inc file which stores all input data and it overrides as per new request. As per the input this web service gives a XML output on browser.
I need to make my web service to be accessible by multiple users simultaneously. And users should get XML output as per the input parameters to web service. XML output should not be conflicted among users.
Any guidelines to achieve this task.
Edit
Below is the problem in our web service implementation that's why I posted this questions.
We created web service which is deployed on IIS server. In the deployed directory there are two files config.inc and tempfile.xml. For each request config.inc file is overridden to store input parameters and as per the input parameters existing tempfile.xml file is overridden. and we display it on browser using C#.
The problem we are facing in our implementation is that when two users call for web service simultaneously, output desired by second user is send to first user and second user gets error message, I am not sure how to resolve this issue.
Please let me know if there is any way to implement this web service for multiple user access.