Re: Single threaded web service

2004-04-25 Thread Richard Martin
(more than one threads are used to entertain user requests). What I want is a single threaded web service which uses a single thread to entertain all the user requests. Is it possible? If yes then how? Write your own class: import javax.servlet.SingleThreadModel; import

Re: Single threaded web service

2004-04-22 Thread Tomasz Pik
Faraz Rasheed wrote: *Hi,* I am developing a web service using axis. The problem is that, by default, the axis web services are multithreaded (more than one threads are used to entertain user requests). What I want is a single threaded web service which uses a single thread to entertain

Single threaded web service

2004-04-21 Thread Faraz Rasheed
Hi,   I am developing a web service using axis. The problem is that, by default, the axis web services are multithreaded (more than one threads are used to entertain user requests). What I want is a single threaded web service which uses a single thread to entertain all the user requests