Rendering out a page from an OSGI Bundle Hi,I've run into an issue while trying to create a custom OSGI bundle that solves the following problem:We have a list of several thousand keys in a CSV file that need to point to specific pages, and then render the content of that page.Conceptually, I believe I understand how I'm supposed to do it:The OSGI bundle runs in the background, available for a *.JSP to reference.The bundle loads the CSV*, parsing the key->value from the JSP that was referenced. (eg. 54, /path/to/the/requested/resource)The bundle then renders the resource out as part of the request.* I know the second step needs refinement (it should be loaded after the server loads, and remain in memory until it's shut down; we don't want to thrash the HDD and memory is much faster but for now this is mainly for a proof of concept.)I should add that I'm pretty lousy when it comes to Java programming but using various tutorials I've managed to return a string so far. From that I've then tried to resolve the resource inside