Hello,
I try to connect the Microsoft Index Server via COM Objects.
Although I receive no error messages and there are document hits in the catalogue, $rs is always empty!
Some idea?
Thank You!
$q = new com ("ixsso.Query");
$util = new com ("ixsso.util");
$q->query = $QueryText;
$q->SortBy = "rank[d]";
$q->catalog = "docs";
$q->Columns = "filename, Path, size, characterization, rank";
$q->MaxRecords = 300;
$util->AddScopeToQuery ($q, "/", "deep");
$q->LocaleID = $util->ISOToLocaleID("EN-US");
$rs = $q->CreateRecordSet("nonsequential");
PS: I have the following configuration: Windows 2003 Server, PHP 5, Apache2.