I have a schema like
camera.xsd

  <?xml version="1.0" ?> 
- <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema";
targetNamespace="http://www.camera.org"; xmlns:nikon="http://www.nikon.com";
elementFormDefault="qualified">
  <xsd:import namespace="http://www.nikon.com"; schemaLocation="Nikon.xsd" />

- <xsd:element name="camera">
- <xsd:complexType>
  <xsd:element ref="nikon:body_type" /> 
  </xsd:complexType>
  </xsd:element>
  </xsd:schema>

nikon.xsd
  <?xml version="1.0" ?> 
- <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema";
targetNamespace="http://www.nikon.com"; xmlns="http://www.nikon.com";
elementFormDefault="qualified">
- <xsd:complexType name="body_type">
- <xsd:sequence>
  <xsd:element name="description" type="xsd:string" /> 
  </xsd:sequence>
  </xsd:complexType>
  </xsd:schema>

If I scan camera.xsd, it crashes for processDatatypeValidator.

Can someone help.

Kiran

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to