Hi,
i am using the slides component to generate pptx document. And the code deployed to client environment worked perfectly last month, until now. Now it fails with a strange exception:
Unexpected System.NullReferenceException: Object reference not set to an instance of an object. at .. (Stream stream) at Aspose.Slides.License.SetLicense(Stream stream) at /sanitized/.DAL.PptDOMParser…ctor(Stream fis) at
…
The licensing code looks as follows:
using (Stream license =
Assembly.GetExecutingAssembly().GetManifestResourceStream("/sanitized/.Aspose.Total.lic"))
{
new
Aspose.Slides.License().SetLicense(license);
}
Assembly.GetExecutingAssembly().GetManifestResourceStream("/sanitized/.Aspose.Total.lic"))
{
new
Aspose.Slides.License().SetLicense(license);
}
Nothing changed there recently at all. There was no updates installed. It just stopped working.
Please advice. This is critical issue.