In a separate Eclipse project from my T5 project, I write a service called MyService
Interface: package org.example.mylib; public interface MyService { public String doSomething (); } Impl: package org.example.mylib; public class MyServiceImpl implements MyService { public String doSomething () { return "the something!"; } } MyModule: package org.example.mylib; public class MyModule { public static MyService buildMyService () { return new MyServiceImpl (); } } I then define a manifest file with Manifest-Version: 1.0 Tapestry-Module-Classes: org.example.mylib.MyModule It's UTF8 encoded and has a CRLF at the end. I drop the jar into my classpath, and during the Eclipse Jetty launch, I get an exception: org.mortbay.util.MultiException[java.lang.RuntimeException: Service id 'MyService' has already been defined by org.example.mylib.MyModule.buildMyService() and may not be redefined by org.example.mylib.MyModule.buildMyService(). You should rename one of the service builder methods.] Cheers, Bill -- "The future is here. It's just not evenly distributed yet." -- Traditional --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]