Jean-Marc,
At the moment I tend to think that the problem seems to be on the
server-side. See if JBoss' logs can reveal anything useful.

Another thing to try is disabling stale connection check

SimpleHttpConnectionManager connman = new SimpleHttpConnectionManager();
connman.setConnectionStaleCheckingEnabled(true);
HttpClient client = new HttpClient(connman);

http://jakarta.apache.org/commons/httpclient/apidocs/org/apache/commons/httpclient/HttpConnection.html#setStaleCheckingEnabled(boolean)

See if that makes any difference in terms of performance

Oleg

On Sun, 2004-01-25 at 23:21, Jean-Marc Spaggiari wrote:
> > Jean-Marc,
> > I am afraid it is not possible to give you a definitive answer unless we
> > know in greater details where exactly the time is being spent. Take a
> > look at the HttpClient logging guide
> > <http://jakarta.apache.org/commons/httpclient/logging.html> and try to
> > produce the wirelog for HTTP sessions with and without the said
> > performance problem. The wirelogs output comparison may reveal the
> > difference between these two session and may provide hints as to what
> > the cause of the problem might be or at the very least where the
> > execution time is being spent. 
> > 
> > Cheers,
> > 
> > Oleg
> 
> 
> Hi Oleg, Hi all.
> 
> Here are the log without JBoss running on my own computer.
> 
> See below for log with JBoss, and below again for extract where the 
> problem occurs.
> 
> ========================================================================
> 2004/01/25 17:10:10:484 EST [DEBUG] HttpConnection - -Connection is 
> stale, closing...
> 2004/01/25 17:10:10:486 EST [DEBUG] HttpConnection - 
> -HttpConnection.setSoTimeout(0)
> 2004/01/25 17:10:10:489 EST [DEBUG] HttpMethodBase - -Execute loop try 1
> 2004/01/25 17:10:10:494 EST [DEBUG] wire - ->> "POST /JTrad/FrontServlet 
> HTTP/1.1[\r][\n]"
> 2004/01/25 17:10:10:494 EST [DEBUG] HttpMethodBase - -Adding Host 
> request header
> 2004/01/25 17:10:10:496 EST [DEBUG] wire - ->> "User-Agent: Mozilla/5.0 
> (X11; U; Linux i686; en-US; rv:1.6b) Gecko/20031210[\r][\n]"
> 2004/01/25 17:10:10:496 EST [DEBUG] wire - ->> "Host: 
> maison.spaggiari.org:8180[\r][\n]"
> 2004/01/25 17:10:10:497 EST [DEBUG] wire - ->> "Cookie: $Version=0; 
> JSESSIONID=IeC5xv-Yw6mpH5WnyKRmWg**; $Path=/JTrad[\r][\n]"
> 2004/01/25 17:10:10:498 EST [DEBUG] wire - ->> "Content-Length: 128[\r][\n]"
> 2004/01/25 17:10:10:498 EST [DEBUG] wire - ->> "[\r][\n]"
> 2004/01/25 17:10:10:499 EST [DEBUG] EntityEnclosingMethod - -Using 
> buffered request body
> 2004/01/25 17:10:10:499 EST [DEBUG] wire - ->> 
> "[0xfffd][0xfffd][0x0][0x5]sr[0x0][0x13]java.util.Hashtable[0x13][0xfffd][0xf]%!J[0xfffd][0xfffd][0x3][0x0][0x2]F[0x0][\n]"
> 2004/01/25 17:10:10:504 EST [DEBUG] wire - ->> 
> "[EMAIL PROTECTED]"
> 2004/01/25 17:10:10:504 EST [DEBUG] EntityEnclosingMethod - -Request 
> body sent
> 2004/01/25 17:10:10:540 EST [DEBUG] wire - -<< "HTTP/1.1 200 OK[\r][\n]"
> 2004/01/25 17:10:10:543 EST [DEBUG] wire - -<< "Transfer-Encoding: 
> chunked[\r][\n]"
> 2004/01/25 17:10:10:544 EST [DEBUG] wire - -<< "Date: Sun, 25 Jan 2004 
> 22:09:14 GMT[\r][\n]"
> 2004/01/25 17:10:10:544 EST [DEBUG] wire - -<< "Server: 
> Apache-Coyote/1.1[\r][\n]"
> 2004/01/25 17:10:10:545 EST [DEBUG] HttpConnection - 
> -HttpConnection.getSoTimeout()
> 2004/01/25 17:10:10:720 EST [DEBUG] wire - -<< "1"
> 2004/01/25 17:10:10:720 EST [DEBUG] wire - -<< "4"
> 2004/01/25 17:10:10:721 EST [DEBUG] wire - -<< "8"
> 2004/01/25 17:10:10:721 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:10:10:722 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:10:10:723 EST [DEBUG] wire - -<< "[0xfffd][0xfffd]"
> 2004/01/25 17:10:10:723 EST [DEBUG] wire - -<< "[0x0][0x5]"
> 2004/01/25 17:10:10:725 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:10:10:725 EST [DEBUG] wire - -<< "r"
> 2004/01/25 17:10:10:725 EST [DEBUG] wire - -<< "[0x0][0x10]"
> 2004/01/25 17:10:10:725 EST [DEBUG] wire - -<< "java.util.Vector"
> 2004/01/25 17:10:10:726 EST [DEBUG] wire - -<< 
> "[0xfffd][0xfffd]}[[0xfffd];[0xfffd][0x1]"
> 2004/01/25 17:10:10:726 EST [DEBUG] wire - -<< "[0x3]"
> 2004/01/25 17:10:10:726 EST [DEBUG] wire - -<< "[0x0][0x3]"
> 2004/01/25 17:10:10:726 EST [DEBUG] wire - -<< "I"
> 2004/01/25 17:10:10:727 EST [DEBUG] wire - -<< "[0x0][0x11]"
> 2004/01/25 17:10:10:727 EST [DEBUG] wire - -<< "capacityIncrement"
> 2004/01/25 17:10:10:727 EST [DEBUG] wire - -<< "I"
> 2004/01/25 17:10:10:730 EST [DEBUG] wire - -<< "[0x0][0xc]"
> 2004/01/25 17:10:10:731 EST [DEBUG] wire - -<< "elementCount"
> 2004/01/25 17:10:10:732 EST [DEBUG] wire - -<< "["
> 2004/01/25 17:10:10:732 EST [DEBUG] wire - -<< "[0x0][0xb]"
> 2004/01/25 17:10:10:732 EST [DEBUG] wire - -<< "elementData"
> 2004/01/25 17:10:10:733 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:10:10:733 EST [DEBUG] wire - -<< "[0x0][0x13]"
> 2004/01/25 17:10:10:734 EST [DEBUG] wire - -<< "[Ljava/lang/Object;"
> 2004/01/25 17:10:10:734 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:10:10:735 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:10:745 EST [DEBUG] wire - -<< 
> "[0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x3]"
> 2004/01/25 17:10:10:746 EST [DEBUG] wire - -<< "u"
> 2004/01/25 17:10:10:747 EST [DEBUG] wire - -<< "r"
> 2004/01/25 17:10:10:747 EST [DEBUG] wire - -<< "[0x0][0x13]"
> 2004/01/25 17:10:10:747 EST [DEBUG] wire - -<< "[Ljava.lang.Object;"
> 2004/01/25 17:10:10:748 EST [DEBUG] wire - -<< 
> "[0xfffd][0xfffd]X[0xfffd][0x10]s)l"
> 2004/01/25 17:10:10:748 EST [DEBUG] wire - -<< "[0x2]"
> 2004/01/25 17:10:10:749 EST [DEBUG] wire - -<< "[0x0][0x0]"
> 2004/01/25 17:10:10:749 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:10:10:749 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:10:756 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][\n]"
> 2004/01/25 17:10:10:757 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:10:10:757 EST [DEBUG] wire - -<< "r"
> 2004/01/25 17:10:10:758 EST [DEBUG] wire - -<< "[0x0]#"
> 2004/01/25 17:10:10:758 EST [DEBUG] wire - -<< 
> "org.spaggiari.jtrad.donnees.Domaine"
> 2004/01/25 17:10:10:759 EST [DEBUG] wire - -<< 
> "[0xfffd]=[0xfffd]1[0x1c][0xfffd][0x10][0xfffd]"
> 2004/01/25 17:10:10:759 EST [DEBUG] wire - -<< "[0x2]"
> 2004/01/25 17:10:10:759 EST [DEBUG] wire - -<< "[0x0][0x2]"
> 2004/01/25 17:10:10:760 EST [DEBUG] wire - -<< "I"
> 2004/01/25 17:10:10:760 EST [DEBUG] wire - -<< "[0x0][\n]"
> 2004/01/25 17:10:10:764 EST [DEBUG] wire - -<< "id_domaine"
> 2004/01/25 17:10:10:765 EST [DEBUG] wire - -<< "L"
> 2004/01/25 17:10:10:780 EST [DEBUG] wire - -<< "[0x0][0x7]"
> 2004/01/25 17:10:10:781 EST [DEBUG] wire - -<< "libelle"
> 2004/01/25 17:10:10:788 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:10:10:789 EST [DEBUG] wire - -<< "[0x0][0x12]"
> 2004/01/25 17:10:10:789 EST [DEBUG] wire - -<< "Ljava/lang/String;"
> 2004/01/25 17:10:10:793 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:10:10:794 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:10:798 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][0x1]"
> 2004/01/25 17:10:10:799 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:10:10:799 EST [DEBUG] wire - -<< "[0x0][0xc]"
> 2004/01/25 17:10:10:799 EST [DEBUG] wire - -<< "Informatique"
> 2004/01/25 17:10:10:800 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:10:10:803 EST [DEBUG] wire - -<< "q"
> 2004/01/25 17:10:10:804 EST [DEBUG] wire - -<< "[0x0]~[0x0][0x5]"
> 2004/01/25 17:10:10:804 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][0x2]"
> 2004/01/25 17:10:10:805 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:10:10:805 EST [DEBUG] wire - -<< "[0x0][0x7]"
> 2004/01/25 17:10:10:805 EST [DEBUG] wire - -<< "Medical"
> 2004/01/25 17:10:10:806 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:10:10:806 EST [DEBUG] wire - -<< "q"
> 2004/01/25 17:10:10:807 EST [DEBUG] wire - -<< "[0x0]~[0x0][0x5]"
> 2004/01/25 17:10:10:807 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][0x3]"
> 2004/01/25 17:10:10:807 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:10:10:808 EST [DEBUG] wire - -<< "[0x0][0x10]"
> 2004/01/25 17:10:10:808 EST [DEBUG] wire - -<< "Telecomunication"
> 2004/01/25 17:10:10:808 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:10:809 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:10:809 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:10:810 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:10:810 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:10:819 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:10:820 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:10:822 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:10:10:822 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:10:10:823 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:10:10:825 EST [DEBUG] wire - -<< "0"
> 2004/01/25 17:10:10:826 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:10:10:827 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:10:10:827 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:10:10:833 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:10:10:833 EST [DEBUG] HttpMethodBase - -Resorting to 
> protocol version default close connection policy
> 2004/01/25 17:10:10:834 EST [DEBUG] HttpMethodBase - -Should NOT close 
> connection, using HTTP/1.1.
> 2004/01/25 17:10:11:371 EST [DEBUG] HttpMethodBase - -Execute loop try 1
> 2004/01/25 17:10:11:391 EST [DEBUG] wire - ->> "POST /JTrad/FrontServlet 
> HTTP/1.1[\r][\n]"
> 2004/01/25 17:10:11:391 EST [DEBUG] HttpMethodBase - -Adding Host 
> request header
> 2004/01/25 17:10:11:393 EST [DEBUG] wire - ->> "User-Agent: Mozilla/5.0 
> (X11; U; Linux i686; en-US; rv:1.6b) Gecko/20031210[\r][\n]"
> 2004/01/25 17:10:11:394 EST [DEBUG] wire - ->> "Host: 
> maison.spaggiari.org:8180[\r][\n]"
> 2004/01/25 17:10:11:394 EST [DEBUG] wire - ->> "Cookie: $Version=0; 
> JSESSIONID=IeC5xv-Yw6mpH5WnyKRmWg**; $Path=/JTrad[\r][\n]"
> 2004/01/25 17:10:11:394 EST [DEBUG] wire - ->> "Content-Length: 131[\r][\n]"
> 2004/01/25 17:10:11:395 EST [DEBUG] wire - ->> "[\r][\n]"
> 2004/01/25 17:10:11:395 EST [DEBUG] EntityEnclosingMethod - -Using 
> buffered request body
> 2004/01/25 17:10:11:395 EST [DEBUG] wire - ->> 
> "[0xfffd][0xfffd][0x0][0x5]sr[0x0][0x13]java.util.Hashtable[0x13][0xfffd][0xf]%!J[0xfffd][0xfffd][0x3][0x0][0x2]F[0x0][\n]"
> 2004/01/25 17:10:11:395 EST [DEBUG] wire - ->> 
> "[EMAIL PROTECTED]"
> 2004/01/25 17:10:11:396 EST [DEBUG] wire - ->> 
> "ENTREPRISEt[0x0][0x7]handlert[0x0][0x7]DONNEESx"
> 2004/01/25 17:10:11:396 EST [DEBUG] EntityEnclosingMethod - -Request 
> body sent
> 2004/01/25 17:10:11:413 EST [DEBUG] wire - -<< "HTTP/1.1 200 OK[\r][\n]"
> 2004/01/25 17:10:11:414 EST [DEBUG] wire - -<< "Transfer-Encoding: 
> chunked[\r][\n]"
> 2004/01/25 17:10:11:414 EST [DEBUG] wire - -<< "Date: Sun, 25 Jan 2004 
> 22:09:14 GMT[\r][\n]"
> 2004/01/25 17:10:11:414 EST [DEBUG] wire - -<< "Server: 
> Apache-Coyote/1.1[\r][\n]"
> 2004/01/25 17:10:11:415 EST [DEBUG] HttpConnection - 
> -HttpConnection.getSoTimeout()
> 2004/01/25 17:10:11:551 EST [DEBUG] wire - -<< "1"
> 2004/01/25 17:10:11:551 EST [DEBUG] wire - -<< "4"
> 2004/01/25 17:10:11:551 EST [DEBUG] wire - -<< "0"
> 2004/01/25 17:10:11:551 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:10:11:551 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:10:11:552 EST [DEBUG] wire - -<< "[0xfffd][0xfffd]"
> 2004/01/25 17:10:11:552 EST [DEBUG] wire - -<< "[0x0][0x5]"
> 2004/01/25 17:10:11:553 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:10:11:553 EST [DEBUG] wire - -<< "r"
> 2004/01/25 17:10:11:553 EST [DEBUG] wire - -<< "[0x0][0x10]"
> 2004/01/25 17:10:11:553 EST [DEBUG] wire - -<< "java.util.Vector"
> 2004/01/25 17:10:11:554 EST [DEBUG] wire - -<< 
> "[0xfffd][0xfffd]}[[0xfffd];[0xfffd][0x1]"
> 2004/01/25 17:10:11:554 EST [DEBUG] wire - -<< "[0x3]"
> 2004/01/25 17:10:11:554 EST [DEBUG] wire - -<< "[0x0][0x3]"
> 2004/01/25 17:10:11:562 EST [DEBUG] wire - -<< "I"
> 2004/01/25 17:10:11:563 EST [DEBUG] wire - -<< "[0x0][0x11]"
> 2004/01/25 17:10:11:563 EST [DEBUG] wire - -<< "capacityIncrement"
> 2004/01/25 17:10:11:563 EST [DEBUG] wire - -<< "I"
> 2004/01/25 17:10:11:563 EST [DEBUG] wire - -<< "[0x0][0xc]"
> 2004/01/25 17:10:11:563 EST [DEBUG] wire - -<< "elementCount"
> 2004/01/25 17:10:11:564 EST [DEBUG] wire - -<< "["
> 2004/01/25 17:10:11:564 EST [DEBUG] wire - -<< "[0x0][0xb]"
> 2004/01/25 17:10:11:564 EST [DEBUG] wire - -<< "elementData"
> 2004/01/25 17:10:11:564 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:10:11:564 EST [DEBUG] wire - -<< "[0x0][0x13]"
> 2004/01/25 17:10:11:565 EST [DEBUG] wire - -<< "[Ljava/lang/Object;"
> 2004/01/25 17:10:11:565 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:10:11:565 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:11:565 EST [DEBUG] wire - -<< 
> "[0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x3]"
> 2004/01/25 17:10:11:565 EST [DEBUG] wire - -<< "u"
> 2004/01/25 17:10:11:566 EST [DEBUG] wire - -<< "r"
> 2004/01/25 17:10:11:566 EST [DEBUG] wire - -<< "[0x0][0x13]"
> 2004/01/25 17:10:11:566 EST [DEBUG] wire - -<< "[Ljava.lang.Object;"
> 2004/01/25 17:10:11:571 EST [DEBUG] wire - -<< 
> "[0xfffd][0xfffd]X[0xfffd][0x10]s)l"
> 2004/01/25 17:10:11:572 EST [DEBUG] wire - -<< "[0x2]"
> 2004/01/25 17:10:11:572 EST [DEBUG] wire - -<< "[0x0][0x0]"
> 2004/01/25 17:10:11:572 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:10:11:572 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:11:572 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][\n]"
> 2004/01/25 17:10:11:573 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:10:11:574 EST [DEBUG] wire - -<< "r"
> 2004/01/25 17:10:11:578 EST [DEBUG] wire - -<< "[0x0]&"
> 2004/01/25 17:10:11:578 EST [DEBUG] wire - -<< 
> "org.spaggiari.jtrad.donnees.Entreprise"
> 2004/01/25 17:10:11:579 EST [DEBUG] wire - -<< 
> "[0xfffd][0x19][0xfffd]0[0xfffd][0x10][0xfffd][0xfffd]"
> 2004/01/25 17:10:11:580 EST [DEBUG] wire - -<< "[0x2]"
> 2004/01/25 17:10:11:580 EST [DEBUG] wire - -<< "[0x0][0x2]"
> 2004/01/25 17:10:11:580 EST [DEBUG] wire - -<< "I"
> 2004/01/25 17:10:11:580 EST [DEBUG] wire - -<< "[0x0][\r]"
> 2004/01/25 17:10:11:580 EST [DEBUG] wire - -<< "id_entreprise"
> 2004/01/25 17:10:11:581 EST [DEBUG] wire - -<< "L"
> 2004/01/25 17:10:11:581 EST [DEBUG] wire - -<< "[0x0][0x7]"
> 2004/01/25 17:10:11:581 EST [DEBUG] wire - -<< "libelle"
> 2004/01/25 17:10:11:581 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:10:11:581 EST [DEBUG] wire - -<< "[0x0][0x12]"
> 2004/01/25 17:10:11:585 EST [DEBUG] wire - -<< "Ljava/lang/String;"
> 2004/01/25 17:10:11:593 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:10:11:594 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:11:600 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][0x1]"
> 2004/01/25 17:10:11:600 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:10:11:601 EST [DEBUG] wire - -<< "[0x0][0x4]"
> 2004/01/25 17:10:11:602 EST [DEBUG] wire - -<< "Bell"
> 2004/01/25 17:10:11:602 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:10:11:603 EST [DEBUG] wire - -<< "q"
> 2004/01/25 17:10:11:603 EST [DEBUG] wire - -<< "[0x0]~[0x0][0x5]"
> 2004/01/25 17:10:11:603 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][0x3]"
> 2004/01/25 17:10:11:604 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:10:11:604 EST [DEBUG] wire - -<< "[0x0][0xe]"
> 2004/01/25 17:10:11:604 EST [DEBUG] wire - -<< "Canadia Netwok"
> 2004/01/25 17:10:11:605 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:10:11:605 EST [DEBUG] wire - -<< "q"
> 2004/01/25 17:10:11:605 EST [DEBUG] wire - -<< "[0x0]~[0x0][0x5]"
> 2004/01/25 17:10:11:606 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][0x2]"
> 2004/01/25 17:10:11:606 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:10:11:606 EST [DEBUG] wire - -<< "[0x0][0x3]"
> 2004/01/25 17:10:11:607 EST [DEBUG] wire - -<< "IBM"
> 2004/01/25 17:10:11:607 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:11:607 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:11:608 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:11:608 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:11:609 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:11:610 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:11:610 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:10:11:618 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:10:11:619 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:10:11:619 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:10:11:619 EST [DEBUG] wire - -<< "0"
> 2004/01/25 17:10:11:620 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:10:11:623 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:10:11:623 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:10:11:624 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:10:11:624 EST [DEBUG] HttpMethodBase - -Resorting to 
> protocol version default close connection policy
> 2004/01/25 17:10:11:624 EST [DEBUG] HttpMethodBase - -Should NOT close 
> connection, using HTTP/1.1.
> ========================================================================
> 
> ========================================================================
> 2004/01/25 17:14:23:891 EST [DEBUG] HttpMethodBase - -Execute loop try 1
> 2004/01/25 17:14:23:914 EST [DEBUG] wire - ->> "POST /JTrad/FrontServlet 
> HTTP/1.1[\r][\n]"
> 2004/01/25 17:14:23:915 EST [DEBUG] HttpMethodBase - -Adding Host 
> request header
> 2004/01/25 17:14:23:916 EST [DEBUG] wire - ->> "User-Agent: Mozilla/5.0 
> (X11; U; Linux i686; en-US; rv:1.6b) Gecko/20031210[\r][\n]"
> 2004/01/25 17:14:23:917 EST [DEBUG] wire - ->> "Host: 
> maison.spaggiari.org:8180[\r][\n]"
> 2004/01/25 17:14:23:918 EST [DEBUG] wire - ->> "Cookie: $Version=0; 
> JSESSIONID=68e0to2MGzF94Jmb5x6YAQ**; $Path=/JTrad[\r][\n]"
> 2004/01/25 17:14:23:918 EST [DEBUG] wire - ->> "Content-Length: 128[\r][\n]"
> 2004/01/25 17:14:23:919 EST [DEBUG] wire - ->> "[\r][\n]"
> 2004/01/25 17:14:23:919 EST [DEBUG] EntityEnclosingMethod - -Using 
> buffered request body
> 2004/01/25 17:14:23:920 EST [DEBUG] wire - ->> 
> "[0xfffd][0xfffd][0x0][0x5]sr[0x0][0x13]java.util.Hashtable[0x13][0xfffd][0xf]%!J[0xfffd][0xfffd][0x3][0x0][0x2]F[0x0][\n]"
> 2004/01/25 17:14:23:926 EST [DEBUG] wire - ->> 
> "[EMAIL PROTECTED]"
> 2004/01/25 17:14:23:927 EST [DEBUG] EntityEnclosingMethod - -Request 
> body sent
> 2004/01/25 17:15:09:094 EST [DEBUG] wire - -<< "HTTP/1.1 200 OK[\r][\n]"
> 2004/01/25 17:15:09:096 EST [DEBUG] wire - -<< "Transfer-Encoding: 
> chunked[\r][\n]"
> 2004/01/25 17:15:09:096 EST [DEBUG] wire - -<< "Date: Sun, 25 Jan 2004 
> 22:14:12 GMT[\r][\n]"
> 2004/01/25 17:15:09:096 EST [DEBUG] wire - -<< "Server: 
> Apache-Coyote/1.1[\r][\n]"
> 2004/01/25 17:15:09:097 EST [DEBUG] HttpConnection - 
> -HttpConnection.getSoTimeout()
> 2004/01/25 17:15:09:287 EST [DEBUG] wire - -<< "1"
> 2004/01/25 17:15:09:288 EST [DEBUG] wire - -<< "4"
> 2004/01/25 17:15:09:288 EST [DEBUG] wire - -<< "8"
> 2004/01/25 17:15:09:288 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:15:09:288 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:15:09:289 EST [DEBUG] wire - -<< "[0xfffd][0xfffd]"
> 2004/01/25 17:15:09:290 EST [DEBUG] wire - -<< "[0x0][0x5]"
> 2004/01/25 17:15:09:291 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:15:09:292 EST [DEBUG] wire - -<< "r"
> 2004/01/25 17:15:09:293 EST [DEBUG] wire - -<< "[0x0][0x10]"
> 2004/01/25 17:15:09:293 EST [DEBUG] wire - -<< "java.util.Vector"
> 2004/01/25 17:15:09:293 EST [DEBUG] wire - -<< 
> "[0xfffd][0xfffd]}[[0xfffd];[0xfffd][0x1]"
> 2004/01/25 17:15:09:293 EST [DEBUG] wire - -<< "[0x3]"
> 2004/01/25 17:15:09:294 EST [DEBUG] wire - -<< "[0x0][0x3]"
> 2004/01/25 17:15:09:294 EST [DEBUG] wire - -<< "I"
> 2004/01/25 17:15:09:295 EST [DEBUG] wire - -<< "[0x0][0x11]"
> 2004/01/25 17:15:09:295 EST [DEBUG] wire - -<< "capacityIncrement"
> 2004/01/25 17:15:09:295 EST [DEBUG] wire - -<< "I"
> 2004/01/25 17:15:09:295 EST [DEBUG] wire - -<< "[0x0][0xc]"
> 2004/01/25 17:15:09:298 EST [DEBUG] wire - -<< "elementCount"
> 2004/01/25 17:15:09:299 EST [DEBUG] wire - -<< "["
> 2004/01/25 17:15:09:299 EST [DEBUG] wire - -<< "[0x0][0xb]"
> 2004/01/25 17:15:09:299 EST [DEBUG] wire - -<< "elementData"
> 2004/01/25 17:15:09:299 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:15:09:299 EST [DEBUG] wire - -<< "[0x0][0x13]"
> 2004/01/25 17:15:09:300 EST [DEBUG] wire - -<< "[Ljava/lang/Object;"
> 2004/01/25 17:15:09:301 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:15:09:301 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:15:09:307 EST [DEBUG] wire - -<< 
> "[0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x3]"
> 2004/01/25 17:15:09:307 EST [DEBUG] wire - -<< "u"
> 2004/01/25 17:15:09:308 EST [DEBUG] wire - -<< "r"
> 2004/01/25 17:15:09:308 EST [DEBUG] wire - -<< "[0x0][0x13]"
> 2004/01/25 17:15:09:308 EST [DEBUG] wire - -<< "[Ljava.lang.Object;"
> 2004/01/25 17:15:09:308 EST [DEBUG] wire - -<< 
> "[0xfffd][0xfffd]X[0xfffd][0x10]s)l"
> 2004/01/25 17:15:09:309 EST [DEBUG] wire - -<< "[0x2]"
> 2004/01/25 17:15:09:309 EST [DEBUG] wire - -<< "[0x0][0x0]"
> 2004/01/25 17:15:09:309 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:15:09:309 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:15:09:312 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][\n]"
> 2004/01/25 17:15:09:313 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:15:09:313 EST [DEBUG] wire - -<< "r"
> 2004/01/25 17:15:09:313 EST [DEBUG] wire - -<< "[0x0]#"
> 2004/01/25 17:15:09:314 EST [DEBUG] wire - -<< 
> "org.spaggiari.jtrad.donnees.Domaine"
> 2004/01/25 17:15:09:314 EST [DEBUG] wire - -<< 
> "[0xfffd]=[0xfffd]1[0x1c][0xfffd][0x10][0xfffd]"
> 2004/01/25 17:15:09:315 EST [DEBUG] wire - -<< "[0x2]"
> 2004/01/25 17:15:09:315 EST [DEBUG] wire - -<< "[0x0][0x2]"
> 2004/01/25 17:15:09:315 EST [DEBUG] wire - -<< "I"
> 2004/01/25 17:15:09:316 EST [DEBUG] wire - -<< "[0x0][\n]"
> 2004/01/25 17:15:09:316 EST [DEBUG] wire - -<< "id_domaine"
> 2004/01/25 17:15:09:316 EST [DEBUG] wire - -<< "L"
> 2004/01/25 17:15:09:332 EST [DEBUG] wire - -<< "[0x0][0x7]"
> 2004/01/25 17:15:09:333 EST [DEBUG] wire - -<< "libelle"
> 2004/01/25 17:15:09:339 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:15:09:341 EST [DEBUG] wire - -<< "[0x0][0x12]"
> 2004/01/25 17:15:09:342 EST [DEBUG] wire - -<< "Ljava/lang/String;"
> 2004/01/25 17:15:09:353 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:15:09:354 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:15:09:358 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][0x1]"
> 2004/01/25 17:15:09:359 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:15:09:359 EST [DEBUG] wire - -<< "[0x0][0xc]"
> 2004/01/25 17:15:09:360 EST [DEBUG] wire - -<< "Informatique"
> 2004/01/25 17:15:09:360 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:15:09:362 EST [DEBUG] wire - -<< "q"
> 2004/01/25 17:15:09:363 EST [DEBUG] wire - -<< "[0x0]~[0x0][0x5]"
> 2004/01/25 17:15:09:363 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][0x2]"
> 2004/01/25 17:15:09:364 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:15:09:364 EST [DEBUG] wire - -<< "[0x0][0x7]"
> 2004/01/25 17:15:09:364 EST [DEBUG] wire - -<< "Medical"
> 2004/01/25 17:15:09:365 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:15:09:365 EST [DEBUG] wire - -<< "q"
> 2004/01/25 17:15:09:365 EST [DEBUG] wire - -<< "[0x0]~[0x0][0x5]"
> 2004/01/25 17:15:09:366 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][0x3]"
> 2004/01/25 17:15:09:366 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:15:09:367 EST [DEBUG] wire - -<< "[0x0][0x10]"
> 2004/01/25 17:15:09:367 EST [DEBUG] wire - -<< "Telecomunication"
> 2004/01/25 17:15:09:367 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:15:09:368 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:15:09:368 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:15:09:368 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:15:09:369 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:15:09:369 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:15:09:369 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:15:09:370 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:15:09:370 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:15:09:376 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:15:09:377 EST [DEBUG] wire - -<< "0"
> 2004/01/25 17:15:09:377 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:15:09:379 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:15:09:380 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:15:09:382 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:15:09:383 EST [DEBUG] HttpMethodBase - -Resorting to 
> protocol version default close connection policy
> 2004/01/25 17:15:09:386 EST [DEBUG] HttpMethodBase - -Should NOT close 
> connection, using HTTP/1.1.
> 2004/01/25 17:15:09:920 EST [DEBUG] HttpMethodBase - -Execute loop try 1
> 2004/01/25 17:15:09:941 EST [DEBUG] wire - ->> "POST /JTrad/FrontServlet 
> HTTP/1.1[\r][\n]"
> 2004/01/25 17:15:09:941 EST [DEBUG] HttpMethodBase - -Adding Host 
> request header
> 2004/01/25 17:15:09:941 EST [DEBUG] wire - ->> "User-Agent: Mozilla/5.0 
> (X11; U; Linux i686; en-US; rv:1.6b) Gecko/20031210[\r][\n]"
> 2004/01/25 17:15:09:942 EST [DEBUG] wire - ->> "Host: 
> maison.spaggiari.org:8180[\r][\n]"
> 2004/01/25 17:15:09:942 EST [DEBUG] wire - ->> "Cookie: $Version=0; 
> JSESSIONID=68e0to2MGzF94Jmb5x6YAQ**; $Path=/JTrad[\r][\n]"
> 2004/01/25 17:15:09:942 EST [DEBUG] wire - ->> "Content-Length: 131[\r][\n]"
> 2004/01/25 17:15:09:943 EST [DEBUG] wire - ->> "[\r][\n]"
> 2004/01/25 17:15:09:943 EST [DEBUG] EntityEnclosingMethod - -Using 
> buffered request body
> 2004/01/25 17:15:09:943 EST [DEBUG] wire - ->> 
> "[0xfffd][0xfffd][0x0][0x5]sr[0x0][0x13]java.util.Hashtable[0x13][0xfffd][0xf]%!J[0xfffd][0xfffd][0x3][0x0][0x2]F[0x0][\n]"
> 2004/01/25 17:15:09:944 EST [DEBUG] wire - ->> 
> "[EMAIL PROTECTED]"
> 2004/01/25 17:15:09:944 EST [DEBUG] wire - ->> 
> "ENTREPRISEt[0x0][0x7]handlert[0x0][0x7]DONNEESx"
> 2004/01/25 17:15:09:944 EST [DEBUG] EntityEnclosingMethod - -Request 
> body sent
> 2004/01/25 17:16:09:143 EST [DEBUG] wire - -<< "HTTP/1.1 200 OK[\r][\n]"
> 2004/01/25 17:16:09:145 EST [DEBUG] wire - -<< "Transfer-Encoding: 
> chunked[\r][\n]"
> 2004/01/25 17:16:09:145 EST [DEBUG] wire - -<< "Date: Sun, 25 Jan 2004 
> 22:15:12 GMT[\r][\n]"
> 2004/01/25 17:16:09:145 EST [DEBUG] wire - -<< "Server: 
> Apache-Coyote/1.1[\r][\n]"
> 2004/01/25 17:16:09:145 EST [DEBUG] HttpConnection - 
> -HttpConnection.getSoTimeout()
> 2004/01/25 17:16:09:285 EST [DEBUG] wire - -<< "1"
> 2004/01/25 17:16:09:286 EST [DEBUG] wire - -<< "4"
> 2004/01/25 17:16:09:294 EST [DEBUG] wire - -<< "0"
> 2004/01/25 17:16:09:295 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:16:09:295 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:16:09:295 EST [DEBUG] wire - -<< "[0xfffd][0xfffd]"
> 2004/01/25 17:16:09:295 EST [DEBUG] wire - -<< "[0x0][0x5]"
> 2004/01/25 17:16:09:296 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:16:09:296 EST [DEBUG] wire - -<< "r"
> 2004/01/25 17:16:09:296 EST [DEBUG] wire - -<< "[0x0][0x10]"
> 2004/01/25 17:16:09:296 EST [DEBUG] wire - -<< "java.util.Vector"
> 2004/01/25 17:16:09:296 EST [DEBUG] wire - -<< 
> "[0xfffd][0xfffd]}[[0xfffd];[0xfffd][0x1]"
> 2004/01/25 17:16:09:296 EST [DEBUG] wire - -<< "[0x3]"
> 2004/01/25 17:16:09:297 EST [DEBUG] wire - -<< "[0x0][0x3]"
> 2004/01/25 17:16:09:297 EST [DEBUG] wire - -<< "I"
> 2004/01/25 17:16:09:297 EST [DEBUG] wire - -<< "[0x0][0x11]"
> 2004/01/25 17:16:09:299 EST [DEBUG] wire - -<< "capacityIncrement"
> 2004/01/25 17:16:09:299 EST [DEBUG] wire - -<< "I"
> 2004/01/25 17:16:09:299 EST [DEBUG] wire - -<< "[0x0][0xc]"
> 2004/01/25 17:16:09:300 EST [DEBUG] wire - -<< "elementCount"
> 2004/01/25 17:16:09:300 EST [DEBUG] wire - -<< "["
> 2004/01/25 17:16:09:300 EST [DEBUG] wire - -<< "[0x0][0xb]"
> 2004/01/25 17:16:09:300 EST [DEBUG] wire - -<< "elementData"
> 2004/01/25 17:16:09:300 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:16:09:301 EST [DEBUG] wire - -<< "[0x0][0x13]"
> 2004/01/25 17:16:09:301 EST [DEBUG] wire - -<< "[Ljava/lang/Object;"
> 2004/01/25 17:16:09:301 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:16:09:301 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:16:09:301 EST [DEBUG] wire - -<< 
> "[0x0][0x0][0x0][0x0][0x0][0x0][0x0][0x3]"
> 2004/01/25 17:16:09:306 EST [DEBUG] wire - -<< "u"
> 2004/01/25 17:16:09:306 EST [DEBUG] wire - -<< "r"
> 2004/01/25 17:16:09:307 EST [DEBUG] wire - -<< "[0x0][0x13]"
> 2004/01/25 17:16:09:307 EST [DEBUG] wire - -<< "[Ljava.lang.Object;"
> 2004/01/25 17:16:09:312 EST [DEBUG] wire - -<< 
> "[0xfffd][0xfffd]X[0xfffd][0x10]s)l"
> 2004/01/25 17:16:09:312 EST [DEBUG] wire - -<< "[0x2]"
> 2004/01/25 17:16:09:312 EST [DEBUG] wire - -<< "[0x0][0x0]"
> 2004/01/25 17:16:09:313 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:16:09:313 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:16:09:313 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][\n]"
> 2004/01/25 17:16:09:313 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:16:09:313 EST [DEBUG] wire - -<< "r"
> 2004/01/25 17:16:09:313 EST [DEBUG] wire - -<< "[0x0]&"
> 2004/01/25 17:16:09:314 EST [DEBUG] wire - -<< 
> "org.spaggiari.jtrad.donnees.Entreprise"
> 2004/01/25 17:16:09:315 EST [DEBUG] wire - -<< 
> "[0xfffd][0x19][0xfffd]0[0xfffd][0x10][0xfffd][0xfffd]"
> 2004/01/25 17:16:09:315 EST [DEBUG] wire - -<< "[0x2]"
> 2004/01/25 17:16:09:315 EST [DEBUG] wire - -<< "[0x0][0x2]"
> 2004/01/25 17:16:09:315 EST [DEBUG] wire - -<< "I"
> 2004/01/25 17:16:09:316 EST [DEBUG] wire - -<< "[0x0][\r]"
> 2004/01/25 17:16:09:316 EST [DEBUG] wire - -<< "id_entreprise"
> 2004/01/25 17:16:09:316 EST [DEBUG] wire - -<< "L"
> 2004/01/25 17:16:09:316 EST [DEBUG] wire - -<< "[0x0][0x7]"
> 2004/01/25 17:16:09:316 EST [DEBUG] wire - -<< "libelle"
> 2004/01/25 17:16:09:316 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:16:09:317 EST [DEBUG] wire - -<< "[0x0][0x12]"
> 2004/01/25 17:16:09:321 EST [DEBUG] wire - -<< "Ljava/lang/String;"
> 2004/01/25 17:16:09:340 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:16:09:341 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:16:09:347 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][0x1]"
> 2004/01/25 17:16:09:347 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:16:09:348 EST [DEBUG] wire - -<< "[0x0][0x4]"
> 2004/01/25 17:16:09:348 EST [DEBUG] wire - -<< "Bell"
> 2004/01/25 17:16:09:348 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:16:09:349 EST [DEBUG] wire - -<< "q"
> 2004/01/25 17:16:09:349 EST [DEBUG] wire - -<< "[0x0]~[0x0][0x5]"
> 2004/01/25 17:16:09:349 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][0x3]"
> 2004/01/25 17:16:09:350 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:16:09:353 EST [DEBUG] wire - -<< "[0x0][0xe]"
> 2004/01/25 17:16:09:353 EST [DEBUG] wire - -<< "Canadia Netwok"
> 2004/01/25 17:16:09:354 EST [DEBUG] wire - -<< "s"
> 2004/01/25 17:16:09:354 EST [DEBUG] wire - -<< "q"
> 2004/01/25 17:16:09:354 EST [DEBUG] wire - -<< "[0x0]~[0x0][0x5]"
> 2004/01/25 17:16:09:355 EST [DEBUG] wire - -<< "[0x0][0x0][0x0][0x2]"
> 2004/01/25 17:16:09:355 EST [DEBUG] wire - -<< "t"
> 2004/01/25 17:16:09:355 EST [DEBUG] wire - -<< "[0x0][0x3]"
> 2004/01/25 17:16:09:356 EST [DEBUG] wire - -<< "IBM"
> 2004/01/25 17:16:09:356 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:16:09:357 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:16:09:357 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:16:09:358 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:16:09:358 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:16:09:358 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:16:09:358 EST [DEBUG] wire - -<< "p"
> 2004/01/25 17:16:09:359 EST [DEBUG] wire - -<< "x"
> 2004/01/25 17:16:09:359 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:16:09:359 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:16:09:360 EST [DEBUG] wire - -<< "0"
> 2004/01/25 17:16:09:360 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:16:09:366 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:16:09:366 EST [DEBUG] wire - -<< "[\r]"
> 2004/01/25 17:16:09:367 EST [DEBUG] wire - -<< "[\n]"
> 2004/01/25 17:16:09:367 EST [DEBUG] HttpMethodBase - -Resorting to 
> protocol version default close connection policy
> 2004/01/25 17:16:09:367 EST [DEBUG] HttpMethodBase - -Should NOT close 
> connection, using HTTP/1.1.
> ========================================================================
> 
> 
> 
> 
> With JBoss running 17:15:09  and after 17:16:09 ... 1 minute later ...
> 
> 2004/01/25 17:15:09:944 EST [DEBUG] wire - ->> 
> "ENTREPRISEt[0x0][0x7]handlert[0x0][0x7]DONNEESx"
> 2004/01/25 17:15:09:944 EST [DEBUG] EntityEnclosingMethod - -Request 
> body sent
> 2004/01/25 17:16:09:143 EST [DEBUG] wire - -<< "HTTP/1.1 200 OK[\r][\n]"
> 2004/01/25 17:16:09:145 EST [DEBUG] wire - -<< "Transfer-Encoding: 
> chunked[\r][\n]"
> 
> 
> Without JBoss running 17:10:11 and after 17:10:11 .... :(((
> 
> 2004/01/25 17:10:11:396 EST [DEBUG] wire - ->> 
> "ENTREPRISEt[0x0][0x7]handlert[0x0][0x7]DONNEESx"
> 2004/01/25 17:10:11:396 EST [DEBUG] EntityEnclosingMethod - -Request 
> body sent
> 2004/01/25 17:10:11:413 EST [DEBUG] wire - -<< "HTTP/1.1 200 OK[\r][\n]"
> 2004/01/25 17:10:11:414 EST [DEBUG] wire - -<< "Transfer-Encoding: 
> chunked[\r][\n]"
> 
> 
> What's happend between Request body sent and HTTP/1.1 ? It's se server 
> that is writting HTTP/1.1 200 OK ? Is'nt it ? I'm going to add a trace 
> on the serveur for seeing when it is receiving the request ...
> 
> JMS.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to