Re: Page Loading and OSGI

2008-08-14 Thread Atle Prange
Igor Drobiazko wrote: As described in TAPESTRY-2519 you need to override the service ClasspathURLConverter. Something like that: public class MyClasspathURLConverterImpl implements ClasspathURLConverter { public URL convert(URL url) { if (url.getProtocol().startsWith("bundle"))

Re: Page Loading and OSGI

2008-08-14 Thread Igor Drobiazko
As described in TAPESTRY-2519 you need to override the service ClasspathURLConverter. Something like that: public class MyClasspathURLConverterImpl implements ClasspathURLConverter { public URL convert(URL url) { if (url.getProtocol().startsWith("bundle")) {

Re: Page Loading and OSGI

2008-08-14 Thread Filip S. Adamsen
Hi, I have no experience with OSGi, but perhaps this issue can help: https://issues.apache.org/jira/browse/TAPESTRY-2519 -Filip On 2008-08-14 15:09, Atle Prange wrote: Hi, i am currrently trying to integrate tapestry into an OSGI container using apache felix and the ops4j pax web service. (F