"Key passed to WebServiceEndpointObjectNames must be of type String";
_logger.log(Level.FINE, msg);
return null;
}
WebServiceEndpointInfo wsInfo = getWebServiceInfo( (String)key);
if ( wsInfo == null) {
return null;
} else {
String implType = wsInfo.getServiceImplType();
boolean isEjb = false;
if ( implType.equals("EJB")) {
isEjb = true;
}
String appName = wsInfo.getAppID();
String modName = wsInfo.getBundleName();
if(wsInfo.isAppStandaloneModule() == true) {
// appId is the module name
modName = appName;
// J2EE application name is null for stand alone modules
appName = null;
}
return getWSObjectNames(appName,
modName, wsInfo.getName(),
getWebServiceEndpointContextRoot( (String)key),isEjb, serverName);
}
}