When I open an XML document Liquid XML automatically starts loading the associated schemas from its internal standard library, but I want it to use my schemas as we are working with a modified version of the standard.
How do I stop Liquid XML automatically loading schemas to validate my XML document
123 Views Asked by Sprotty At
1
There are 1 best solutions below
Related Questions in LIQUID-XML
- Liquid XML writes odd chars  on the front of the file my xml file
- Issue with line 450 of an XSD file doesn't let me convert it to XML
- How do I specifty the order of properties in json schema created by Liquid Studio?
- XML Liquid Studio 2018 - Schema Subset - similar to XmlSpy
- Fast replace the same text in few files in Liquid XML Studio
- Section not showing Youtube URL
- How do I stop Liquid XML automatically loading schemas to validate my XML document
- How can I drag files from Explorer to Liquid XML Studio?
- Can I automatically associate an XSD schema with an XML document
- Failed to save options error in Liquid XML Studio
- Font 'Courier New' does not support style 'Regular' in Liquid XML
- Group name attribute invalid
- Can I get additional trace information from Liquid XML
- Registration Error running code with Liquid-XML Lib
- Running LiquidXML code generated from the Data Binder produces a 'Version Mismatch Error' at Runtime
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
On some occasions you may not want a standard schemas to be used to to provide validation and intellisense for your XML Document. This may be for performance reasons, or because you have modified the standard, or maybe the standard uses the same namespace for all its versions (it happens more than you think), and the version in the library is not the one you are using.
In order to stop this happening:
You can create a new Schema Library Entry for your version of the schemas See Can I automatically associate an XSD schema with an XML document