RE: scomp fails trying javac

2009-09-14 Thread Strong.James
Jerry, Not sure if you actually had a problem with scomp.cmd or are reading documentation that indicates Java 1.5. Either way, if you have the JDK installed, a PATH setting to include your JDK\bin and a JAVA_HOME environment variable defined, you should not really have any problem with scomp.cmd

java.lang.OutOfMemoryError: Java heap space

2009-09-14 Thread Jason Berk
I have an xml clob and account in a DB. I need to select the xml and bind it with XML Beans. This works fine for the first 30,000 or so accounts, but eventually I get ava.lang.OutOfMemoryError: Java heap space This is the line that is blowing up: MemberStatementDocument doc =

RE: java.lang.OutOfMemoryError: Java heap space

2009-09-14 Thread Jason Berk
FYI: the xml is 1MB is size and is different for each account. Jason -Original Message- From: Jason Berk [mailto:jb...@purdueefcu.com] Sent: Monday, September 14, 2009 4:16 PM To: user@xmlbeans.apache.org Subject: java.lang.OutOfMemoryError: Java heap space I have an xml clob and

Re: java.lang.OutOfMemoryError: Java heap space

2009-09-14 Thread Jacob Danner
Hmm, are you putting 30K of xml into memory? or only parsing the results as they are needed? In other words, are there references left around that is causing the heap to grow? -jacobd On Mon, Sep 14, 2009 at 1:16 PM, Jason Berk jb...@purdueefcu.com wrote: I have an xml clob and account in a DB.

RE: java.lang.OutOfMemoryError: Java heap space

2009-09-14 Thread Jason Berk
The size of the xml in the DB (per account) is 1MB and usually around 30KB. I'm in a loop that basically does the following: Accounts = getAccounts( ) For each account in Accounts{ Object boundObject = bind(account) Object pdf = createPdf( boundObject )