Re: PageTester Can't Find .class Files

2008-02-25 Thread Mark W. Shead
It turned out that changing: String appName = "MyApp"; to String appName = "App"; got rid of this error. I think that Tapestry is appending Module (so it becomes AppModule) to figure out what class to launch the ioc from. Since my application (created from the mvn quickstart) uses AppMo

Re: PageTester Can't Find .class Files

2008-02-19 Thread Howard Lewis Ship
I think you have some kind of issue with the dependencies; you must not have all the necessary dependencies listed for your project, or you are pointing to some mismatched dependencies. On Feb 19, 2008 6:24 PM, Mark W. Shead <[EMAIL PROTECTED]> wrote: > Here is what I've found so far: > > If I str

Re: PageTester Can't Find .class Files

2008-02-19 Thread Mark W. Shead
Here is what I've found so far: If I strip everything with @Inject (logger, other pages, etc) out of the page being tested (and out of any pages referenced by that page), I can get it to run. Is there something additional I need to do to make it work with pages that have @Inject in them?