Re: echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Supun Kamburugamuva
Can you please send the server log file for the failed test cases with Apache Server? Usually if a sample works with axis2_http_server it works with Apache server as well. Please note that google and yahoo sample failures have nothing to do with the local server. These requests go to google and yah

Re: Memory footprint

2008-09-10 Thread Supun Kamburugamuva
A echo client invocation uses 3440k of memory in my Windows XP machine. I've tested this with the math sample as well. It also consumes equal amount of memory. Also the memory foot print for the simple axis2 server is in the same range. Regards, Supun On Thu, Sep 11, 2008 at 9:18 AM, Milinda Path

Re: Memory footprint

2008-09-10 Thread Milinda Pathirage
Hi, I did some simple tests to find out memory footprint. Here are the results: Simple Axis2/C Server(Sleeping): 400KB When I run echo sample simple axis server takes 472KB memory even after echo requests are handled. There may be memory leaks in simple axis server because most of the time we use

Re: does axis2_svc_client_send_receive method free the payload?

2008-09-10 Thread Manjula Peiris
On Wed, 2008-09-10 at 18:52 -0700, Tammy Martin wrote: > Hello all, > > I am creating a xml payload via AXIOM and am using the method > axis2_svc_client_send_receive to access a webservice. > > axiom_node_t* retNode = axis2_svc_client_send_receive(svcClient, env, > payload); > > I have two

Re: Memory footprint

2008-09-10 Thread Rajika Kumarasiri
On Thu, Sep 11, 2008 at 3:23 AM, Saad Nader <[EMAIL PROTECTED]> wrote: Interesting question!, I am not aware of the fact how much memory is used by Axis2/C. But you should be able to measure it using few simple tools, under Linux or Windows. In linux you can start the server and try 'top' to observ

Re: Using Axis2/C with Objective-C

2008-09-10 Thread Rajika Kumarasiri
On Thu, Sep 11, 2008 at 4:02 AM, Meik Schuetz <[EMAIL PROTECTED]> wrote: Once Axis2/C has ported to Max OS x. So you should be able to get the things work easily. -Rajika > Dear all, > I just came across the Axis2/C project (so please excuse me for the newbie > questions) and it sounds very promi

does axis2_svc_client_send_receive method free the payload?

2008-09-10 Thread Tammy Martin
Hello all, I am creating a xml payload via AXIOM and am using the method axis2_svc_client_send_receive to access a webservice. axiom_node_t* retNode = axis2_svc_client_send_receive(svcClient, env, payload); I have two questions: 1. Does the axis2_svc_client_send_receive have ownership of the pa

Using Axis2/C with Objective-C

2008-09-10 Thread Meik Schuetz
Dear all, I just came across the Axis2/C project (so please excuse me for the newbie questions) and it sounds very promising to me. I'd just like to know if anyone has experience in using the Axis2/C libraries in an Objective-C project. I just tries compiling the Axis source following the

Memory footprint

2008-09-10 Thread Saad Nader
Hello All, We're working on some middleware that will run on embedded devices. We need to consider memory footprint before using the Axis2 system. What is the typical memory footprint that a simple echo app uses for each module? We will be using the http sender and receiver. Thanks, ---

RE: echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Gold, Jack L (US SSA)
It seems that some of the services are working and echo was just an example of one that wasn't. I have now run all the samples. Under Libmod_axis2 with Apache2: echo - Fails echo_blocking - Succeeds echo_blocking_addr - Succeeds echo_blocking_auth - succeeds echo_blocking_dual - succeeds echo_bl

RE: Get error while parsing an XML message containing a complex type at axis2_http_server

2008-09-10 Thread Raghu Udupa
Folks, I replaced axutil_array_list_set with axutil_array_list_add and every thing seem to work fine. Thanks, Raghu From: Raghu Udupa [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 09, 2008 10:34 PM To: axis-c-user@ws.apache.org Subject: Get error

RE: echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Gold, Jack L (US SSA)
I am not running with simple axis server anymore. I confirmed that echo worked with simple axis server and have moved on to using libmod_axis2.so in Apache. When I execute echo against Apache2 running with libmod_axis2.so, I see the transport error. --Jack -Original Message- From: Sam

Re: echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Samisa Abeysinghe
Are you running with simple axis server? Then you should use http://localhost:9090/axis2/services Samisa... Gold, Jack L (US SSA) wrote: I had not. Thanks. That definitely explains why the echo wasn't working. :) Unfortunately, I am seeing the same error I saw when I just recompiled the

RE: echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Gold, Jack L (US SSA)
Incidentally, someone should probably update the manual to state: /bin/samples/echo http://localhost/axis2/services/echo As it is written, others might do exactly what I did and invoke the linux echo command. --Jack -Original Message- From: Samisa Abeysinghe [mailto:[EMAIL PROTECTED] S

RE: echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Gold, Jack L (US SSA)
I had not. Thanks. That definitely explains why the echo wasn't working. :) Unfortunately, I am seeing the same error I saw when I just recompiled the echo sample application with my hardcoded http://localhost/axis2/services URL. (yes, I reverted back to the original version of echo). What I

Re: echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Samisa Abeysinghe
Did you try ./echo Samisa... Gold, Jack L (US SSA) wrote: I originally had the log level set to error. I've just set it to debug. Now I can see that the module is being loaded and it looks to be loading correctly. I still don't see how this answers the question about the 'echo http://localhost

RE: echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Gold, Jack L (US SSA)
Adding to the previous log, I recompiled the echo sample for my localhost and received this in the logfile. Any ideas? Did I miss something in the configuration? --Jack [Wed Sep 10 11:47:35 2008] [debug] phase_resolver.c(139) Service name is : __ANONYMOUS_SERVICE__ [Wed Sep 10 11:47:35 2008]

RE: echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Gold, Jack L (US SSA)
I originally had the log level set to error. I've just set it to debug. Now I can see that the module is being loaded and it looks to be loading correctly. I still don't see how this answers the question about the 'echo http://localhost/axis2/services/echo' request indicated in the manual. Below

Re: echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Manjula Peiris
On Wed, 2008-09-10 at 09:35 -0400, Gold, Jack L (US SSA) wrote: > I am going through the manual and attempting the tests indicated for > checking the Apache Axis2/C Module. The test suggests typing >echo > http://localhost/axis2/services/echo at the command prompt. > Unfortunately, this only serv

RE: echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Gold, Jack L (US SSA)
Unfortunately, there is no client file since the client never actually ran. "echo http://localhost/axis2/services/echo"; does not invoke the apache web server or the axis2c module. --Jack Gold _ From: Supun Kamburugamuva [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 10, 20

Re: echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Supun Kamburugamuva
>From your description it is hard to figure out what went wrong. It seems that everything is correct. Can you please send the client log file? Supun.. On Wed, Sep 10, 2008 at 6:35 PM, Gold, Jack L (US SSA) < [EMAIL PROTECTED]> wrote: > I am going through the manual and attempting the tests indi

echo samples with Axis2/C Module for Apache2

2008-09-10 Thread Gold, Jack L (US SSA)
I am going through the manual and attempting the tests indicated for checking the Apache Axis2/C Module. The test suggests typing >echo http://localhost/axis2/services/echo at the command prompt. Unfortunately, this only serves to submit "http://localhost/axis2/services/echo"; back to the console.

Re: compiling rpath

2008-09-10 Thread Martina08
hi all, first thank you for all your great help Now it works fine. My mistake was that i only set the LD_LIBRARY_PATH to the axis2 libs, because i must set the LIBRARY_PATH to these libs too. I think there is a great different between LD_LIBRARY_PATH and LIBRARY_PATH. But now im very happy,tha