Re: Memory leak in mod_axis2?

2008-03-31 Thread Alex Bolgarov
On Sat, Mar 29, 2008 at 10:48 PM, Samisa Abeysinghe [EMAIL PROTECTED] wrote: Alex Bolgarov wrote: Hi again. I've just run the echo service sample within the Apache2 httpd server (with the mod_axis2 module), I used the echo client but put the send-receive into the loop with

Re: Header parameters being ignored

2008-03-31 Thread Sérgio Gomes
Hi Dimuthu, Sorry that I couldn't answer immediately. After solving a few bugs I had in my code, looks like your changes did the trick! The message is serialized properly, sent over the line, and I'm getting the response I expected :) Well, almost. Looks like the response is being truncated,

Re: Header parameters being ignored

2008-03-31 Thread Dimuthu Gamage
Hi Sérgio, Please see my inline comment. On Mon, Mar 31, 2008 at 8:17 PM, Sérgio Gomes [EMAIL PROTECTED] wrote: Hi Dimuthu, Sorry that I couldn't answer immediately. After solving a few bugs I had in my code, looks like your changes did the trick! The message is serialized properly, sent

Re: Header parameters being ignored

2008-03-31 Thread Sérgio Gomes
Hi Dimuthu, I'm using libxml2 (at least I think so, that's the default, right)? As for the infinite loop, it looks like it's happening even if the XML doesn't get truncated (on second thought, it might have been only the debug output to the log that was being truncated in the first case, I have

Error code: 75 :: A read attempt(HTTP) for the reply without sending the request

2008-03-31 Thread Alex Bolgarov
Hi, Another thing that happened today in my experiments with the Axis2/C was this error message from the client: Error code: 75 :: A read attempt(HTTP) for the reply without sending the request This happens after approx. 28-30 thousand requests were sent by the client successfully. I'm using

Re: Header parameters being ignored

2008-03-31 Thread Dimuthu Gamage
Yea that s a bug, Changing that code to the following one will work. if(axiom_node_get_node_type(current_node, env) != AXIOM_ELEMENT) { current_node =axiom_node_get_next_sibling(current_node, env);

Re: Header parameters being ignored

2008-03-31 Thread Dimuthu Gamage
On Mon, Mar 31, 2008 at 11:16 PM, Sérgio Gomes [EMAIL PROTECTED] wrote: Hi Dimuthu, I'm using libxml2 (at least I think so, that's the default, right)? It is planned to put 'Guththila' as the default parser for future releases. If you are using Axis2/C 1.3.0 you may try with guththila too.

Re: Memory leak in mod_axis2?

2008-03-31 Thread Samisa Abeysinghe
Alex Bolgarov wrote: On Sat, Mar 29, 2008 at 10:48 PM, Samisa Abeysinghe [EMAIL PROTECTED] wrote: Alex Bolgarov wrote: Hi again. I've just run the echo service sample within the Apache2 httpd server (with the mod_axis2 module), I used the echo client but put the send-receive into

Re: Error code: 75 :: A read attempt(HTTP) for the reply without sending the request

2008-03-31 Thread Samisa Abeysinghe
Again, this is an httpd performance tuning issue. If you want to run httpd with heavy loads, then you got to fine tune httpd config to adopt to heavy loads. Samisa... Alex Bolgarov wrote: Hi, Another thing that happened today in my experiments with the Axis2/C was this error message from

Re: Memory leak in mod_axis2?

2008-03-31 Thread Uthaiyashankar
No, MaxRequstsPerClient is set to 0, and yes, I understand that I can use this to kill old children processes with accumulated memory leaks and start new fresh ones, but you know, using MaxRequestPerClient is kind of cheating :) - there should not be memory leaks in the mod_axis2 in the first