Re: mod_axis and apache problem: starting apache loads 4 instances of web service

2009-05-21 Thread Alex Bolgarov
On Thu, May 21, 2009 at 10:34 AM, Abdul Sami wrote: > > I have built a web service using axis2/c's latest framework. After > configuring Mod_Axis with apache, i noticed that it is loading 4 different > instances of service. How can i control it? May it be because the Apache launches 4 server proc

Re: Another memory leak in axis2/C - mod_axis2

2008-07-26 Thread Alex Bolgarov
On Sat, Jul 26, 2008 at 10:56 AM, Manjula Peiris <[EMAIL PROTECTED]> wrote: > > On Sat, 2008-07-26 at 10:50 -0400, Alex Bolgarov wrote: >> On Sat, Jul 26, 2008 at 10:46 AM, Subra A Narayanan <[EMAIL PROTECTED]> >> wrote: >> > here you go => https://issue

Re: Another memory leak in axis2/C - mod_axis2

2008-07-26 Thread Alex Bolgarov
On Sat, Jul 26, 2008 at 10:46 AM, Subra A Narayanan <[EMAIL PROTECTED]> wrote: > here you go => https://issues.apache.org/jira/browse/AXIS2C Do I need to have an account there, or what? > > > > On Sat, Jul 26, 2008 at 10:37 AM, Alex Bolgarov <[EMAIL PROTECTED]> wro

Re: Another memory leak in axis2/C - mod_axis2

2008-07-26 Thread Alex Bolgarov
On Fri, Jul 25, 2008 at 11:02 PM, Uthaiyashankar <[EMAIL PROTECTED]> wrote: > Hi Alex, > > Thank you for pointing out. Yes, it is a serious memory leak. Can you create > a jira in [1]. We'll fix it ASAP. How do I create a jira there? I can't find any link or button for reporting issues... Thank

Another memory leak in axis2/C - mod_axis2

2008-07-25 Thread Alex Bolgarov
Hi, I found another serious memory leak in the mod_axis2. Using the SVN's version of the Axis2/C, in the file src/core/transport/http/server/apache2/mod_axis2.c in the function axis2_handler(): at the very beginning of the function there are two function calls: apr_allocator_create(&l

Re: Loading mod_axis2.so module into Apache

2008-07-17 Thread Alex Bolgarov
Hi, Thank you to all who replied. We managed to make it work either by setting LD_LIBRARY_PATH value to the lib directory in the axis repository before starting Apache or by adding path to the lib directory of the repository into the /etc/ld.so.conf file and running ldconfig. Using envvars file

Re: Loading mod_axis2.so module into Apache

2008-07-16 Thread Alex Bolgarov
_axis2.so otherwise > previously compiled library won't work on the server machine. > > Regards > Lahiru > > On Thu, Jul 17, 2008 at 12:03 AM, Alex Bolgarov <[EMAIL PROTECTED]> wrote: >> >> Hi, >> >> How do you load a mod_axis2.so module into th

Loading mod_axis2.so module into Apache

2008-07-16 Thread Alex Bolgarov
Hi, How do you load a mod_axis2.so module into the Apache when you copy the Axis2/C libraries to some directory - for example, when you are using the binary Axis2/C distribution, or just build Axis2/C from source on one machine (and installed itto some directory) and then copy Axis2/C module and l

How the 'init' function in the axis2_svc_skeleton_ops_t is supposed to be used?

2008-06-13 Thread Alex Bolgarov
Hi, The service is supposed to define several functions that Axis calls during the lifetime of the service (pointers to these functions are assigned to the members of axis2_svc_skeleton_ops_t structure); one of these functions is an 'init' function, that is called by Axis when the service is loade

Axic2C 1.4.0: "NULL parameter was passed..." in Apache log

2008-05-08 Thread Alex Bolgarov
> Then I run the 'echo' sample (that is, I build the echo client and > service samples, deployed the service within the httpd environmet and > run the client), everything looks OK so far but in the httpd log I see > following lines (one line per the request: when I run 1000 iterations > of the echo

Axic2C 1.4.0: "NULL parameter was passed..." in Apache log

2008-05-07 Thread Alex Bolgarov
Hi, I have just downloaded and build the latest Axis2C v. 1.4.0, and deployed the mod_axis2.so into the Apache httpd web server. Then I run the 'echo' sample (that is, I build the echo client and service samples, deployed the service within the httpd environmet and run the client), everything loo

Re: Axis2/C Performance Article

2008-05-03 Thread Alex Bolgarov
I would be even more interested in comparison of Axis2/C and GSOAP toolkits... Thank you, alex. On Sat, May 3, 2008 at 1:10 PM, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: > jimmy Zhang wrote: > > > did u guys also try vtd-xml? I am very interested in your findings on that > as well >

Re: Memory leak in mod_axis2?

2008-04-09 Thread Alex Bolgarov
On Wed, Apr 9, 2008 at 3:36 PM, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: > In the mean time, please send the valgrind log. I did send the valgrind log to the list :) - you can even see it in the marc.info archive, at the bottom of the message: http://marc.info/?l=axis-c-user&m=120776918704827

Re: Memory leak in mod_axis2?

2008-04-09 Thread Alex Bolgarov
e: > Local pools have been integrated to mod_axis2 in Axis2/C trunk. > > You may run the tests again and see the improved memory footprint. > > Samisa... > > > > Samisa Abeysinghe wrote: > > > Alex Bolgarov wrote: > > > > > On Mon, Mar 31, 2008 at

Re: Memory leak in mod_axis2?

2008-04-01 Thread Alex Bolgarov
On Mon, Mar 31, 2008 at 11:17 PM, Uthaiyashankar <[EMAIL PROTECTED]> wrote: > > I doubt whether it is a memory leak. When using mod_axis2, memory > management is done by apache apr. Memory is released only when pools are > destroyed. Memory will not be released when calling AXIS2_FREE. > (axis2

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 mod

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 p

Memory leak in mod_axis2?

2008-03-28 Thread Alex Bolgarov
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 1,000,000 iterations. What I observed, was constant increasing of the memory (both resident and virtual, as the 'top' com

Re: I don't understand what is going on with memory control in a client.

2008-03-28 Thread Alex Bolgarov
updated too? On Wed, Mar 26, 2008 at 11:10 PM, Samisa Abeysinghe <[EMAIL PROTECTED]> wrote: > Try with echo sample. > > Samisa... > > > > Alex Bolgarov wrote: > > Well, I _am_ using the sample provided by the Axis project - the > > client I'm usin

Re: I don't understand what is going on with memory control in a client.

2008-03-26 Thread Alex Bolgarov
hat. All that you have to delete is the service client > instance. > > If you can send in your client code, we can have a look. > > Also, the samples follow the convention that I explained above, so if > you follow the samples, you can solve the problems. > > Samisa...

I don't understand what is going on with memory control in a client.

2008-03-26 Thread Alex Bolgarov
Hi, I don't understand what's going on inside the Axis2/C client. My test client crashes. I looked at the Axis source code and did some debugging (mostly, I've added a lots of AXIS2_LOG_DEBUG(...) to the Axis source code and recompiled - I have a fast enough computer, and this way you can receive

Re: Axis2/C, C++ and 'undefined symbol: __gxx_personality_v0'

2008-03-20 Thread Alex Bolgarov
; > I think extern C alone should solve the problem. Because recently I did > the same thing and it worked for me. Can you try only with extern C > solution ? > > Thanks, > -Manjula. > > > > > On Wed, 2008-03-19 at 13:36 -0400, Alex Bolgarov wrote: >

Re: Axis2/C, C++ and 'undefined symbol: __gxx_personality_v0'

2008-03-19 Thread Alex Bolgarov
t; > > alex. > > > > > > On Tue, Mar 18, 2008 at 10:36 PM, Manjula Peiris <[EMAIL PROTECTED]> wrote: > >> Hi Bolgarov, > >> > >> What is the Axis2/C version you are using? > >> > >> > >> > >>

Re: Axis2/C, C++ and 'undefined symbol: __gxx_personality_v0'

2008-03-19 Thread Alex Bolgarov
10:36 PM, Manjula Peiris <[EMAIL PROTECTED]> wrote: > Hi Bolgarov, > > What is the Axis2/C version you are using? > > > > > On Tue, 2008-03-18 at 17:17 -0400, Alex Bolgarov wrote: > > Hi, > > > > I'm trying to write a SOAP service using Axis2

Axis2/C, C++ and 'undefined symbol: __gxx_personality_v0'

2008-03-18 Thread Alex Bolgarov
Hi, I'm trying to write a SOAP service using Axis2/C framework. I need the service to be written in a C++ language, so as a first step I took an 'echo service' example from the Axis distribution, renamed it to .cpp file and compiled/linked it with 'g++' compiler. No compile errors reported, the r