|
Answer
|
http://lists.apple.com/archives/webobjects-dev/2008/Jan/msg00474.html
You have done one of the following:
1) return new NextPage(context) instead of pageWithName ("NextPage") (or pageWithName(NextPage.class.getName()) )
2) you have put your .wo folder in a naughty place -- the case we ran into was accidentally creating a component INSIDE another component (note to self -- make wolips consider this an error). I think this can also happen if you put a component in a java source package by accident.
3) Have messed up resource patterns: the patternsets are missing entries or in direct conflict with each other, so things are missing from the Resources directory (like the components). What is important is the contents of the "Resources" and "WebResources" directories in the build folder, not what there contents are in the project. They _should_ match up, but in my case they didn't, and simply selecting "Include as Resource" didn't put the little "R" on the file, because it was already in both the include and exclude patternsets.
|