RE: Axis running out of Memory?

2005-01-12 Thread Suzy Fynes
PROTECTED] Subject: Re: Axis running out of Memory? I'm sure there is probably better doco somewhere on this, but I generally experience this from redeploying a resource in Tomcat several times (thru the manager) without restarting. I believe that when you undeploy, the memory is not dealloc'd

Re: Axis running out of Memory?

2005-01-12 Thread Paul Callahan
I'm sure there is probably better doco somewhere on this, but I generally experience this from redeploying a resource in Tomcat several times (thru the manager) without restarting. I believe that when you undeploy, the memory is not dealloc'd--so hence the memory leak. Day to day, I redeploy unti

Axis running out of Memory?

2005-01-12 Thread Suzy Fynes
    Hi,   When having to restart axis (using tomcat manager, not restarting tomcat) a few times I eventually get an internal error and the tomcat log files indicate   2005-01-12 12:34:38 StandardWrapperValve[AxisServlet]: Servlet.service() for servlet AxisServlet threw exception jav

re: out of memory due to large returning of array of beans

2004-03-05 Thread James Black
I am using axis 1.1 on JDK1.5.0beta. When I try to run my unit test to retrieve several thousand beans I get an out of memory error. I am curious how I can change my wsdl file so that I return it as an attachment, so that it won't break my .net clients as well as my java clients.  

Re: Out of memory error

2004-01-28 Thread Airline Pedestal
You could add something like this to your Tomcat file: catalina.bat to increase the heap size. set JAVA_OPTS=-server -Xms128m -Xmx256m You can also use this parameters when starting the client to increase the heap size. java -Xms128m -Xmx256m com.xxx.Client -Xms: this is inital heap size

Out of memory error

2004-01-28 Thread FONTDEVILA Diego
Title: Out of memory error Hi,     I'm testing my service to its limit, having it return 11,000 rows, and having trouble.     I'm getting an OutOfMemoryError (in both the client and server) while serializing the result set with some custom serializers, written as imitati

Out of Memory Error in AxisClient.invoke

2003-10-20 Thread lou fox
I wrote an AxisClient that hits a commercial SOAP server, but whenever I try to return a very large result set (20K+) records I get an OutofMemoryError. I'm using eclipse to debug, which dumps me at the finally clause in invoke method of the AxisClient Class. What is the work around?

Re: Out of Memory

2003-09-10 Thread Soma Shekar
esn't belong to the fainthearted; it belongs to the brave." --- Ronald Reagan - Original Message - From: "Yuvraj Waswani" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 09, 2003 6:47 PM Subject: RE: Out of Memory > Hi, > > I

RE: Out of Memory

2003-09-09 Thread Yuvraj Waswani
Hi, I am also facing serious performance issues with Axis. Currently, my webservices are hosted through WebLogic based web service framework, and it is behaving sanely. Whereas with Axis, I am getting JVM crashes and Out of Memory Errors. Wanted to confirm whether the below mentioned way of

Re: Out of Memory

2003-08-30 Thread Benedick Mark Chan
Hello, I'm sorry about my previous question with regards to the 500 internal server error, I have already fixed to problem - I wasn't able to jar my classes properly.. I have followed Sebastien's suggestion. But, still, it generates a broken pipe and an out of memory exc

Re: Out of Memory

2003-08-30 Thread Benedick Mark Chan
- Original Message - From: "Astie, Sebastien" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, August 29, 2003 1:57 AM Subject: RE: Out of Memory > I had a similar problem and I solved the problem by modifying org.apache.axis.Message and org.apache.axis.SoapPart

RE: Out of Memory

2003-08-28 Thread Astie, Sebastien
-Original Message- From: Ekbote, Niranjan [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 10:17 AM To: '[EMAIL PROTECTED]' Subject: RE: Out of Memory I am not sure if Axis supports streaming. I think that could solve your problem. Thanks! -- Niranjan. -Origin

Re: Out of Memory

2003-08-28 Thread James Black
Benedick Mark Chan wrote: Is this a limitation of axis? If so, then I guess chopping to several small chucks will be my last resort. =( It sounds more like a design issue than a limitation in axis. Have you tried to use -mx1000M as a switch for java? That way you have a larger memory? Also,

RE: Out of Memory

2003-08-28 Thread Ekbote, Niranjan
I am not sure if Axis supports streaming. I think that could solve your problem. Thanks! -- Niranjan. -Original Message- From: Benedick Mark Chan [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 1:08 PM To: [EMAIL PROTECTED] Subject: Re: Out of Memory Hello David, Thanks

Re: Out of Memory

2003-08-28 Thread Benedick Mark Chan
;David You" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, August 29, 2003 1:03 AM Subject: RE: Out of Memory > 1. Are you sure WS is good solution for you? > 2. If you are sure, try to config VM with more heap size. > 3. still doesn't work? Try to

RE: Out of Memory

2003-08-28 Thread Mark Galbreath
Buy and install more memory. -Original Message- From: Benedick Mark Chan [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 12:48 PM To: [EMAIL PROTECTED] Subject: Out of Memory Hello guys, I would like to ask a question with regards to the memory usage of axis... I have tried

RE: Out of Memory

2003-08-28 Thread David You
AM To: [EMAIL PROTECTED] Subject: Out of Memory Hello guys, I would like to ask a question with regards to the memory usage of axis... I have tried populating 6 million strings to a vector, and return the vector to the client. The server has successfully populated the vector with 6 million strings

Out of Memory

2003-08-28 Thread Benedick Mark Chan
client, the server throws an out of memory exception. Is there any way to solve this problem? Please help me. Thanks. Sincerely Yours, Benedick

Re: Out of Memory problem

2003-02-03 Thread Steve Loughran
- Original Message - From: "Brian Ewins" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 03, 2003 09:48 Subject: Re: Out of Memory problem > Steve Loughran wrote: > > send it as an attachment. That works for files that size. base64 encod

Re: Out of Memory problem

2003-02-03 Thread Brian Ewins
Steve Loughran wrote: send it as an attachment. That works for files that size. base64 encoding is very slow as well as being inefficient; XML parsers dont like strings that size. Are we sure it's the XML parser thats at fault here? I'm a little interested in this one, as some of the stuff we d

Re: AW: Out of Memory problem

2003-02-03 Thread Praveen Peddi
uot;Doss Markus" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 03, 2003 12:14 PM Subject: AW: AW: Out of Memory problem Praveen, do you have any examples for using soap with attachments ? Thanks Markus -Ursprüngliche Nachricht- Von: Praveen Peddi [ma

Re: Out of Memory problem

2003-02-03 Thread Steve Loughran
03, 2003 08:14 Subject: Out of Memory problem Hi axis people I wrote some services which transports image data to a server. I've done this with apache soap. Now I transported a 8 MB tif image to the server and run out of memory. Actually I don't use attachments for the service. I cod

AW: AW: Out of Memory problem

2003-02-03 Thread Doss Markus
Praveen, do you have any examples for using soap with attachments ? Thanks Markus -Ursprüngliche Nachricht- Von: Praveen Peddi [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 3. Februar 2003 18:04 An: [EMAIL PROTECTED] Betreff: Re: AW: Out of Memory problem I would use SOAP with

Re: Out of Memory problem

2003-02-03 Thread Elmar Fasel
Hi Markus, Markus Doss schrieb: Increase the memory allocation pool size of tomcat? > > The tomcat configuration with 256 and 384 doesn't work either. Well, than you should probably investigate the usage of attachments, as Praveen mentioned. Regards, Elmar

RE: AW: Out of Memory problem

2003-02-03 Thread Keith Hatton
February 2003 17:04 To: [EMAIL PROTECTED] Subject: Re: AW: Out of Memory problem I would use SOAP with attachments. Encoding into Base64 format will occupy ur memory more than 2 times both on the server side and the cleint side. I did the same thing before and had memory problems, but when I used SOAP

Re: AW: Out of Memory problem

2003-02-03 Thread Praveen Peddi
:40 AM Subject: Re: AW: Out of Memory problem > Hi Markus, > > Markus Doss schrieb: > > > First I increased the memory to 128M. After increasing up to 256 the > > my soap client doesn't throw any exception. But now the out of memory > > comes from tomcat (w

AW: AW: Out of Memory problem

2003-02-03 Thread Doss Markus
The tomcat configuration with 256 and 384 doesn't work either. -Ursprüngliche Nachricht- Von: Elmar Fasel [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 3. Februar 2003 17:41 An: [EMAIL PROTECTED] Betreff: Re: AW: Out of Memory problem Hi Markus, Markus Doss schrieb: >

Re: AW: Out of Memory problem

2003-02-03 Thread Elmar Fasel
Hi Markus, Markus Doss schrieb: > First I increased the memory to 128M. After increasing up to 256 the > my soap client doesn't throw any exception. But now the out of memory > comes from tomcat (with 256M memory, on linux). > > Fault Code = SOAP-ENV:Server.Exc

AW: Out of Memory problem

2003-02-03 Thread Doss Markus
First I increased the memory to 128M. After increasing up to 256 the my soap client doesn't throw any exception. But now the out of memory comes from tomcat (with 256M memory, on linux). Fault Code = SOAP-ENV:Server.Exception: Fault String = java.lang.OutOfMemoryError Any fu

Re: Out of Memory problem

2003-02-03 Thread Elmar Fasel
Hi Markus, Markus Doss schrieb: I wrote some services which transports image data to a server. I've done this with apache soap. Now I transported a 8 MB tif image to the server and run out of memory. Actually I don't use attachments for the service. I code the image data base64 and

Out of Memory problem

2003-02-03 Thread Doss Markus
Hi axis people   I wrote some services which transports image data to a server. I’ve done this with apache soap. Now I transported a 8 MB tif image to the server and run out of memory. Actually I don’t use attachments for the service. I code the image data base64 and sent this data with

Tomcat out of memory error

2003-01-14 Thread Trunk Manuel
Hi, I use the code below to access an axis WebService. If I create one instance of these class and call the get method (more than once), all results (Flight[]) aren't garbage collected. What am I doing wrong or what could be done in another way? Thanks for your help, Manuel public class Fl

out of memory exception

2003-01-02 Thread Joe Hanink
The threads on xml-rpc streaming were quite interesting.  Did anyone decide if there a simple answer to whether xml-prc can/should be used to return response data of arbitrary length? Axis xml-rpc webservices have the conveniences I’m looking for, with this one drawback.  If I have to resor