Re: Max call of service

2008-08-19 Thread Michael Sutter
I think the message is from stderr and the my first opinion was that the loading of the library cause the problem. So I asked if it is correct to put the object on the stack, which should be no problem as you told. @Rajika The access to a linux server is no problem, the service is running unde

Re: Max call of service

2008-08-19 Thread Supun Kamburugamuva
Hi Michael, Sorry, I meant the axis2 log file. Anyway if it doesn't contain any errors, the probability of this error caused by Axis2/C is very low. Supun.. On Tue, Aug 19, 2008 at 2:37 PM, Michael Sutter <[EMAIL PROTECTED]>wrote: > Hello Supun, > > what log file do you mean - the axis.log or

Re: Max call of service

2008-08-19 Thread Rajika Kumarasiri
On Tue, Aug 19, 2008 at 3:07 PM, Michael Sutter <[EMAIL PROTECTED]>wrote: > Hello Supun, > > what log file do you mean - the axis.log or the error log of the apache? > Nevertheless, I don't found the exception in the log files and they contain > a lot of messages as the log level is set to trace.

Re: Max call of service

2008-08-19 Thread Michael Sutter
Hello Supun, what log file do you mean - the axis.log or the error log of the apache? Nevertheless, I don't found the exception in the log files and they contain a lot of messages as the log level is set to trace. Also I think that the service is running fine with the svn version, maybe it was

Webservices in Java,Client in c++

2008-08-19 Thread Martina08
Hi, after i have so many problems with axis c++ v1.x i use now AXIS2C v.1.5 A Webservice implementation is given in Java and i want to create a client who uses the services of this Java-Implementation. It is possible to create a Client (and Client stub with the wsdl2Ws-tool) with Axis2C in C++

Re: Max call of service

2008-08-19 Thread Supun Kamburugamuva
Hi Michael, By looking at your code it seems that it doesn't lead to a memory leak. Every time that function is called the object will be created and when the function finishes execution the object will be destroyed. I think there is another memory leak in your code. But I doubt that your problem

Re: Max call of service

2008-08-19 Thread Michael Sutter
Hello Supun, sorry for that. The stack is not created by me. It is the normal program run-time stack from the service and the object is not created as a global variable. The code looks like this: adb_getStatusResponse_t * axis2_skel_DAQStatus_getStatus(const axutil_env_t *env) { try { FdDa

Re: Max call of service

2008-08-19 Thread Supun Kamburugamuva
Hi Michail, The stack the you mentioned is little bit confusing. Is it the stack in a normal process run-time or a stack that you have created? If it is the stack in a normal program run-time where are you creating your object in the code? Are you creating the object as a global variable? Thanks,

Max call of service

2008-08-19 Thread Michael Sutter
Hello list, I have a problem with a Axis2 service and need some input if my service is developed the right way. Inside my service I make a call to a external library. So I make a variable of the object and put it on the stack. So normally the instance should be destroyed when the scope is lost