IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
Expand all | Collapse all

A Tamino Schema to Store W3C Schema

  • 1.  A Tamino Schema to Store W3C Schema

    Posted Tue October 29, 2002 08:04 AM

    Hi all,
    Is it possible (or has it already been done) to have a Tamino Schema which will index W3 Schemas? I’m thinking of using Tamino Server as a respositry/registry for W3Schemas


    #API-Management
    #webMethods
    #Tamino


  • 2.  RE: A Tamino Schema to Store W3C Schema

    Posted Thu October 31, 2002 03:50 PM

    For that you have to define a schema that describes your instances.

    First, Tamino TSD3 does not support every detail from the W3C-Metaschema. But you may reduce the metaschema by use of xs:any to a form that can be handled by Tamino. The most simple metaschema is:
    xs:schema...
    <xs:element name = “schema”>
    xs:complexType
    xs:choice
    <xs:any processContents = “skip”></xs:any>
    </xs:choice>
    </xs:complexType>
    </xs:element>
    </xs:schema>

    But you are not permitted to use the xml schema namespace as targetnamespace and that makes the task impossible. :frowning:

    Anyone with another idea?


    #webMethods
    #Tamino
    #API-Management