> i tried to put a bean in the server-side so that each thread would pour
> data into it. but how does JSP would access that bean ? i am
[quoted text clipped - 10 lines]
> please suggest example code.
> regards
hello,
how about trying to create an instance in the servlet
a sort of threadmanager this instance gets the parameters from
the jsp on one hand create thread instances that do the calculation.
when the thread finishes it returns the result to the threadmanager.
The instance of the threadmanager has to be session scope so that
the jsp each 5 sec can see the results in the threadmanager.
I hope this helps