[appengine-java] Re: appcfg can't find javac?

2009-09-25 Thread Toby Reyelts
Hey Mark, Unfortunately it's more complicated than that. The very first entry in your path points to C:\Windows\system32. There is undoubtedly a java.exe living in that folder who's home is actually the JRE in C:\Program Files\Java\jre6. (You can test this yourself by running a small Java program):

[appengine-java] Re: appcfg can't find javac?

2009-09-25 Thread Mark Space
Thanks for the reply. However, I think this is already the case. I do apologize for the java/javac typo above. The JDK is the only thing on my PATH, there's no JRE. (Note this is from the Windows shell, but the Cygwin utility "which" prepends /cygdrive/ anyway.) This shows that the JDK is the

[appengine-java] Re: appcfg can't find javac?

2009-09-25 Thread Toby Reyelts
If you look closer at the message, you can see that it's looking for the java compiler - *javac.exe* not java.exe. The JRE does not contain the Java compiler. Instead, you'll need to put the JDK on your PATH ahead of your JRE. On Fri, Sep 25, 2009 at 10:50 PM, Mark Space wrote: > > Hi all, I just