calling ant from java program 2004-09-09 - By Ashutosh Kumar
I am trying to send email from ant. It sends mail but says failed to initialize mime type. Even thoughI receive mail , I does not contain message, only subject is there. Regds Ashutosh
-----Original Message----- From: Olivier Croisier [mailto:Olivier.Croisier@(protected)] Sent: Friday, August 27, 2004 2:26 PM To: Ant Users List Subject: Re: calling ant from java program
> What may be the reason of project.executetarget throwing nullpointer > exception? > regds
Hi
My first idea was that this exception could get thrown if you call the executeTarget method with a null argument, but this error seems to be already managed by the BuildException (@(protected) ant javadoc).
[ executeTarget ] public void executeTarget(java.lang.String targetName) throws BuildException Executes the specified target and any targets it depends on. Parameters: targetName - The name of the target to execute. Must not be null. Throws: BuildException - if the build failed
So... Another answer would be : your "NullPointerException" occurs if your Project object is null (java obviously can't call the "executeTarget" method on a null Project object). Check if your Project is initialized.
Third clue : the "test_config" string you give as an argument is a valid String, but its contents may cause an error somewhere in the executeTarget process, for example if this isn't a valid target name. Or if the target is only defined as an internal target (no "description" for it) : I don't know if executeTarget sees them.
best regs
-- CROISIER Olivier Software Engineer Thales IS - ANS olivier.croisier@(protected)
--------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@(protected) For additional commands, e-mail: user-help@(protected)
--------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@(protected) For additional commands, e-mail: user-help@(protected)
|
|