Click here to Skip to main content
1,837 members
Articles / Security / .NET 2.0
Article

Adding Properties to MOSS Advanced Search

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
12 Apr 2012 6.1K  
This article explains the steps to create and configure a Managed Property in MOSS 2007 Advanced Search

This article is a sponsored article. Articles such as these are intended to provide you with information on products and services that we consider useful and of value to developers

Introduction

There are changes in configuring the Properties to appear in the Advanced Search in MOSS 2007. Here I explain the steps to create Managed Properties and configure it in MOSS 2007 Advanced Search.

Adding Properties to MOSS Advanced Search

  1. Go to the central administration -> Shared Services

    Sample screenshot

  2. Under the Search Menu, click on Search Settings.
  3. In the Configure Search Settings page, click on Metadata Property Mappings.

    Sample screenshot

  4. In the Metadata Property Mappings page, click on New Managed Property

    Sample screenshot

  5. Enter the Property Name and add the crawled properties that you want to add by clicking on the Add mappings button.

    Sample screenshot

    Sample screenshot

  6. Click OK. Once you have created the new custom managed property, go to the Advanced Search page.
    • Click on Site Settings and then on "Edit Page"
    • Click on Edit Menu of the Webpart and then Select "Modify Shared Web part"

In the Advanced Search Box Pane, click on the Properties Menu and then select the content in the Properties Text Box. In order that your Managed Properties appears in the Properties lists, you need to make changes in the XML file content.

Sample screenshot

The XML File in Properties has the following structure:

  • Find the string:

    XML
    <PropertyDef Name="ModifiedBy" DataType="text" 
                DisplayName="Last Modified By"/> 

  • Add the following String below it:

    XML
    <PropertyDef Name="MyProperty" DataType="text" DisplayName="MyProperty"/>

    MyProperty denotes the managed property that was created in Search Settings in the Shared Services.

  • Find the ResultType node:

    XML
    <ResultType DisplayName="All Results" Name="default">

  • Add the following string below this:

    <PropertyRef Name="MyProperty" />

  • Now you can click on Apply and OK to close the pane.
  • The property "MyProperty" will appear in the Property list box when All Results is selected.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United Arab Emirates United Arab Emirates
This member doesn't quite have enough reputation to be able to display their biography and homepage.

Comments and Discussions

 
-- There are no messages in this forum --