2012-02-23 19 views
0

私は自分のAccess 2007モジュールをC#に変換し始めたので、SQL Serverに展開できます。手順1で、SPサーバー上のリストを取得します。私はVS2005を使用しているようなものを持っていましたが、物事はVS2010で変更されているようです。ここに私のコードは、私が変数「listService」をインスタンス化するとき、私はエラーを取得しています...Sharepoint Webサービスへのアクセス

using System; 
using System.IO; 
using System.Xml; 
using System.Xml.Linq; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Linq; 
using System.Text; 
using System.Windows.Forms; 

namespace Timesheets 
{ 
    public partial class Form1 : Form 
    { 
     public Form1() 
     { 
      InitializeComponent(); 
      CPAS_ListSVC.Lists listService = new CPAS_ListSVC.Lists(); 
      listService.Credentials = System.Net.CredentialCache.DefaultCredentials; 
      listService.Url = "http://moss.mava.xxxxxx.com/FACSEC/xxxfacilities/XXXCONSTRUCTION/CPAS/_vti_bin/lists.asmx";  // Site 
      System.Xml.XmlNode activeItemData = listService.GetListItems("","",null, null, "500", null, ""); 
      tbXML.Text = activeItemData.ToString(); 

     } 
    } 
} 

です。コンパイラは ".lists"はCPAS_ListSVCの一部ではないと言います....

確かに、Intellisenseは同意します(私は驚きました....)インスタンス化すべきクラスはありますか?

+0

: を私が代わりに標準サービスのWebサービスを使用するために必要な[1] [別のフォーラムのユーザーが...同じ問題を抱えていました]。 [1]:http://stackoverflow.com/questions/8083689/accessing-sharepoint2007-web-services –

答えて

1

答えを見つけた:

標準サービスの代わりにWebサービスを使用する必要がありました。その答えが見つかり

関連する問題