Douglass, If I might make a suggestion - download Eclipse for free, setup a project in Eclipse and compile the application in there; the truth is that I have no idea how to compile the application by hand like this .... it's a long long way for a shortcut.
Create a new project in Eclipse (or another IDE), point at the java folder, and press build. You'll also need to make sure that you are targetting the classes into the WEB-INF/classes folder on the application server, and not just into the same directory as the source .java files (as you are doing currently). Best, Steven > -----Original Message----- > From: dduuggllaa [mailto:[EMAIL PROTECTED] > Sent: 28 February 2005 14:36 > To: [email protected] > Subject: [flexcoders] Re: Experienced programmer new to java > app servers, quick question > > > > Steve, > I'm trying to compile from the command line: > javac -classpath /clearly/the/wrong/path CustomerDelegate.java > > Here is my setup: > > The java portion of the Cairngorm tree is here: > C:\iterationtwo\cairngorm-0_9\samples\java > > cd'ing to > C:\iterationtwo\cairngorm-0_9\samples\java\com\iterationtwo\demo\vo > > LoginVO.java compiles just fine, presumably because it's > package dependancy is not a problem (java.util.Date I get "for "free") > > There is no joy however when I cd to: > C:\iterationtwo\cairngorm-0_9\samples\java\com\ite > rationtwo\demo\business > > and try to compile CustomerDelegate.java which imports > com.iterationtwo.demo.vo.LoginVO > > What I need is the correct -classpath incantation to satisfy > the path dependency for com.iterationtwo.demo.vo.LoginVO > within CustomerDelegate.java so that it compiles. > > Cheers, > Douglass Turner > email: douglass_dot_turner_at_gmail_dot_com > > > > > > > Yahoo! Groups Links > > > > > > > --- > > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.853 / Virus Database: 581 - Release Date: 01/02/2005 > >

