Hi,
I'm currently working with the Amazon MWS API, but having trouble with the amzn-envelope.xsd due to there being circular references. I have looked to find ways around this, but to no avail. The only way I've found would be to make local copies of the schema's and remove the includes myself, as stated here, which I don't want to have to do.
So, I was wondering if there is any way to handle this in Qt? A way to ignore circular references, or a way to work around it?
QUrl url
("https://images-na.ssl-images-amazon.com/images/G/01/rainier/help/xsd/release_1_9/amzn-envelope.xsd");
QXmlSchema schema;
schema.load(url);
QUrl url("https://images-na.ssl-images-amazon.com/images/G/01/rainier/help/xsd/release_1_9/amzn-envelope.xsd");
QXmlSchema schema;
schema.load(url);
To copy to clipboard, switch view to plain text mode
Thanks,
Richard
Bookmarks