Re: path problems in build.xml

2009-09-10 Thread Kerry Scott
- From: Greg Roodt Reply-to: "Ant Users List" To: Ant Users List , kerry.sc...@talktalk.net Subject: Re: path problems in build.xml Date: Thu, 10 Sep 2009 01:28:54 +0100 Ok, my last guess would be you need JAVA_HOME= /usr/lib/jvm/java. On Wed, Sep 9, 2009 at 11:02 PM, Kerry Scott wrote:

Re: path problems in build.xml

2009-09-09 Thread Greg Roodt
Reply-to: "Ant Users List" > To: Ant Users List , kerry.sc...@talktalk.net > Subject: Re: path problems in build.xml > Date: Wed, 9 Sep 2009 22:19:00 +0100 > > Hi > > I think you've answered your own question. Its looking for a JDK, but your > JAVA_HOME r

Re: path problems in build.xml

2009-09-09 Thread Kerry Scott
Thanks Greg but.. when I do that it can't find tools.jar which is in /usr/lib/jvm/java/lib -Original Message- From: Greg Roodt Reply-to: "Ant Users List" To: Ant Users List , kerry.sc...@talktalk.net Subject: Re: path problems in build.xml Date: Wed, 9 Sep 2009 22:19:

Re: path problems in build.xml

2009-09-09 Thread veena pandit
Anybody want to take a shot at my problem? When I do ant compile.service on the command line, I get an error saying that it cant find the import. Thanks, Sonia On Wed, Sep 9, 2009 at 5:19 PM, Greg Roodt wrote: > Hi > > I think you've answered your own question. Its looking for a JDK, but your

Re: path problems in build.xml

2009-09-09 Thread Greg Roodt
Hi I think you've answered your own question. Its looking for a JDK, but your JAVA_HOME references the JRE. Try setting JAVA_HOME to /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0 Greg On Wed, Sep 9, 2009 at 10:20 PM, Kerry Scott wrote: > Hi > I have problems running Ant and I am sure that it is

Re: path problems in build.xml

2009-09-09 Thread Kerry Scott
Hi I have problems running Ant and I am sure that it is somehow a PATH problem but I have wrestled it to my death for 48 hours and would love some ideas. Platform - Mandriva Linux 2009 which has an Ant RPM - I have deleted it and tried to use the version downloaded - it didn't come with Ant but Ant

Re: path problems in build.xml

2009-09-09 Thread veena pandit
This is my complete build.xml; when I execute ant compile.service it complains about the package. Thanks, Sonia <*taskdef name="java2wsdl" classname="org.apache.ws.java2wsdl.Java2WSDLTask" classpathref="axis2.classpath"/> * http://quickstart.sample

Re: path problems in build.xml

2009-09-09 Thread Avlesh Singh
The classpathref="axis2.classpath" attribute you have used for the javac task, needs to be defined prior to using it. Cheers Avlesh On Wed, Sep 9, 2009 at 9:34 PM, veena pandit wrote: > I have the following in my build.xml, but it complains about an import: > * > > import* org.apache.axis2.uti

path problems in build.xml

2009-09-09 Thread veena pandit
I have the following in my build.xml, but it complains about an import: * import* org.apache.axis2.util.OptionsParser; I thought this class is part of the axis 2 package. Can anyone help me fix this? Thanks, Sonia