﻿Minor change to allow things to with with embedded router in BiglyBT:

RouterConsoleRunner.java:

    after the existing line in initialize()
    
        context.setSecurityHandler(sec);
    
    add this to select a classloader that will work
        
        try{
        	context.setClassLoader(new WebAppClassLoader(RouterConsoleRunner.class.getClassLoader(), context));
        	
        }catch( Throwable e ){
        	
        	e.printStackTrace();
        }
   
Comment out startTrayApp otherwise we get a non-daemon wrapper thread screwing things up

	//startTrayApp();
        
Messages extracted from original jar and placed in -messages.jar
