下面的代碼會拋出一個異常,我不知道哪裏出了問題,請問有誰可以對此進行說明?在SilverLight組件中調用WCF
RestAPIDataContext ctx = GetContext();
var songsQuery = (from item in ctx.Songs
where item.Artist.Title == "George Michael"
select item) as DataServiceQuery<SongsItem>;
songsQuery.BeginExecute(
(IAsyncResult asyncResult) => Dispatcher.BeginInvoke(() =>
{
songsList.ItemsSource = songsQuery.EndExecute(asyncResult);
}), songsQuery
);
private static RestAPIDataContext GetContext()
{
RestAPIDataContext ctx =
new RestAPIDataContext(
new Uri("http://win-oirj50igics/restapi/_vti_bin/ListData.svc"));
return ctx;
}
System.Data.Services.Client.DataServiceQueryException:處理此請求時發生錯誤。 ---> System.InvalidOperationException:保存更改時發生錯誤。詳情請參閱內部例外。 ---> System.Data.Services.Client.DataServiceClientException: 請求版本'1.0'對響應太低。最低的支持版本是'2.0'。 --- System.Data.Services.Client.BaseAsyncResult.EndExecute [T](Object source,String method,IAsyncResult asyncResult) 處的內部異常堆棧跟蹤--- 結束。 QueryAsyncResult.EndExecute [TElement](Object source,IAsyncResult asyncResult) --- End of internal exception stack trace --- at System.Data.Services.Client.QueryAsyncResult.EndExecute [TElement](Object source,IAsyncResult asyncResult) 在System.Data.Services.Client.DataServiceQuery`1.EndExecute(IAsyncResult asyncResult) at SLRest.MainPage。 <> c_ DisplayClass3。 <> c _DisplayClass5.b__1()
感謝隊友,你的解決方案work.But礦井沒有控制檯應用程序,它是Silverlight的app.So我改變從3.0我的Silverlight應用程序的版本4.0,現在工作得很好。 – Ybbest 2010-10-03 04:23:57