"lib"+ // NOI18N
File.separator;
classPath.add(as_lib_root + "javaee.jar"); // NOI18N
}
JarClassLoader jcl = new JarClassLoader();
// toURI().toURL() takes care of all the escape characters in the
// absolutePath. The toURI() method encodes all escape characters. Since
// EJBClassLoader does not decode these urls here only toURL() is used.
// Once this issue is fixed in EJBClassloader we can change it to
// toURI().toURL()
for (String path : classPath)
jcl.appendURL(new File(path));
return jcl;
}