Merge PDF files using Aspose.PDF for .NET - The Contents field is empty or missing

Hello Support team,

We are doing mailmerge and we have a case where the It was throwing an error while doing mailmerge.
can you please check in the attached source code why it throwing an error?

@kkurra

We tested the scenario in our environment and were able to notice the issue while using Aspose.PDF for .NET 20.9. We have logged it as PDFNET-48746 in our issue tracking system. We will further check it in detail and keep you informed about its rectification status. Please be patient and spare us some time.

We are sorry for the inconvenience.

PS: We have edited your post and removed the link of sample project as it contained your license. As requested you earlier in your previous posts, please do not share your license file publicly.

@asad.ali

Can we have any timeline when this would be fixed?

Thanks…

@kkurra

The issue has recently been logged and it will be reviewed on first come first serve basis. As soon as its analysis is complete, we will be able to share any updates about its ETA. We will inform once we have some news on its resolution. Please spare us some time.

@asad.ali

Can we have any timeline when this would be fixed?

Thanks…

@kkurra

The ticket has recently been logged in our issue tracking system and is pending for analysis. It will be investigated/resolved on first come first serve basis. We will surely inform you as soon as we make some certain progress towards it rectification. Please spare us little time.

We are sorry for your inconvenience.

@asad.ali

Hi,
It’s been long time Can you please share ETA for this When it will fixed?

@kkurra

We are afraid that ticket is not yet resolved and due to other issues logged prior to it. We will however certainly inform you about the updates as soon as we have some regarding its resolution or fix ETA. Please give us some time.

We apologize for the inconvenience.

@asad.ali

Hi,

Our customers are suffering with this issue since very long time and they are also asking for update and without timeline it’s very difficult to give them any answer. Please get this ticket as priorities for speed-up process of investigation issue and we can get some timeline.

Thanks.

@kkurra

We have raised the issue priority to next level in terms of its analysis. We will surely try to complete the investigation as soon as possible after completing some ongoing work related to API upgrades. As soon as the investigation is done, we will share fix ETA with you within this forum thread. Please give us some time.

We are sorry for the inconvenience.

@asad.ali
Hi,

Can we have any timeline when this would be fixed?

Thanks…

@kkurra

We are trying to complete the investigation of the issue in current week so that some ETA can be shared. We will inform you soon about the updates.

@asad.ali

Hi,

Can we have some updates here?

Thanks,

@kkurra

We are afraid that investigation of the ticket could not get completed due to ongoing release process of the API. However, we will try to complete it soon and share some ETA with you. We humbly apologize for the inconvenience and delay you have been facing due to this issue.

@kkurra

We would like to share with you that your issue (PDFNET-48746) has been resolved in the upcoming release Aspose.PDF for .NET 20.11. However, please note that SanitizationException is thrown because the document has compromised digital signature: its value points to an incorrect (broken) object. This is a potential security vulnerability that is why we throw an exception for such documents.

In order to ignore the exception please use EnableSignatureSanitization property (in 20.11v). But please note that you will be doing this at your own risk:

Document doc = new Document();
doc.EnableSignatureSanitization = false;
Document mDoc = new Document(new FileStream("3MFB_PCO 21170 (WC Allowance Overage)_20May2020 w bu.pdf", FileMode.Open));
doc.Pages.Add(mDoc.Pages);

The issues you have found earlier (filed as PDFNET-48746) have been fixed in Aspose.PDF for .NET 20.11.

@asad.ali
Hi,

We have checked with the latest version Aspose.PDF for .NET 20.11 and It worked.

Thanks a lot.

1 Like