Class "com.aspose.words.Glyph"'s signer information does not match signer information of other classes in the same package

Hi,

I’m trying to insert a document inside another word document. Due to which the doc.save()GlyphError.docx (13.3 KB)
method gives the below error. Please find the stack trace and do the needful.

Thanks & Regards,
Kavita Pandit.

@kavita09 I cannot preproduce the problem on my side using the latest 23.4 version of Aspose.Words for Java. Could you please provide a simple code that will allow us to replicate the issue?

1 Like

@alexey.noskov Actually i am unable to reproduce this in my sample maven application but the same code from our feature branch gives the error. As it is multi module project with huge code base i cannot send that to you’ll. Can you’ll atleast provide your inputs how do i debug it.

@kavita09 Could you please make sure the same versions of Aspose.Words and Aspose.Words.Shaping.Harfbuzz pakcages are used in your application?

<dependency>
	<groupId>com.aspose</groupId>
	<artifactId>aspose-words</artifactId>
	<version>23.4</version>
	<classifier>jdk17</classifier>
</dependency>
<dependency>
	<groupId>com.aspose</groupId>
	<artifactId>aspose-words</artifactId>
	<version>23.4</version>
	<classifier>shaping-harfbuzz-plugin</classifier>
</dependency>