Re: Axis client, OutOfMemoryException

2003-01-14 Thread Gene Chuang
; the reference (basically the address of the string on the heap). ALL > >> objects live on the heap in Java. > >> ----- Original Message - > >> From: "Daleiden, Mike" <[EMAIL PROTECTED]> > >> To: <[EMAIL PROTECTED]> > >> Sent: Mo

Re: Axis client, OutOfMemoryException

2003-01-14 Thread Brian Ewins
Brian W. Young wrote: I just recalled that Strings in a SOAP request are sent as element text and not embedded in a CDATA section. Since my String is actually an XML document, this means i've got around 50,000 tags with < and > that are all being escaped into entities. My guess is that thi

Re: Axis client, OutOfMemoryException

2003-01-14 Thread Brian W. Young
the heap in Java. - Original Message - From: "Daleiden, Mike" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 13, 2003 4:18 PM Subject: RE: Axis client, OutOfMemoryException You're probably overrunning your stack, not heap. Try increasing stack size on the

Re: Axis client, OutOfMemoryException

2003-01-14 Thread Brian W. Young
n the heap). ALL objects live on the heap in Java. - Original Message - From: "Daleiden, Mike" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 13, 2003 4:18 PM Subject: RE: Axis client, OutOfMemoryException You're probably overrunning your stack,

Re: Axis client, OutOfMemoryException

2003-01-13 Thread James Carman
Oh, and wouldn't he get a StackOverflowError as opposed to an OutOfMemoryError? - Original Message - From: "Daleiden, Mike" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 13, 2003 4:18 PM Subject: RE: Axis client, OutOfMemoryException You&#

Re: Axis client, OutOfMemoryException

2003-01-13 Thread James Carman
eiden, Mike" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 13, 2003 4:18 PM Subject: RE: Axis client, OutOfMemoryException You're probably overrunning your stack, not heap. Try increasing stack size on the client VM. When arguments are passed in a meth

RE: Axis client, OutOfMemoryException

2003-01-13 Thread Daleiden, Mike
4:15 PM To: [EMAIL PROTECTED] Subject: Axis client, OutOfMemoryException Hello, I have a simple Axis client, just a few lines borrowed from the included examples. My call returns String, and in this case the String is the contents of a 2 meg XML file that I will be parsing into a Document onc

Axis client, OutOfMemoryException

2003-01-13 Thread Brian W. Young
Hello, I have a simple Axis client, just a few lines borrowed from the included examples. My call returns String, and in this case the String is the contents of a 2 meg XML file that I will be parsing into a Document once it has been received. However, I can't get that far. With a 128 meg he