I got a go ahead to do CMS implementation on top of Alfresco and setting up my development environment and processes to be productive.
I am going to use Foundation API and build the app right on top of Alfresco - inside the same web application as the webclient, which will be used as an additional admin client. As I am learning the foundation API, making own content models and writing code, I would like to test my code against the real repository.
I've already learnt that I could try to create my own unit tests based on BaseAlfrescoTestCase, but was wondering whether I could cheat a little and deploy Alfresco webclient into my appserver with an additional spring code that exposes service registry to my remote code via spring remoting? That would make everything walk in a park, but since I didn't find any wiki or forum articles about this kind of remoting - I assume that it most likely won't work. I assume that some code like authentication / authorization uses ThreadLocal or something similar and that doesn't work well with such remoting.
But should it work?
If anyone can say affirmative "no" or "yes", it could save time from me .