User: d_jencks
  Date: 01/09/26 14:47:04

  Modified:    src/main/org/jboss Main.java
  Log:
  ServiceDeployer: added local dir support, undeploy support for depends, reworked 
classpath dependencies. Changed config files to work. REMOVE core-service.xml or 
build.sh cleancvs update -d -P >update11.log
  
  Revision  Changes    Path
  1.50      +6 -2      jboss/src/main/org/jboss/Main.java
  
  Index: Main.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/Main.java,v
  retrieving revision 1.49
  retrieving revision 1.50
  diff -u -r1.49 -r1.50
  --- Main.java 2001/09/19 01:20:51     1.49
  +++ Main.java 2001/09/26 21:47:04     1.50
  @@ -43,7 +43,7 @@
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Marc Fleury</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Jason Dillon</a>
  - * @version $Revision: 1.49 $
  + * @version $Revision: 1.50 $
    *
    * <b>Revisions:</b>
    * <p>
  @@ -128,7 +128,11 @@
            while (bootURLs.hasNext())
            {
               // The libraries will register themselves with the libraries
  -            new URLClassLoader(new URL[]{(URL)bootURLs.next()});
  +            URL thisUrl = (URL)bootURLs.next();
  +            //Only the boot urls are keyed on themselves: 
  +            //everything else is copied for loading but keyed on the
  +            //original deployed url.
  +            new URLClassLoader(new URL[]{thisUrl}, thisUrl);
            }
   
            // Create MBeanClassLoader for the base system
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to