I startup Zoom Search from within my app:
-----
Process p = new Process();
p.StartInfo.WorkingDirectory = MyPath;
p.StartInfo.FileName = System.Configuration.ConfigurationManager.AppSetti ngs["ZoomIndexer"];
p.StartInfo.Arguments = " -s " + MyPath + "/zoom.zcfg";
p.StartInfo.CreateNoWindow = true;
p.StartInfo.UseShellExecute = false;
p.Start();
p.WaitForExit();
-----
Everything works perfect!
Now I want to index ".doc" also - so I download the plugin and unzip it - and move the word2txt.exe file to my /plugins folder.
Now the .doc type appear and I choose to use it from within "Config/Scan Options".
I look in my "zoom.zcfg" file and see that the ".doc" type is added.
I then run my application and start up "Zoom Indexer" as posted above.
No word documents are found/indexed ( example: http://localhost/mydoc.doc?
The size of the word document does not exceed my settings.
(my "zoom.zcfg" are local to the appl., and the ZoomIndexer.exe/Plugins are located under: C:\Programmer\Zoom Search Engine 5.0)
Where do I go wrong?
Regards
Bo Hessner
-----
Process p = new Process();
p.StartInfo.WorkingDirectory = MyPath;
p.StartInfo.FileName = System.Configuration.ConfigurationManager.AppSetti ngs["ZoomIndexer"];
p.StartInfo.Arguments = " -s " + MyPath + "/zoom.zcfg";
p.StartInfo.CreateNoWindow = true;
p.StartInfo.UseShellExecute = false;
p.Start();
p.WaitForExit();
-----
Everything works perfect!
Now I want to index ".doc" also - so I download the plugin and unzip it - and move the word2txt.exe file to my /plugins folder.
Now the .doc type appear and I choose to use it from within "Config/Scan Options".
I look in my "zoom.zcfg" file and see that the ".doc" type is added.
I then run my application and start up "Zoom Indexer" as posted above.
No word documents are found/indexed ( example: http://localhost/mydoc.doc?
The size of the word document does not exceed my settings.
(my "zoom.zcfg" are local to the appl., and the ZoomIndexer.exe/Plugins are located under: C:\Programmer\Zoom Search Engine 5.0)
Where do I go wrong?
Regards
Bo Hessner
Comment