Jeremiah Jahn wrote:
> Is the only way to edit a document using a non xxe schema to add a
> configuration for it?

No. Simply add similar (standard) attributes to the root element of your 
XML document.

---
xsi:schemaLocation="XXX YYY ZZZ VVV"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
---

If, in addition, you want the document to be styled and still don't want 
to create a configuration for it, add:

---
<?xml-stylesheet type="text/css" href="WWW" ?>
---

after:

---
<?xml version="1.0" encoding="AAA" ?>
---

All this is described in
http://www.xmlmind.com/xmleditor/_distrib/docs/poweruser/ar01s01.html



> I'm in a devlopment phase and deen to create lots of little schemas and
> then create xml files based on them. I'd like to avoid having to create
> a new configuration for each one. I'd also like to use xxe as the way to
> create the first instance of the new schema, not have to make one by
> hand then use it for the conf file. Am I just missing something or
> what..? 

No. There is no way to do that. (Unless you write custom code in Java 
using XXE APIs).



PS: Remember that support of XML schemas has been restricted in free 
Standard Edition. See http://www.xmlmind.com/xmleditor/stdedition.html

(In practice, this mean that if you want to experiment with schemas 
using Standard Edition, you need to choose target namespaces with an URI 
starting with "http://www.xmlmind.com/xmleditor/schema/";. Example 
"http://www.xmlmind.com/xmleditor/schema/foo/bar/gee";.)


Reply via email to