// We know what plugin is supposed to have the serialization policy file, now go find it
// in the plugin's filesystem
//
IPluginResourceLoader resLoader =
PentahoSystem.get( IPluginResourceLoader.class, PentahoSessionHolder.getSession() );
List<URL> urls = resLoader.findResources( serviceClassloader, serializationPolicyFilename );
if ( urls.size() < 1 ) {
logger.error( Messages.getInstance().getErrorString(
"GwtRpcPluginProxyServlet.ERROR_0006_FAILED_TO_FIND_FILE", serializationPolicyFilename ) ); //$NON-NLS-1$
return null;
}