Where is my C:\Sun\Appserver folder?

Hi all. I'm new to java and java ee. I installed java ee 5 SDK with application server PE 9 and the tutorial. The example of hello1 works fine. However, I got the error message when I was trying to build other examples.

"BUILD FAILED

E:\Java\javaeetutorial5\examples\bp-project\command-line-ant-tasks.xml:89: C:\Sun\AppServer not found."

I do not have that folder on my machine. Everything installed is in C:\Program Files\Sun\SDK\and the path variable is set automaticlly as C:\Program Files\Sun\SDK\bin

What's wrong? Do I need to install something else to make other examples in the tutorial work? Thank you.

[644 byte] By [garyabca] at [2007-11-26 13:18:53]
# 1
You need to set your j2ee.home = <Directory the AppSrever is installed to>~Tim
SomeoneElsea at 2007-7-7 17:44:48 > top of Java-index,Java Essentials,New To Java...
# 2

Do you mean set the variable name as "java.home" and the value as the AppServer path? The only appserver fold in the java ee 5 sdk is "C:\Program Files\Sun\SDK\addons\jbi\appserver". I set it as the value of java.home and it's not working.

I have the sun application server which was installed with SDK. Should I install another appserver separately?

garyabca at 2007-7-7 17:44:48 > top of Java-index,Java Essentials,New To Java...
# 3
start your server like thisjava -Dj2ee.home=your_installation_directory -jar server.jarnote the -Dj2ee.home=somethingthats how you can set that variable
mkoryaka at 2007-7-7 17:44:48 > top of Java-index,Java Essentials,New To Java...
# 4
not java_home, j2ee_homeThe Sun App Server is fine, but you need the j2ee.home environment variable set.And the java_home Environment variable points to the jdk director~Tim
SomeoneElsea at 2007-7-7 17:44:48 > top of Java-index,Java Essentials,New To Java...