Click here to Skip to main content
15,881,172 members
Articles / Web Development / ASP.NET

Querying a SharePoint Portal Server (SPPS) Index using a WebDAV request

Rate me:
Please Sign up or sign in to vote.
3.19/5 (13 votes)
6 Jun 2013CPOL2 min read 47.3K   324   26   3
An article on querying a SharePoint Portal Server (SPPS) Index using a WebDAV request.

Introduction

This article describes the format of WebDAV (Web Distributed Authoring and Versioning) request, and how it can be used to query a SharePoint Portal Server (SPPS) index.

Background

The SharePoint Portal Server uses the Microsoft Index Server to index various documents so that they can be made searchable. An index enables easier search of a document. The SPPS indexes various documents based on the various attributes of the document and its content, e.g., the document type (*.doc), and some keywords used within the content of the document.

A WebDAV request can be used to talk to an index created by SharePoint, and retrieve all the matching documents based on the keywords provided as a search criteria.

Using the code

Step-by-step approach of "How to send a WebDAV request to the SharePoint Portal Server (SPPS)".

  • Create a SharePoint Portal server workspace. Please refer to the SharePoint documentation for the meaning of a workspace.
  • Create a web request instance...
    C#
    // The workspaceUrl is of the form 
    // http://server_name/workspace_name
    HttpWebRequest httpWebRequest = (HttpWebRequest) WebRequest.Create(workspaceUrl);

    The reference variable httpWebRequest now holds the instance HttpWebRequest object.

    C#
    // Setting the HTTP Protocol Version to '1.0'
    httpWebRequest.ProtocolVersion = HttpVersion.Version10;
    // Set the content type.
    httpWebRequest.ContentType = "text/xml";
    // Set the method name.
    httpWebRequest.Method = "SEARCH";
    // Form the required header collection.
    WebHeaderCollection whc = new WebHeaderCollection();
    whc.Add("MS-SEARCH-MAXROWS", maxRows);
    whc.Add("MS-Search-UseContentIndex","t");
    whc.Add("MS-Search-TotalHits","t");
    
    // Set the headers for the web request.
    httpWebRequest.Headers = whc;

    The code snippet listed above is fairly self explanatory. Let me quickly guide you through it. The protocol version is being set in the first line, followed by the content type and the METHOD verb. The keys in the code MS-SEARCH-MAXROWS is reserved and used by the SharePoint portal server to send extra information.

    C#
    // The body of the HTTP request will have the Web DAV request.
    byte[] queryData = Encoding.UTF8.GetBytes(webDavRequest);
    
    // Set the Content Length
    httpWebRequest.ContentLength = queryData.Length;
    // Network Credentials.
    NetworkCredential nwkCredential = 
        new NetworkCredential(
        ConfigurationSettings.AppSettings["SPPSUserName"],
        ConfigurationSettings.AppSettings["SPPSPassword"],
        ConfigurationSettings.AppSettings["SPPSDomain"]);
    
    httpWebRequest.Credentials = nwkCredential;

    In the above code snippet, we are encoding a WebDAV Request using UTF-8 standard and storing it into a byte array. The content length is then set using the byte-array's Length property. The network credentials are then picked up from the web.config file appsettings section.

    C#
    // Send the request.
    Stream requestStream = httpWebRequest.GetRequestStream();
    requestStream.Write(queryData, 0, queryData.Length);
    requestStream.Close();
    
    // Get the HTTP Web Response.
    httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse();

    In the above code snippet, we are sending the web request using the method httpWebRequest.GetRequestStream(). The requestStream is then closed. We retrieve the HTTP web response using the method httpWebRequest.GetResponse().

    C#
    // The 'Content-Range' name-value pair will be of the form 
    // Content-Range: rows 0-63; total=64 OR
    // Content-Range: rows 0--1; total=0
    string contentRange = httpWebResponse.Headers["Content-Range"];
    
    // Get the repsonse stream.
    responseStream = httpWebResponse.GetResponseStream();
    
    // Pipes the stream to a higher level stream reader 
    //with the required encoding format. 
    StreamReader readerRespStream =
        new StreamReader(responseStream, Encoding.UTF8);
    
    string responseStreamData = readerRespStream.ReadToEnd();
    
    // Releases the resources of the response.
    readerRespStream.Close();

    The Content-Range header is the most important and vital header in the SharePoint Portal Server. The format of the Content-Range header is described below:

    • Content-Range: rows 0-63; total=64: This means that there are a total of 64 rows required, starting from 0th to the 63rd row.
    • Content-Range: rows 0--1; total=0: There is no result in this case. This actually means 0th to -1st row. The '-1' will be become 0--1.
  • The next step is to get the response stream, extract it to a string object, and then close the response stream.

Points of interest

That's all there is to know how to send a WebDAV request to a SharePoint portal server. There is a lot more to know about how to create a WebDAV query, this will be discussed in my next article.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect AT&T Wi-Fi Services
United States United States
Naveen has done his Masters (M.S.) in Computer science, has started his career programming the mainframes and now has more than a decade of programming, development and design experience. Naveen has a sharp eye and keen observation skills. Naveen has worked for several companies and strived hard to build large scale business applications and bringing better solutions to the table.
Quite recently Naveen has built a fairly complex integration platform for a large bank. His hobbies include training, mentoring and research. Naveen spends his free time visiting National Parks nationwide.

Naveen has developed the BizTalk Control Center (BCC)
http://biztalkcontrolcenter.codeplex.com

Comments and Discussions

 
General'GetTransformObject' does not exist in the current context Pin
jgama13-Apr-06 9:18
jgama13-Apr-06 9:18 
AnswerRe: 'GetTransformObject' does not exist in the current context Pin
Naveen Karamchetti13-Apr-06 18:10
professionalNaveen Karamchetti13-Apr-06 18:10 
GeneralRe: 'GetTransformObject' does not exist in the current context Pin
jgama19-Apr-06 11:28
jgama19-Apr-06 11:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.