*/
public AppletRunInfo runApplet(TextData name, TextData release, TextData arguments, boolean update) {
IListAppletService lister = ServiceObjectRegistry.getService("listAppletService", IListAppletService.class);
NamedElement ne = lister.findApplicationJNLP(name.toString());
if (ne == null){
UsageException ue = new UsageException("Unable to launch application: " + name);
ErrorMgr.addError(ue);
throw ue;
}
String startClass = (String)ne.getObject();
String cmdString = "javaws \"" + startClass + "\"";