• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Error during building the project

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All
I m new to use ant.i m using IBM RAD for building project.
which uses ant tool for building the project.can some help
me to identify the error.error message is:

Buildfile: C:\CCViews\iDesk_30700_strmln_dev\IDESK_JAVAVOB\PARTNER\PartnerApps\build\build.xml

appsjar:
[echo] Deleting old class files
[delete] Deleting 54 files from C:\CCViews\iDesk_30700_strmln_dev\IDESK_JAVAVOB\PARTNER\PartnerApps\bin
[echo] Compiling Partner Base Apps
[javac] Compiling 25 source files to C:\CCViews\iDesk_30700_strmln_dev\IDESK_JAVAVOB\PARTNER\PartnerApps\bin
[echo] Copying xml files
[copy] Copying 29 files to C:\CCViews\iDesk_30700_strmln_dev\IDESK_JAVAVOB\PARTNER\PartnerApps\bin
[echo] Deleting old jar file: C:\CCViews\iDesk_30700_strmln_dev\IDESK_JAVAVOB/ApplicationBinaries/jar/partner/PartnerApps.jar
[delete] Deleting 1 files from C:\CCViews\iDesk_30700_strmln_dev\IDESK_JAVAVOB\ApplicationBinaries\jar\partner
[echo] creating jar file: C:\CCViews\iDesk_30700_strmln_dev\IDESK_JAVAVOB/ApplicationBinaries/jar/partner/PartnerApps.jar
[jar] Building jar: C:\CCViews\iDesk_30700_strmln_dev\IDESK_JAVAVOB\ApplicationBinaries\jar\partner\PartnerApps.jar

partner-interface:
BUILD FAILED: C:\CCViews\iDesk_30700_strmln_dev\IDESK_JAVAVOB\PARTNER\PartnerApps\build\build.xml:100: The following error occurred while executing this line:
java.io.FileNotFoundException: C:\CCViews\iDesk_30700_strmln_dev\IDESK_JAVAVOB\${partnerintr.common.build.file} (The handle is invalid.
)

thanks in advance.
 
Saloon Keeper
Posts: 27752
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, this is where it looks like you get to take advantage of the fact that RAD is not free software. You (or your employer) are paying IBM for support, and it looks like you should probably call IBM. They're probably want a more complete stack trace and copies of the log files.

You can also try running with a different version of Java. An awful lot of Eclipse failures are due to bugs in a particular JVM version.
 
author
Posts: 14112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It looks like the property "partnerintr.common.build.file" isn't set, which is why Ant is trying to interpret it literally, which leads to the strange file name, which then of course cannot be found.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic