I am trying to implement the Verity search engine. The first thing I want to seach is a discussion board. I created a collection in the Verity Administrator called "Messages". I indexed using the following code:
When I try to run a search against it, I get an error that it can't open the collection. What am I doing wrong? Thanks for any assistance.
Code:
<body>
<!--- Run a query on entire message table --->
<CFQUERY NAME="GetMessageTable"
DATASOURCE="#Application.Datasource#"
DBTYPE="ODBC">
SELECT *
FROM MessageTable
</CFQUERY>
<!--- Index the results --->
<CFINDEX ACTION="UPDATE"
COLLECTION="Messages"
KEY="MessageID"
TYPE="CUSTOM"
TITLE="Subject"
QUERY="GetMessageTable"
BODY="MsgSubject,MsgMessage">
</body>
When I try to run a search against it, I get an error that it can't open the collection. What am I doing wrong? Thanks for any assistance.