I have my crawled propeties scanned and indexed on my Search Express 2008. I can even see those asp pages are reported being using in Search Admin > metadata properties but those crawled properties aren't available on my search result from search.asmx QueryEx
for example: I have an asp page has the following meta tag, and I've mapped those crawled properties to managed properties and also did full crawl.
<meta name="ExpiryDate" content="3/28/2010">
<meta name="Contact" content="William Smith">
<meta name="dc.date.created" content="2/2/2004">
<meta name="dc.date.modified" content="5/8/2009">
when I have my QueryEX
select title, path, fileextension, HitHighlightedSummary, created, enddate, FileName, size, rank, author, write, sitename
from scope()
where freetext('testing')
and sitename = 'http://intranet'
and (fileextension = 'HTML' or fileextension = 'HTM' or fileextension = 'ASP' or fileextension = 'DOC' or fileextension = 'XLS' or fileextension = 'PDF' )
order by rank desc
XML result (see .doc has enddate, created and wirte but none for asp page)
- <RelevantResults diffgr:id="RelevantResults266" msdata:rowOrder="265">
<TITLE>Monday, May 12, 2008</TITLE>
<PATH>http://intranet/content/bulletin/08-05-eng/media0512.asp</PATH>
<FILEEXTENSION>ASP</FILEEXTENSION>
<HITHIGHLIGHTEDSUMMARY><ddd/> story of the 1980 <c0>Banff</c0> maulings from a grizzly's perspective</HITHIGHLIGHTEDSUMMARY>
<FILENAME>media0512.asp</FILENAME>
- <AUTHOR xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<string>Denise Guindon</string>
</AUTHOR>
<SITENAME>http://intranet</SITENAME>
</RelevantResults>
- <RelevantResults diffgr:id="RelevantResults268" msdata:rowOrder="267">
<TITLE>Ecological Monitoring and Reporting Working Plan 2004-05</TITLE>
<PATH>http://intranet/content/eco-re/orig/banff 08-09 workplan_e.doc</PATH>
<FILEEXTENSION>DOC</FILEEXTENSION>
<HITHIGHLIGHTEDSUMMARY><ddd/> aerial survey of <c0>Banff</c0> (every 5 years), with implications for caribou, moose, and carnivore populat <ddd/> Institute <c0>Banff</c0> Springs Snail 0 0 Monitor snail population and habitat attributes Completed Fores <ddd/> y 2 3 3 3 1 3 3 3 <c0>Banff</c0> Springs Snail - Species at Risk</HITHIGHLIGHTEDSUMMARY>
<CREATED>2008-03-26T12:56:00-04:00</CREATED>
- <ENDDATE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<dateTime>2011-01-21T00:00:00-05:00</dateTime>
</ENDDATE>
<FILENAME>banff 08-09 workplan_e.doc</FILENAME>
- <AUTHOR xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<string>Stephen McCanny</string>
<string>Stephanie Wong</string>
</AUTHOR>
<WRITE>2009-04-07T19:13:26-04:00</WRITE>
<SITENAME>http://intranet</SITENAME>
</RelevantResults>
it returns only those .doc, .ppt and .xls has "created","write" and "enddate", none of those from any asp pages.
is there anything I have to enable ?