Re: Axis memory leak

2005-01-15 Thread Davanum Srinivas
Great job guys -- dims On Fri, 14 Jan 2005 17:01:25 -0800, Lyndon Tiu <[EMAIL PROTECTED]> wrote: > V D wrote: > > > > > I reported it at: > > > > http://issues.apache.org/jira/browse/AXIS-1765 > > > Please give credit where credit is due. > > I found this issue but it was my colleagu

Re: Axis memory leak

2005-01-14 Thread Lyndon Tiu
V D wrote: I reported it at: http://issues.apache.org/jira/browse/AXIS-1765 Please give credit where credit is due. I found this issue but it was my colleague Malcolm Walker of Latitude Geographics Group Ltd. who found the fix. If there is anywhere in the bug report to put this, please do so. He

Re: Axis memory leak

2005-01-14 Thread V D
I reported it at: http://issues.apache.org/jira/browse/AXIS-1765 Tim K. (Gmane) wrote: Can you please file a bug for this at:

Re: Axis memory leak

2005-01-14 Thread Tim K. (Gmane)
Can you please file a bug for this at: http://issues.apache.org/jira/ for project Axis Thanks. Tim Vy Ho wrote: That does it. The memory no longer go up. The way I do it is inside the generated stub, I wrap the call with a try/catch/finally, and in that, I put your code below. I am not sure if

Re: Axis memory leak

2005-01-14 Thread Vy Ho
That does it. The memory no longer go up. The way I do it is inside the generated stub, I wrap the call with a try/catch/finally, and in that, I put your code below. I am not sure if this is the best way of doing it. However, I am just testing. I won't use this code though. In client-side s

Re: Axis memory leak

2005-01-14 Thread Vy Ho
WAJSBERG Julien RD-BIZZ wrote: Vy Ho a écrit : In client-side stub code, look for the call object and try: Call.getMessageContext().getRequestMessage().getSOAPEnvelope().getRecorder().clear(); -- Lyndon Tiu I can choose not to use the application scope for now. However, this shows a very seri

Re: Axis memory leak

2005-01-14 Thread WAJSBERG Julien RD-BIZZ
Vy Ho a écrit : In client-side stub code, look for the call object and try: Call.getMessageContext().getRequestMessage().getSOAPEnvelope().getRecorder().clear(); -- Lyndon Tiu I can choose not to use the application scope for now. However, this shows a very serious problem with the generated

Re: Axis memory leak

2005-01-14 Thread Vy Ho
In client-side stub code, look for the call object and try: Call.getMessageContext().getRequestMessage().getSOAPEnvelope().getRecorder().clear(); -- Lyndon Tiu I can choose not to use the application scope for now. However, this shows a very serious problem with the generated stub I believe.

Re: Axis memory leak

2005-01-13 Thread Lyndon Tiu
Vy Ho wrote: When setting the scope of my service to application, the client side will run out of memory after 5-10 thousand hits. The service object on the server side is thread safe and works with both application and request scope. The server does not have any leak. The reason I change it t

Axis memory leak

2005-01-13 Thread Vy Ho
When setting the scope of my service to application, the client side will run out of memory after 5-10 thousand hits. The service object on the server side is thread safe and works with both application and request scope. The server does not have any leak. The reason I change it to application