RE: Multiple requests to the same servlet is problem

2003-10-30 Thread Edson Alves Pereira
-feira, 29 de outubro de 2003 9:55 Para: Tomcat Users List Assunto: Re: Multiple requests to the same servlet is problem Can you post the servlet code? Are you using global variables in you logic? If so, you probably have a threading issue. On Wednesday 29 October 2003 08:07 am

Multiple requests to the same servlet is problem

2003-10-29 Thread Edson Alves Pereira
Hello folks, i have one page with iframes, each iframe has a GET request, to a servlet that must bring description for a product code, and therefore each iframe has a different request like: url=/osctrl/exec/ProductDescription?code=478541.1 But when tomcat seems to confuse those

RE: Multiple requests to the same servlet is problem

2003-10-29 Thread Bodycombe, Andrew
Sounds like your servlet is not thread-safe. Have you got any instance variables declared in your servlet class? -Original Message- From: Edson Alves Pereira [mailto:[EMAIL PROTECTED] Sent: 29 October 2003 13:07 To: 'Tomcat-User List' Subject: Multiple requests to the same servlet

RE: Multiple requests to the same servlet is problem

2003-10-29 Thread Edson Alves Pereira
Enviada: quarta-feira, 29 de outubro de 2003 9:08 Para: 'Tomcat Users List' Assunto: RE: Multiple requests to the same servlet is problem Sounds like your servlet is not thread-safe. Have you got any instance variables declared in your servlet class? -Original

RE: Multiple requests to the same servlet is problem

2003-10-29 Thread Bodycombe, Andrew
PROTECTED] Sent: 29 October 2003 13:49 To: 'Tomcat Users List' Subject: RE: Multiple requests to the same servlet is problem ThereĀ“s no variable that would control that behavior, if reload each iframe, one after another, it fine ( using mouse for example ). But tell me, a thread-safe servlet

Re: Multiple requests to the same servlet is problem

2003-10-29 Thread bsouther
Can you post the servlet code? Are you using global variables in you logic? If so, you probably have a threading issue. On Wednesday 29 October 2003 08:07 am, you wrote: Hello folks, i have one page with iframes, each iframe has a GET request, to a servlet that must bring description