Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dlamet

    Should ArrayOf* be used?

    Can you post some relevant snippets?
  2. dlamet

    How to retrive characters from xml document

    Use an XSLT transform.
  3. dlamet

    How to transform XML data into printed form (newbie)?

    It depends entirely on what the pre-printed form is. If XML (or HTML), look into XSLT.
  4. dlamet

    XML white space

    XML does not provide any mechanism for page formatting. Its purpose is to wrap structured data. For the structure, white space is irrelevant as long as you're not trying to make the XML itself readable. As far as the data, it may contain any information at all. White space may have a...
  5. dlamet

    How to Limit Enum Occurances?

    I'm trying to use a list of enums, but limit the values to only one occurrence of each value. Let's say I have a enum that represents books in a library. <xsd:simpleType name="BOOK_TYPE"> <xsd:annotation> <xsd:documentation>Book Type</xsd:documentation> </xsd:annotation>...
  6. dlamet

    Help with complex XSD data type

    tsuji, thanks for the reply. Looks like this would allow a list of OFF_SEVERITY_TYPE, but would it restrict the list to have only one instance of each value of OFF_SEVERITY_TYPE? Thanks again, Dan
  7. dlamet

    Help with complex XSD data type

    I have inherited a data type that's a simple token enumeration: <xsd:simpleType name="OFF_SEVERITY_TYPE"> <xsd:annotation> <xsd:documentation>Offense Severity</xsd:documentation> </xsd:annotation> <xsd:restriction base="xsd:token"> <xsd:enumeration value="F">...

Part and Inventory Search

Back
Top