Re: Multiple invocation of servlet with the same URL request

2009-07-06 Thread Mitch Claborn
Check the access logs - you may be actually getting multiple requests. Mitch Claborn mi...@claborn.net Konstantin Kolinko wrote: > 2009/7/6 Daniele Development-ML : > >> (...) >> Looking at the log and all the printouts, I have noticed that the servlet is >> invoked four times (four log en

Re: Multiple invocation of servlet with the same URL request

2009-07-06 Thread Konstantin Kolinko
2009/7/6 Daniele Development-ML : >(...) > Looking at the log and all the printouts, I have noticed that the servlet is > invoked four times (four log entries in the database) instead of one. This > is also shown by the four System.out lines I found in the screen when > requesting the same URL. > >

Re: Multiple invocation of servlet with the same URL request

2009-07-06 Thread Daniele Development-ML
at java.lang.Thread.run(Thread.java:619) On Sun, Jul 5, 2009 at 11:05 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Daniele Development-ML [mailto:daniele@googlemail.com] > > Subject: Multiple invocation of servlet with the same URL request > &

RE: Multiple invocation of servlet with the same URL request

2009-07-05 Thread Caldarale, Charles R
> From: Daniele Development-ML [mailto:daniele@googlemail.com] > Subject: Multiple invocation of servlet with the same URL request > > Anybody has any hint about this problem and how to resolve it? It's you code - do more debugging. Start by including a stack trace wh

Multiple invocation of servlet with the same URL request

2009-07-05 Thread Daniele Development-ML
Hello everybody, I'm developing a web application using Struts and Tomcat as deployment container. A servlet of the application retrieves a BLOB object (ca 1 - 4 MB) from the local database and registers this activity in another table, of the same db. Looking at the log and all the printouts, I ha