Hello all. I've recently changed the namespace of my schema. Now I'm getting the wrong prefix name and I'm not sure why.
Old namespace was: xmlns:*xxx*="http://ccc.bbb.aaa" New namespace is: xmlns:*xxx*="*yyy*:aaa:bbb:ccc" With the old namespace, the prefix for elements was xxx. Now with the new namespace, the prefix fpr elements is *yyy*. It seems switching from URL form to URI form has caused the processor to start using the first part of the URI as the prefix? This happens when I call the static Factory.newInstance() on generated classes. Older documents with the correct prefix still parse properly. It's not a big deal since the namespace is intact and things work as they should, but I can't figure out why this is happening. I don't declare xmlns: *yyy* anywhere in the schema or xsdconfig files. Michael Bishop