Tagged Questions
An IFilter is a plugin that allows the Windows Indexing Service and the newer Windows Desktop Search to index different file formats so that they become searchable.
7
votes
1answer
436 views
Windows Search - IFilter search term highlighting
My development team are having a problem having snippets of text shown for search results in windows 7 for our own custom files (note we are NOT talking about the preview pane that uses the ...
4
votes
0answers
187 views
LoadIFilter() fails on all PDFs (but MS's filtdump.exe doesn't.)
I'm trying to write a C# utility that mimics the behavior of filtdump.exe from the Windows Search SDK (since filtdump doesn't appear to be redistributable itself.) I'm running into a combination of ...
4
votes
1answer
546 views
How to use a specific PDF IFilter
I'm trying to extract text from PDF files using an iFilter.
The Adobe PDF iFilter that is distributed with Adobe Reader is awful, returning HRESULT E_FAIL messages for many PDF documents.
The ...
4
votes
3answers
1k views
LoadIFilter() returns -2147467259 for some PDF files
I am trying to use Adobe IFilter to search PDF files. My code is written in C# and I am using p/invoke to get an instance of IFilter:
[DllImport("query.dll", SetLastError = true, CharSet = ...
3
votes
1answer
284 views
C# IFilterSample, can anyone get it to work?
I am working on creating a custom IFilter for windows for our application. I have downloaded the sample code from MS (Link to MSDN HELP) and followed the exact steps to test in the readme.txt and on ...
3
votes
1answer
377 views
Does an IFilter Exist for Indexing Source Code Files?
Anybody know of an IFilter that can index source code files beyond what the "Plain Text" filter can provide, with possibly a custom "Property Set" specific to programming?
For example, I have 835MB ...
3
votes
2answers
835 views
Programmatically determine which iFilters are installed
I have a problem whereby the Adobe PDF iFilter doesn't work consistently for us. As such, we like to use the one from Foxit. The problem is, if we install the Foxit iFilter and then later the client ...
3
votes
1answer
314 views
IFilter dll works on Windows Desktop Search, but not on SharePoint 2007
I have written an IFilter dll that returns text from my application's file format. I registered it on my local system, and Windows Search correctly returns results with it. I registered it on my ...
2
votes
2answers
377 views
Using a 32 Bit Com Object from a 64 Bit IFilter
I have an IFilter written in Delphi that I'm trying to get working under 64 bit Windows 7 Desktop Search.
Due to it being developed in Delphi I can only compile this as a 32 Bit DLL.
To work ...
2
votes
2answers
773 views
word ifilter for docx parser error
.Docx documents do not appear to be being indexed.
I used a unique string in a .docx, but the .docx is not returned when I search on "one".
For example here's the following text:
"Here is the text ...
2
votes
1answer
778 views
TextReader Read and ReadToEnd hangs without throwing exception
Is there a way to know that a call to TextReader.Read or TextReader.ReadToEnd call will hang without throwing exeption before I do the call?
try
{
using (var filterReader = new ...
2
votes
1answer
74 views
Do I assign different or the same class id to 32-bit and 64-bit versions of the same IFilter?
I've implemented my own Microsoft Search IFilter. I need two versions of it - 32-bit and 64-bit for deploying them on corresponding systems.
In case of IFilters for any file extension I can only ...
2
votes
2answers
274 views
How to implement an IFilter for indexing heavyweight formats?
I need to develop an IFilter for Microsoft Search Server 2008 that performs prolonged computations to extract text. Extracting text from one file can take from 5 seconds to 12 hours. How can I desing ...
1
vote
1answer
39 views
ms search text ifilter
I'm a newbie in MS Search so please forgive the dumb question :-)
I'm storing a large amount of specialized text files for a card game (bridge).
These files are plain textfiles with a specific format ...
1
vote
1answer
73 views
IFilters for index service for DICOM c#
Im trying to use Index service server for searching on DICOM files. I wanted to know if Index service does support .dcm and .dicom file extensions. I did read about IFilters but was unable to find any ...
1
vote
1answer
195 views
How to install a pdf iFilter in SQL Server 2000?
I have a database with binary objects that contain documents. A separate column contains the extension (doc, docx, xls, html, txt, ...). I have set up full text indexing and this has worked for years: ...
1
vote
1answer
68 views
Full-text indexing an archived file
Greetings,
in short, I have to find out whether I can implement a way to index zipped .rtf files via IFilter under Sql Server 2008 Express for fulltext search.
Long version:
this question is mostly a ...
1
vote
1answer
88 views
IFilterSample in 64bit Windows
Has anyone gotten the IFilter sample from Microsoft to work on 64bit Windows 7? I am following the exact steps in the Readme.txt and I don't get the search to return the proper results. Is there ...
1
vote
1answer
220 views
Programmatically generate additional properties during SharePoint crawl
Is it possible to hook into the MOSS 2007 crawl process and programmatically populate a metadata property as the content is being indexed?
The reason I need to do this at crawl time is that the ...
1
vote
4answers
295 views
Why would Windows Search query my IFilter for a bunch of weird interfaces?
I've implemented an IFilter as a native VC++ ATL in-proc COM server. Windows Search wouldn't use it - it creates an instance of my IFilter and then executes a bunch of QueryInterface() calls, ...
1
vote
1answer
563 views
IFilter or SDK for many file types?
Does anybody know of an API/SDK or IFilter in .NET that can read the subject ('title' metadata) and text from the following files:
.PDF
.DOC
.XLS
.PPT
.CSV
.TXT
.DOCX
.XLS
.PPTX
+ the OpenOffice and ...
1
vote
1answer
75 views
What's a good strategy for exposing fatal IFilter problems to the user?
How do I expose errors that occur inside an IFilter to the user?
The IFilter can be loaded by a variety of Microsoft products, server products like SharePoint included. It will be separated into ...
1
vote
1answer
262 views
How to create a preprocessing application for indexing heavyweight formats in Microsoft Search Server 2008?
I need to develop an IFilter for Microsoft Search Server 2008 that performs prolonged computations to extract text. Extracting text from one file can take from 5 seconds to 12 hours.
One idea to ...
0
votes
1answer
52 views
Activator.CreateInstance PDF Windows 2008 R2 Failure
Trying to use PDF iFilter in .NET 4.0 C# on Windows 2008 R2 and cannot even load instance of PDF.
Can successfully create the type from the classID for Adobe:
E8978DA6-047F-4E3D-9C78-CDBE46041603 ...
0
votes
1answer
188 views
Using IFilter in C# and retrieving file from database rather than file system
For a C# web application I am wanting to index text from PDF, DOC, etc files stored in a database.
I have been experimenting with an IFilter example on Code Project which works great for files from ...
0
votes
0answers
132 views
Lucene .NET Azure Blob storage and IFilter
What would be the best way to use IFilter to extract textual content from pdf/word/whatever in an Azure solution?
I've seen examples of IFilter that use a stream, but what should the content of the ...
0
votes
3answers
130 views
Is there an equivalent to IFilter on Mono/Linux?
I'm converting an app from .NET/Windows to mono/linux, but I can't find any information about IFilters. I'm aware of the Microsoft IFilters for Office, Adobe and FoxIt IFilters for PDF, but don't know ...
0
votes
0answers
324 views
Extracting metadata from a word document using IFilter
I am trying to extract text and metadata (author, keywords and the like) from a word document, using the IFilter interface and C#. For docx files this works because the GetChunk
method sometimes ...
0
votes
0answers
196 views
Installing Adobe Reader v9, Adobe PDF IFilter on a SQL Server 2005 Cluster
I have a SQL Server 2005 Cluster which has two, Nodes A and B. There is a around 300 databases on the clusters which is split into 8 instances. My database requires to search on pdf content so to this ...
0
votes
1answer
205 views
Is it possible to use full text search on encrypted column in SQL Server 2008
I have a column, that is encrypted using symmetric key in a database. An encrypted content is just a text. I would like to query this text using full text search. Is it possible?
I was thinking about ...
0
votes
1answer
140 views
SQL Sever 2008 / Office 2007 Full text index issues
Server is running 2008 R2 Standard 64 bit and SQL Server 2008 R2 Workgroup Edition (64-bit)
We store documents in a varbinay(max) and the full text indexes work perfectly for all document types ...
0
votes
1answer
216 views
C# IFilter improperly installed in solution?
Where to begin....
I've inherited a application that searches for strings within files from a previous programmer (that had no documenation) its using EPocalipse.IFilter namespace. It has a few ...
0
votes
4answers
399 views
How to give extra arguments for the Python itertools.ifilter function?
In python I have the following function:
def is_a_nice_element(element, parameter):
#do something
return True or False
Now I would like to filter a list with this function as predicate, ...
0
votes
1answer
232 views
how to get the text and properties(metadata like title,author,subject etc.,) of various files using ifilters?
Can the IFilters be used to fetch document metadata like (To, From fields from an msg format message) and also all types of files? anyone know the solution?
0
votes
1answer
514 views
Use IFilter from VB
I am using VBA (in Access 2003) and I'd like to use the IFilter mechanism to extract the textual contents of files. I found some some nice C++ sample code which makes it look relatively easy, but at ...
0
votes
2answers
44 views
Where should my library deployed into Windows\System32 write logs?
I've developed an IFilter - a library that is to be deployed into Windows\System32. One possible strategy for reporting errors occuring inside it is writing them to a log file. Where should I put that ...
0
votes
1answer
43 views
How to best deal with photos passed to IFilter?
I'm implementing an IFilter for indexing image formats. One problem is photos - many users have tons of photos, photos are huge and loading and searching for text on them is time consuming.
Yes, ...
0
votes
1answer
204 views
Word Ifilter installed on Windows 2k3 Server?
Does anyone know if the iFilters for MS Word are installed by default on a vanilla Win 2k3 server?
0
votes
1answer
443 views
dot net:i need to parse pdf file to get each article with its title?
i want to parse pdf file such that i can identify each article's title and its description.so that i can store title text and descriptiontext in cache for search purpose.is there any library or tool ...
0
votes
1answer
577 views
How do I reference the PDF IFilter (dll) interface built into Windows to extract text and properties (author, title, etc.) of a pdf document via Classic ASP
I need to extract and parse Text from a pdf file in a classic ASP environment. I read another post about using the PDF iFilter driver installed with Adobe Acrobat 9 which can be referenced through ...
0
votes
1answer
514 views
Adobe PDF x64 ifilter
Getting a weird error box when using the 64bit version of adobepdf ifilter for sql server 2005 x64 on a x64 windows server 2003.
The exact message box contents:
MessageBoxHeader: MsFTEFD.exe - ...
0
votes
1answer
364 views
Can't set Ifilter debugging on Vista. Regedit HKLM\Software\Microsoft\Windows Search\Gathering Manager:DebugFilters results in error “Error writing value's contents”
Can't set Ifilter debugging on Vista.
Per instructions at
http://blogs.msdn.com/ifilter/archive/2007/02/06/debugging-ifilters-with-wds-3-0-and-windows-vista.aspx
... I use regedit to set
...