Lotus Notes Adapter 6.0 | webMethods Lotus Notes Adapter Documentation | webMethods Lotus Notes Adapter Installation and User’s Documentation | Built-In Services Reference | Built-In Services Reference | wm.ln.db:FTDomainSearch
 
wm.ln.db:FTDomainSearch
This flow service conducts a Domain Search, that is, a full-text search of all databases listed in a Domain Catalog and marked as included for multi-database indexing. If you do not specify any sort options, you get the results sorted by relevance score. If you specify a sort by date, you do not get relevance scores.
Input Parameters
query
String The full-text query.
max
String The maximum number of results you want returned from the query. Set this parameter to 0 to receive all matching results.
sortopt
String Use one of the following constants to specify a sorting option:
*FT_SCORES -(default) sorts by relevance score. When the collection is sorted by relevance, the highest relevance appears first. To access the relevance score of each document in the collection, use the FTSearchScore property in returned Documents.
*FT_DATE_DES - sorts by document creation date in descending order.
*FT_DATE_ASC - sorts by document creation date in ascending order.
otheropt
String Use the following constants to specify additional search options. To specify more than one option, use a logical or operation: #
*FT_DATABASE - includes Domino databases in the search scope.
*FT_FILESYSTEM - includes files other than Domino databases in the search scope.
*FT_FUZZY - specifies a fuzzy search.
*FT_STEMS - uses stem words as the basis of the search.
start
String The starting page to return.
count
String The number of pages to return.
entryForm
String The name of the search form in the domain catalog, for example, "Domain Search."
database
Database The current lotus.domino.Database object must represent a Domain Catalog.
Output Parameters
document
Document A document that contains the results of the full-text query.