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

