Search Query Web Service Test Tool for Microsoft Office SharePoint Server (MOSS) 2007

The search web service is located at http://PORTAL/_vti_bin/search.asmx. We developed a UI test tool for the WSS 3.0 and MOSS 2007 search web service. It allows you to change property flags, generate the request XML, send the string to the web service and see the results in the UI. The accessible methods include QueryQueryEx, GetSearchMetaData (available for MOSS only) and GetPortalSearchInfo (available for MOSS only).

To get the tool, please click DOWNLOAD

The Sample Request XML:

<QueryPacket xmlns="urn:Microsoft.Search.Query">
    <Query>
        <SupportedFormats>
             <Format>urn:Microsoft.Search.Response.Document:Document</Format>
        </SupportedFormats>
        <Context>
            <QueryText type="STRING" language="en-us">sharepoint</QueryText>
        </Context>
        <Range>
                <StartAt>1</StartAt>
                <Count>10</Count>
        </Range>
        <Properties>
            <Property name="path"/>
            <Property name="title"/>
        </Properties>
        <SortByProperties>
            <SortByProperty name="path" direction="Ascending"/>
        </SortByProperties>
        <EnableStemming>true</EnableStemming>
        <TrimDuplicates>true</TrimDuplicates>
        <IgnoreAllNoiseQuery>true</IgnoreAllNoiseQuery>
        <ImplicitAndBehavior>true</ImplicitAndBehavior>
        <IncludeRelevanceResults>true</IncludeRelevanceResults>
        <IncludeSpecialTermResults>true</IncludeSpecialTermResults>
        <IncludeHighConfidenceResults>true</IncludeHighConfidenceResults>
    </Query>
</QueryPacket>

Please email us at voyage@mosssearch.com if you have any comments or see any bugs.

This work is licensed under a Creative Commons Attribution-ShareAlike 2.5 License.