Index: src/main/java/org/jboss/modcluster/mcmp/MCMPUtils.java =================================================================== --- src/main/java/org/jboss/modcluster/mcmp/MCMPUtils.java (revision 2161) +++ src/main/java/org/jboss/modcluster/mcmp/MCMPUtils.java (working copy) @@ -386,7 +386,7 @@ public static List parseProxies(String proxyList) { - if (proxyList == null) return Collections.emptyList(); + if (proxyList == null || proxyList.length() == 0) return Collections.emptyList(); String[] tokens = proxyList.split(",");