RE: connection timeout for Call

2004-12-30 Thread Julien ALLANOS
Selon Patrick Martin <[EMAIL PROTECTED]>: > I suspect the timeout you're seeing the tpcip-level timeout, which is > perhaps not controlled/accounted for in the Call timeout. > > Try creating a simple web service that sleeps for 10010 seconds and > invoke that... > > Hope this helps, > > Patrick >

RE: connection timeout for Call

2004-12-30 Thread Patrick Martin
I suspect the timeout you're seeing the tpcip-level timeout, which is perhaps not controlled/accounted for in the Call timeout. Try creating a simple web service that sleeps for 10010 seconds and invoke that... Hope this helps, Patrick -Original Message- From: Julien ALLANOS [mailto:[EM

RE: Connection Timeout

2004-12-02 Thread Bernolet, Luc [PRDBE Extern]
Georgia, Sorry: it should be 0 (not -1). Luc. -Original Message- From: Zhou Jian Han [mailto:[EMAIL PROTECTED] Sent: vrijdag 3 december 2004 00:54 To: [EMAIL PROTECTED] Subject: RE: Connection Timeout Hi Luc, I just tested with timeout set to -1, but it throws out runtime exception

RE: Connection Timeout

2004-12-02 Thread Simon Fell
Set it to 0 > -Original Message- > From: Zhou Jian Han [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 02, 2004 3:54 PM > To: [EMAIL PROTECTED] > Subject: RE: Connection Timeout > > Hi Luc, > I just tested with timeout set to -1, but it throws out >

RE: Connection Timeout

2004-12-02 Thread Zhou Jian Han
PROTECTED] Sent: Wednesday, December 01, 2004 10:10 PM To: '[EMAIL PROTECTED]' Subject: RE: Connection Timeout I think you should specify -1 as timeout value. Regards, Luc. -Original Message- From: Zhou Jian Han [mailto:[EMAIL PROTECTED] Sent: woensdag 1 december 2004 18:44 To: [EMA

RE: Connection Timeout

2004-12-01 Thread Bernolet, Luc [PRDBE Extern]
I think you should specify -1 as timeout value. Regards, Luc. -Original Message- From: Zhou Jian Han [mailto:[EMAIL PROTECTED] Sent: woensdag 1 december 2004 18:44 To: [EMAIL PROTECTED] Subject: RE: Connection Timeout Hi, Do you know is there anyway to set no-timeout for the client

RE: Connection Timeout

2004-12-01 Thread Bernolet, Luc [PRDBE Extern]
EMAIL PROTECTED] Sent: donderdag 2 december 2004 03:20 To: [EMAIL PROTECTED] Subject: Re: Connection Timeout >From your answer seems the problem is from the client side. The client disconnect first from the webservice. So there is nothing wrong with the web service (axis)? Do axis guarantees

Re: Connection Timeout

2004-12-01 Thread Mohammad Irfan
>From your answer seems the problem is from the client side. The client disconnect first from the webservice. So there is nothing wrong with the web service (axis)? Do axis guarantees that it won't disconnect any request? thanks. On Wed, 1 Dec 2004 11:44:17 +0100, Bernolet, Luc [PRDBE Extern] <[E

RE: Connection Timeout

2004-12-01 Thread Zhou Jian Han
Hi, Do you know is there anyway to set no-timeout for the client request? Thanks, Georgia -Original Message- From: Bernolet, Luc [PRDBE Extern] [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 01, 2004 2:44 AM To: '[EMAIL PROTECTED]' Subject: RE: Connection Timeout Hi

RE: Connection Timeout

2004-12-01 Thread Bernolet, Luc [PRDBE Extern]
Hi, I had a similar problem. The following helped for me: ... Service service = new Service(); Call call = (Call) service.createCall(); String endpoint = "..."; call.setTargetEndpointAddress(new URL(endpoint)); try { call.setTimeout(new Integer(360));