5,448,416 members and growing! (18,231 online)
Email Password   helpLost your password?
Web Development » ASP.NET » Howto     Intermediate License: The Code Project Open License (CPOL)

Pushing data into a SharePoint server

By Steven Campbell

Describes a way to push data into a Windows 2003 SharePoint server, from a web form.
C#.NET 1.0, .NET 1.1, Win2K, WinXP, Win2003, Windows, .NET, ASP.NET, Visual Studio, Dev

Posted: 25 Jan 2004
Updated: 25 Jan 2004
Views: 111,143
Bookmarked: 30 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
10 votes for this Article.
Popularity: 2.65 Rating: 2.65 out of 5
2 votes, 18.2%
1
1 vote, 9.1%
2
1 vote, 9.1%
3
4 votes, 36.4%
4
3 votes, 27.3%
5

Introduction

Windows 2003 comes standard with something called Windows SharePoint™ Services, found here. This provides some pretty impressive Intranet functionality right out of the box (well, with one additional download).

Once set up, it provides a database driven website with content that is controlled by the users. Users can add various types of content, using predesigned "web parts", which are basically ASP.NET web controls. In addition, it provides a Web Service API which developers can use to push data right onto the website.

This article shows how to implement a simple user feedback web form, with results that display on an intranet site. We'll use part of the API to do that. (Development of custom "web parts" is also worthy of an article, but I'll leave that to someone else).

Preparation

Before you can use the sample code, you need to have a Windows 2003 server set up with SharePoint Services. You can find the download at the URL mentioned previously. Once installed, you will need to create a website, using the provided admin tools. On the website, you will need to set up a "List", which will contain the feedback in a format that the intranet users will like. You can and should customize the fields of your list, as follows:

  • Name (rename title)
  • Comment (rename description)
  • Email address (new field)

I won't go into how to set up SharePoint Services. If you have problems, post a question below, and I will answer as best I can.

Using the code

First, we create a simple ASP.NET form, containing fields for Name, Comment and Email address. Add validation controls if you need. Add a web reference to the Lists web service, found at http://YourSharepointServerName/_vti_bin/Lists.asmx.

The web service provides an UpdateListItems method, which takes some XML as a parameter. The XML is of a format:

<Batch><Method><Field>FieldValue</Field></Method></Batch>

Error handling is primitive, so you should be sure to use the correct case for everything (XML is case-sensitive), and the correct names for all of your fields.

The following snippet of code can be added behind your form's submit button:

private void btnSubmit_Click(object sender, System.EventArgs e)
{
    Lists listService = new Lists();
    listService.Credentials = GetCredentials();
    //we need to login as a user of sharepoint


    Page.Validate();    //force the validation, for non-IE browsers

    if (Page.IsValid)
    {
        XmlDocument doc = new XmlDocument();
        XmlElement updates = doc.CreateElement("Batch");
    
        updates.InnerXml = string.Format(
            "<Method id=1 Cmd="New">" +
            "<Field Name='ID'>New</Field>" +
            "<Field Name='Title'>{0}</Field>" +
            "<Field Name='Body'>{1}</Field>" +
            "<Field Name='Email'>{2}</Field>" +
            "</Method>", 
            txtName.Text, 
            txtComment.Text, 
            txtEmail.Text);

        XmlNode node = null;
        try
        {
            node = listService.UpdateListItems(
             System.Configuration.ConfigurationSettings.AppSettings["listName"], 
             updates);

            //TODO: Really, we should parse the returned 

            //XmlNode object to check for success code.

            Response.Redirect("thanks.aspx");
        } 
        catch (WebException err)
        {
            if (err.Message.StartsWith("The underlying connection was closed"))
                lblError.Text = "The feedback service is currently" +
                                " unavailable.  Please try again later";
            else
                lblError.Text = err.Message;
        }
        catch (Exception err)
        {
            lblError.Text = err.Message;
        }
    } 
    else
    {
        //do nothing.  The validation controls 

        //will kick in on the postback.

    }
}

Notice that, when setting updates.innerXML, we specify the original list field names for those that we renamed. SharePoint remembers the original name separately. You can see the actual field name when editing the field in SharePoint, as part of the URL (something like &Field=Title near the end).

For this code to work, you need to add an appsetting for listName to your web.config file. The setting should contain the name that you gave to your particular list.

The SharePoint Lists Web Service requires that you authenticate. You can do this using a Windows username and password that has access to the SharePoint website. I stored these credentials inside of the web.config file, and then created the following code to return the credentials:

private NetworkCredential GetCredentials()
{
    try
    {
        return new NetworkCredential(
            System.Configuration.ConfigurationSettings.AppSettings["userName"], 
            System.Configuration.ConfigurationSettings.AppSettings["password"], 
            System.Configuration.ConfigurationSettings.AppSettings["domain"]);
    } 
    catch (Exception err)
    {
        throw new ApplicationException(
            "Service failed to login to the network.", 
            err);
    }
}

And that's about all there is to it. I hope this article helps in getting started with SharePoint services.

Points of Interest

When using the sample code, be sure to edit the web.config file first, to contain appropriate settings for your environment.

License

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

About the Author

Steven Campbell


Steve is a software development consultant working in Minneapolis, MN.

He has spent his working life so far as a programmer, starting off in VB, ASP etc and graduating more recently to C# and VB.NET. He enjoys writing and coding, so he write articles about coding in his spare time.

The picture is of his son, but they look the same :-/
Occupation: Web Developer
Location: United States United States

Other popular ASP.NET articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 13 of 13 (Total in Forum: 13) (Refresh)FirstPrevNext
Subject  Author Date 
QuestionHow to add a HyperLink/PicturememberJorge Da Silva7:02 23 May '07  
GeneralI cannot find Lists.asmx urlmemberC.R.Parameshwaran13:01 30 Apr '07  
GeneralUnauthorized errormemberjeremy_dbrown1:16 6 Jul '06  
GeneralRe: Unauthorized errormemberTechzorcism7:06 11 Aug '06  
GeneralCute kid.memberKen Hadden20:36 28 May '06  
GeneralView GUIDmemberarash_0:24 7 Feb '06  
GeneralError - List does not existmembernzdunic23:54 14 Sep '05  
Questionlogging information on Lists.asmx file on SharePointmemberVandanap9:28 2 Sep '05  
GeneralDoubt in SharePoint Portal Server 2003memberMounikab2:27 20 May '05  
GeneralRe: Doubt in SharePoint Portal Server 2003memberSteven Campbell2:55 20 May '05  
Generalre: How to post form and edit web service parameterssussossentoo8:12 8 Jun '04  
GeneralRe: re: How to post form and edit web service parameterssussossentoo20:56 9 Jun '04  
GeneralRe: re: How to post form and edit web service parameterssussossentoo4:33 10 Jun '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 25 Jan 2004
Editor: Smitha Vijayan
Copyright 2004 by Steven Campbell
Everything else Copyright © CodeProject, 1999-2008
Web13 | Advertise on the Code Project