Re: Tapestry in distributed environment

2014-09-02 Thread Mugat Gurkowsky
this works like charm- thanks a lot On Fri, Aug 29, 2014 at 4:26 PM, Daniel Jue wrote: > For instance, in my project, see this BeforeSuite annotated method: > > > https://github.com/Sotera/graphene/blob/master/graphene-parent/graphene-util/src/test/java/graphene/util/fs/PropertiesFileSymbolPro

Re: Tapestry in distributed environment

2014-08-29 Thread Daniel Jue
For instance, in my project, see this BeforeSuite annotated method: https://github.com/Sotera/graphene/blob/master/graphene-parent/graphene-util/src/test/java/graphene/util/fs/PropertiesFileSymbolProviderTest.java On Fri, Aug 29, 2014 at 10:24 AM, Daniel Jue wrote: > Another good place to look

Re: Tapestry in distributed environment

2014-08-29 Thread Daniel Jue
Another good place to look is in any of the unit or integration tests for frameworks or apps that use Tapestry. You often want to start up a registry there so you can import modules to wire up DAOs, services, etc. On Fri, Aug 29, 2014 at 8:50 AM, Thiago H de Paula Figueiredo < thiag...@gmail.com

Re: Tapestry in distributed environment

2014-08-29 Thread Thiago H de Paula Figueiredo
On Fri, 29 Aug 2014 08:39:50 -0300, Mugat Gurkowsky wrote: hello, Hi! i would like to be able to use tapestry IoC (especially injections) in the> drone-clients, but i have run into problems with that. in the documentations i have not seen any way which would make use of Tapestry IoC fr

RE: Tapestry in distributed environment

2014-08-29 Thread Tony Nelson
All you need to do is build the registry. This is the shell of a main class (in groovy). @Slf4j class Main { static void main(String[] args) { // this is the module you wish to load, you may of course add several RegistryBuilder registryBuilder = new RegistryBuilder();