Re: How do you handle simultaneous/duplicate client requests with modperl?

2000-01-20 Thread Jeffrey W. Baker
Keith Kwiatek wrote: > > Hello, > > I have a mod_perl application that takes a request from a client, then does > some transaction processing with a remote system, which then returns a > success/fail result to the client. The transaction MUST happen only ONCE per > client session. > > PROBLEM:

Re: How do you handle simultaneous/duplicate client requests with modperl?

2000-01-20 Thread Stas Bekman
> I have a mod_perl application that takes a request from a client, then does > some transaction processing with a remote system, which then returns a > success/fail result to the client. The transaction MUST happen only ONCE per > client session. > > PROBLEM: the client clicks the submit buttom

Re: How do you handle simultaneous/duplicate client requests with modperl?

2000-01-20 Thread Victor Zamouline
>If the processing status >is "in progress" Be careful if you expect the "in progress" status change to "done". If an error happens and the status never switches to "done", the session ID will remain forever "in progress" and a second attempt of the same request will be refused by your own applic

How do you handle simultaneous/duplicate client requests with modperl?

2000-01-20 Thread Keith Kwiatek
Hello, I have a mod_perl application that takes a request from a client, then does some transaction processing with a remote system, which then returns a success/fail result to the client. The transaction MUST happen only ONCE per client session. PROBLEM: the client clicks the submit buttom twi