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
  • 1.  Confused about Non-XML Indexer

    Posted Tue November 18, 2003 07:04 PM

    Hello,
    I’m a little bit confused about the Tamino Non-XML Indexer. Should I expect it to convert my word document saved in Tamino to XML and adapt the content to the collection I defined? Then could I query the content of the document somehow like ‘Owner=George’? :confused:


    #Tamino
    #webMethods
    #API-Management


  • 2.  RE: Confused about Non-XML Indexer

    Posted Thu November 20, 2003 12:12 PM

    The nonxml indexer does not convert the word document into XML. What is does is extract useful metadata and store the metadata as a shadow xml document. The schema it uses is fixed and is the one supplied with the nonxml indexer (see etc subdirectory). Therefore it is possible to query this metadata, e.g. the creator of the document. For more information please see the documentation that comes with the nonxml indexer.

    Best regards,

    Stuart Fyffe-Collins
    Software AG (UK) Ltd.


    #API-Management
    #webMethods
    #Tamino


  • 3.  RE: Confused about Non-XML Indexer

    Posted Fri April 09, 2004 10:27 PM

    Thanks for the advice about reading the documentation that comes with the Non-XML Indexer. There?s ok information about installing it, but below is what you get, when you want information about using it (very useful !!):

    Using the Tamino Non-XML Indexer
    After the steps listed in the section Installing the Tamino Non-XML Indexer have been successfully completed, the product is ready for use.

    Many regards from Ole

    InterResearch A/S - Vestergade 9 - DK-1456 Copenhagen K
    Phone: +45 70 27 28 72 - Mobile: +45 20 10 21 74 - Fax: +45 70 27 28 79
    E-mail: oen@interresearch.dk - Homepage: http://www.interresearch.net/


    #API-Management
    #webMethods
    #Tamino


  • 4.  RE: Confused about Non-XML Indexer

    Posted Fri May 07, 2004 05:23 AM

    Yeah, unfortunately the manual doesn’t explain how to query the metadata. The tricky thing to understand is that the non-xml document and the metadata have the same doctype name. It’s like you have two objects in the same collection with the exact same name.

    So, to retrieve a non-xml document, you access it via http like:
    http://localhost/tamino/mydb/myCollection/myDoctype/@3

    or better yet, using an API such as TResponse.getNonXMLObjectIterator().

    To query metadata about the same object, you use x-query. From Interactive interface if you execute the query “/myDoctype” and you get:








    Hope this helps.

    Bill


    #webMethods
    #API-Management
    #Tamino


  • 5.  RE: Confused about Non-XML Indexer

    Posted Fri May 28, 2004 03:10 PM

    The thing I was most confused about was that template.xsd . I wondered what it was for. I always stored my nonXML content into ino:etc/ino:nonXML (because it’s there by default and you don’t have to set anything up).

    Then I noticed: template.xsd is a nonXML schema! So I need to store my nonXML content there! And then the installed Indexer would take care of it and create that shadow document. And so it was!

    Best regards, Andreas


    #Tamino
    #API-Management
    #webMethods