Jan Just wrote: > > I have solved the problem (there was an error in a schema).
Not detected by XMLSpy? > But I have another problem: > When I open the template, it takes a very long time. I have ca. 80 > schema-files, which are partly load themselves. --> If your schemas don't have a targetNamespace (not speaking of cameleon schemas), they cannot be serialized to a fast-loading format and therefore they cannot be cached. (For example, this is the case of DITA XML Schemas.) If your schemas are not cached, they are revalidated and ``recompiled'' each time they are used, which means a 10x slowdown. --> If your schemas have a targetNamespace, may be you should try creating a single schema file including the 80 files (i.e. simply use xs:include 80 times) to see if this helps schema caching. > I have done also the following (from the FAQ): > http://www.xmlmind.com/xmleditor/user_faq.html#outofmemory Fine.

