Hi Friends, I am new to ASP. I have one application which on specific time executes a program (batch) which will send an SMS to all registered users. There is another application which will acknowledge the user via SMS. Now both the applications has to call a same server. So when the batch is executing it will establish a connection and a session will be created and it will transfer the messages. Suppose when the batch is executing during that time if a new new user is getting logged in means then the session gets expired and the batch will not further execute. I have to ensure that both the operations are successful. Please heelllllllllllllllllllllllllllllllllllllllllp.
Could you detail the requirement a bit clearer. As sessions are user specific I dont know why your user's session is killing the batch job's session. You can PM me the details if you would like.
When a new user is getting logged in a new session is created on the server. And he is able to do the same thing at the same time without interupting the process of the other users. However, you should be careful with the session as they are memory consuming for the server. It could affect the performance of your web application. HTH Regards
i think, actually, when users get sign in, creating user session is actually not terminating your batch process.. it seems that there is some piece of code executing after user gets login.. and in result of that piece of code your batch process is terminating.. check your code carefully and see if there is some confliction..