Re: Resolving adds repetetivly resource to the resource path

2013-02-05 Thread Julian Sedding
Hi Ulrich Looking at the Recent Requests trace you provided, I would suspect that your topnav.jsp has an include on itself. This results in endless recursion, which is evident by the error you get. I would expect the error message to be a RecursionTooDeepException, indicating that the nesting of

Re: Resolving adds repetetivly resource to the resource path

2013-02-05 Thread Julian Sedding
Sling follows the principal of clear separation between public APIs and implementation. The ResourceResolver is an interface, used to define the API contract. This provides Sling itself with the freedom to change or move the implementation (which is ResourceResolverImpl btw). The implementation