I'm new to J2EE environment and working on an example given in J2EE1.4 online tutorial. I did exactly as mentioned in the document. I have a directory structure C:\ Projects ConverterApp ConverterApp.ear src Converter.java ConverterHome.java ConverterBean.java
Now as mentioned in the document, I tried to run asant utility from c:\projects\ConverterApp>asant build
Buildfile: build.xml does not exist! Build failed
is what getting displayed. Is there anything I messed up here? Please let me know the solution as I'm eagerly waiting for my first J2EE to run .
Try to run the asant in the directory where build.xml is located and don't forget to set the j2ee.jar in your classpath.
SCJP 5.0, SCWCD 1.4, SCBCD 1.3, SCDJWS 1.4
My Blog
Anonymous
Ranch Hand
Joined: Nov 22, 2008
Posts: 18944
posted
0
Hi Freddy,
Thanks for the information. I'm a very new into J2EE world, and really not sure what a build.xml is all about. I was under impression that asant would build build.xml for me. What is build.xml and how do we generate one? Is there any tool to generate build.xml for us.
build.xml is something like makefile in C/C++ world. It's used to tell the ant to do some certain tasks, compiling, deploying, etc.
Go to this link http://java.sun.com/j2ee/1.4/download.html#tutorial and download the tutorial. The tutorial contains all the source codes (java code, build.xml, etc). That tutorial was created using NetBeans IDE, that's why you can see the nbproject directory inside.
If you use IDE, such as NetBeans or Eclipse, the IDE will generate the build.xml when you create a new project.
Anonymous
Ranch Hand
Joined: Nov 22, 2008
Posts: 18944
posted
0
Thanks Sir,
I shall do that first.
subject: Getting error Build failed while running asant