Hi Friends,
I created a file crawler using Lucene.Net in conjuction with implementation of IFilterExtension.
This piece of code works fine as a console application but doesn't run inside DNN scheduler.
Following line return negative value.
// Load an IFilter
IFilter filter;
int hResult = NativeMethods.LoadIFilter(extension, new IntPtr(0), out filter);
if (hResult != 0)
throw new InvalidOperationException(string.Format("Failed to find an IFilter for {0} files. HRESULT: 0x{1:x}", extension, hResult));
Look like a permission issue. Can any one help me to resolve this issue.
Regards
Bibhas Paul