Milan Trninic - 2004-03-07

Logged In: YES
user_id=992516

I haven't analyzed this enough to be sure, but it seems to me
that the following is sufficient:

  1. The element is not prefixed
  2. There is no prefix bound to the default namespace
  3. Default namespace is declared

Like this:
<SomeElement xmlns="http://www.site.com">
</SomeElement>

The following doesn't cause the exception:

<abc:SomeElement xmlns="http://www.site.com" xmlns:abc="http://www.site.com">
</abc:SomeElement>

Milan