Hi Aspose,
I have a C# application to save a SolutionXMLElement to VSDX document like this:
document.SolutionXMLElement[“test”] = “id1”;
document.Save();
When I try to read document.SolutionXMLElement[“test”], it returns the expected value, it means that C# works well.
But when I use Aspose Diagram for Java 17.02.0, I receive no SolutionXML ( “0” and “null” were received after running the following code):
Diagram document = new Diagram(in);
System.out.println("Solution Xml size: " + document.getSolutionXMLs().getCount());
SolutionXML solXml = document.getSolutionXMLs().get(“test”);
System.out.println("solXml: " + solXml);
Can you let me know what’s the problem here? I’m attaching my Vsdx document for your reference. Thank you.
Best Regards,
Tuyen