I've run into an issue where saving a new CrystalEnterprise.Program instance is throwing an ambiguous exception with no other information than a generic HRESULT code and the even less useful error message "File Repository Server error". I've debugged the code using the COMException managed debugging assistant and Reflector to get to the callsite of the COM object, but there is nothing there to indicate what the actual File Repository error is attributed to. Logging for the InputFileRepository service in the CMS was been set to HIGH, but nothing shows there as a result of my code executing.
The call to myInfoStore.Commit(...) is where the COMException is thrown.
protected void CreateProgramObject(InfoStore infoStore)
{
using(PluginManager pluginManager = infoStore.PluginManager)
{
using(InfoObjects newCollection = infoStore.NewInfoObjectCollection())
{
using(PluginInfo programPlugin = pluginManager.GetPluginInfo("CrystalEnterprise.Program"))
{
using(Program tempProg = (Program)newCollection.Add(programPlugin))
{
const string USER_FOLDER_QUERY =
"Select SI_ID From CI_INFOOBJECTS Where SI_NAME = 'sample.user@client.com'";
using(InfoObjects folders = infoStore.Query(USER_FOLDER_QUERY))
{
if(folders.Count < 1)
{
Response.Write("No user folder was found!");
return;
}
using(InfoObject userReportFolder = folders[1])
{
tempProg.Title = "Scheduled File";
tempProg.Description = "My new program";
tempProg.ParentID = userReportFolder.ID;
tempProg.ProgramType = CeProgramType.ceScript;
tempProg.Files.Add(@"E:\sample.bat");
try
{
infoStore.Commit(newCollection);
}
catch(SystemException snx)
{
Trace.Write(snx.ToString());
}
}
}
}
}
}
}
}
Has anyone run into this issue and found a resolution?