Re: tomcat 8 depends on URL.setURLStreamHandlerFactory method

2014-10-02 Thread Mark Thomas
On 02/10/2014 15:24, Johan Compagner wrote: > thx mark, > > that seems to work, at least i do get further but i bomb into the next issue > that is in this code of StandardRoot > > protected void startInternal() throws LifecycleException { > String docBase = context.getDocBase(); > >

Re: tomcat 8 depends on URL.setURLStreamHandlerFactory method

2014-10-02 Thread Johan Compagner
thx mark, that seems to work, at least i do get further but i bomb into the next issue that is in this code of StandardRoot protected void startInternal() throws LifecycleException { String docBase = context.getDocBase(); File f = new File(docBase); if (!f.isAbsolute(

Re: tomcat 8 depends on URL.setURLStreamHandlerFactory method

2014-10-01 Thread Mark Thomas
On 01/10/2014 16:59, Johan Compagner wrote: > Hi, > > we have tomcat completely as an OSGI plugin project: > > https://github.com/Servoy/servoy-eclipse-tomcat/tree/master/org.apache.tomcat > > so that we can start it from our eclipse application and also dynamically > add servlets and filters fr

tomcat 8 depends on URL.setURLStreamHandlerFactory method

2014-10-01 Thread Johan Compagner
Hi, we have tomcat completely as an OSGI plugin project: https://github.com/Servoy/servoy-eclipse-tomcat/tree/master/org.apache.tomcat so that we can start it from our eclipse application and also dynamically add servlets and filters from all kinds of plugins (so everything is osgi based) Our a