FW: question about clearcase api

2008-12-04 Thread Redmond, Nicole
I am trying to use the clearcase org.apache.tools.ant.taskdefs.optional.clearcase.CCCheckout tool and I get a null pointer error on line 43 "ckout.execute();". The code is attached below. Here is the Exception: Exception in thread "main" java.lang.NullPointerException at org.apac

RE: question about clearcase api

2008-12-04 Thread Redmond, Nicole
Setting project fixes it. Thank you so much. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2008 7:52 AM To: user@ant.apache.org Subject: AW: question about clearcase api >I am trying to use the clearcase >org.apache.tools.ant.taskdefs.

remotely call Ant script?

2009-09-28 Thread Redmond, Nicole
I am a new user. Is there a way to remotely call an Ant script? For example, can the server call an Ant script that lives on the client? Thanks, Nicole

RE: remotely call Ant script?

2009-09-28 Thread Redmond, Nicole
I have ANT scripts that I use for building. They have been so successful that I use ANT scripts to start my Java applications as well. Currently, I start a Java application and the GUI application all on one machine (the server) using an ANT script. I need to move the GUI application to clien

RE: Out of memory

2009-10-06 Thread Redmond, Nicole
Sometimes you need a combination... -Xms128m -Xmx768m -XX:MaxPermSize=512m -XX:+UseConcMarkSweepGC -Xms should be set to 1/64 of your memory size, -Xmx should be set to 1/4 as a max Nicole Redmond -Original Message- From: Knuplesch, Juergen [mailto:juergen.knuple...@icongmbh.de] S

RE: Out of memory

2009-10-07 Thread Redmond, Nicole
http://java.sun.com/performance/reference/whitepapers/tuning.html Is just one of numerous locations for these "rules". By the way, they are not rules, they are best practices... Nicole Redmond -Original Message- From: David Leangen [mailto:apa...@leangen.net] Sent: Tuesday, October 06

unique id

2010-01-29 Thread Redmond, Nicole
How do I generate a unique id with Ant? Thanks!