@nageshcrm
We have changed the images link in JSON with base64 images and use following code example to reproduce the issue. The modified JSON is attached. SampleJson.zip (14.0 KB)
We have logged this problem in our issue tracking system as WORDSNET-22770. You will be notified via this forum thread once this issue is resolved. We apologize for your inconvenience.
var doc = new Aspose.Words.Document(MyDir + "SampleReport.docx");
var json = File.ReadAllText(MyDir + "SampleJson.txt");
JsonDataLoadOptions options = new JsonDataLoadOptions();
options.SimpleValueParseMode = JsonSimpleValueParseMode.Strict;
var dataStream = new MemoryStream(Encoding.ASCII.GetBytes(json));
var jsonDataSource = new JsonDataSource(dataStream, options);
var engine = new ReportingEngine();
engine.Options = ReportBuildOptions.AllowMissingMembers;
engine.BuildReport(doc, jsonDataSource);
doc.Save(MyDir + "21.9.docx");
We have tested the scenario and managed to reproduce the same issue at our side. For the sake of correction, we have logged this problem in our issue tracking system as WORDSNET-22770. You will be notified via this forum thread once this issue is resolved.
We apologize for your inconvenience.