Search found 7 matches

by ahundiak
Thu Jul 14, 2005 11:38 pm
Forum: XML Schemas
Topic: Restricting Lists
Replies: 1
Views: 9510

Sorry. Forgot to use BBcode and maybe I'm blind but I can't seem to find the edit post button. Here is the list: <xs:simpleType name="anySimpleList" > <xs:list itemType="xs:string" /> </xs:simpleType> <!-- base data type for simple lists with array attributes --> <xs:complexType ...
by ahundiak
Thu Jul 14, 2005 11:32 pm
Forum: XML Schemas
Topic: Restricting Lists
Replies: 1
Views: 9510

Restricting Lists

I'm trying to restrict the type and number of elements in a list with some attributes. The generic attribute list looks like this: <xs:simpleType name="anySimpleList" > <xs:list itemType="xs:string" /> </xs:simpleType> <!-- base data type for simple lists with array attributes --...
by ahundiak
Wed Mar 30, 2005 4:35 pm
Forum: Common Problems
Topic: Eclipse XSD Import Cache
Replies: 4
Views: 5144

Ok. I can live with that. It's a great product by the way. But maybe we need an Eclipse Plugin Forum?
by ahundiak
Tue Mar 29, 2005 6:19 pm
Forum: Common Problems
Topic: Eclipse XSD Import Cache
Replies: 4
Views: 5144

But that probably means opening up each import file. Which is ok but in this scenerio the files were never opened. It's just that the validator insists on rechecking them even after the import statements are removed from the original file. I sort of think that once the import statements are deleted ...
by ahundiak
Mon Mar 28, 2005 8:03 pm
Forum: Common Problems
Topic: Eclipse XSD Import Cache
Replies: 4
Views: 5144

Eclipse XSD Import Cache

Does the Eclipse plugin cache imported xsd schemas? And, if so, how do I clear them. Running Eclipse 3.0.1 under Windows XP with the 5.1.0 plugin. 1. Open an xsd schema file which contains several xs:import elements. 2. Press Validate Document 3. The imported schema files contain errors which are re...
by ahundiak
Mon Mar 28, 2005 5:40 pm
Forum: XML Schemas
Topic: Extending and adding attributes
Replies: 2
Views: 15347

Thanks a bunch. That makes sense.
by ahundiak
Wed Mar 23, 2005 8:58 pm
Forum: XML Schemas
Topic: Extending and adding attributes
Replies: 2
Views: 15347

Extending and adding attributes

I am trying to extend a complex type and add some additional attributes. <xs:complexType name="EntityType" abstract="true"> <xs:attribute name="id" type="xs:ID" use="optional"/> <xs:attribute name="href" type="xs:anyURI" use="...