一步一步學Silverlight 2系列(14):資料與通訊之WCF

weixin_34120274發表於2011-08-25

概述

Silverlight 2 Beta 1版本釋出了,無論從Runtime還是Tools都給我們帶來了很多的驚喜,如支援框架語言Visual Basic, Visual C#, IronRuby, Ironpython,對JSON、Web Service、WCF以及Sockets的支援等一系列新的特性。《一步一步學Silverlight 2系列》文章將從Silverlight 2基礎知識、資料與通訊、自定義控制元件、動畫、圖形影像等幾個方面帶您快速進入Silverlight 2開發。

本文將簡單介紹在Silverlight 2中如何與WCF進行通訊。

簡單示例

在本示例中,我們將通過WCF來獲取一個最新隨筆的列表,在Silverlight中顯示出來,最終完後效果如下所示。

TerryLee_Silverlight2_0065

先定義一個資料契約:

[DataContract]
public class Post
{
    public Post(int id,string title,string author)
    {
        this.Id = id;
        this.Title = title;
        this.Author = author;
    }

    [DataMember]
    public int Id { get; set; }

    [DataMember]
    public string Title { get; set; }

    [DataMember]
    public string Author { get; set; }
}

在Web專案中新增一個WCF Service檔案,命名為Blog.svc

TerryLee_Silverlight2_0063

定義服務契約:

[ServiceContract]
public interface IBlog
{
    [OperationContract]
    Post[] GetPosts();
}

實現服務,這裡可以是從資料庫或者其他資料來源讀取,為了演示方便,我們直接初始化一個集合:

public class Blog : IBlog
{
    public Post[] GetPosts()
    {
        List<Post> posts = new List<Post>()
        {
            new Post(1,"一步一步學Silverlight 2系列(13):資料與通訊之WebRequest","TerryLee"),
            new Post(2,"一步一步學Silverlight 2系列(12):資料與通訊之WebClient","TerryLee"),
            new Post(3,"一步一步學Silverlight 2系列(11):資料繫結","TerryLee"),
            new Post(4,"一步一步學Silverlight 2系列(10):使用使用者控制元件","TerryLee"),
            new Post(5,"一步一步學Silverlight 2系列(9):使用控制元件模板","TerryLee"),
            new Post(6,"一步一步學Silverlight 2系列(8):使用樣式封裝控制元件觀感","TerryLee")
        };

        return posts.ToArray();
    }
}

修改Web.config中的服務配置,這裡使用basicHttpBinding繫結,並且開啟httpGetEnabled,以便後面我們可以在瀏覽器中檢視服務:

<system.serviceModel>
    <behaviors>
        <serviceBehaviors>
            <behavior name="TerryLee.SilverlightDemo27Web.BlogBehavior">
                <serviceMetadata httpGetEnabled="true" />
                <serviceDebug includeExceptionDetailInFaults="false" />
            </behavior>
        </serviceBehaviors>
    </behaviors>
    <services>
        <service behaviorConfiguration="TerryLee.SilverlightDemo27Web.BlogBehavior"
            name="TerryLee.SilverlightDemo27Web.Blog">
            <endpoint address="" binding="basicHttpBinding" contract="TerryLee.SilverlightDemo27Web.IBlog">
            </endpoint>
        </service>
    </services>
</system.serviceModel>

設定一下Web應用程式的埠號為固定埠52424,在瀏覽器中輸入http://localhost:52424/Blog.svc,看看服務是否正常:

TerryLee_Silverlight2_0064

好了,現在服務端我們就實現完成了。現在編寫介面展示部分,XAML如下:

<Grid Background="#46461F">
    <Grid.RowDefinitions>
        <RowDefinition Height="40"></RowDefinition>
        <RowDefinition Height="*"></RowDefinition>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition></ColumnDefinition>
    </Grid.ColumnDefinitions>
    <Border Grid.Row="0" Grid.Column="0" CornerRadius="15"
            Width="240" Height="36" Background="Orange"
            Margin="20 0 0 0" HorizontalAlignment="Left">
        <TextBlock Text="最新隨筆" Foreground="White"
                   HorizontalAlignment="Left" VerticalAlignment="Center"
                   Margin="20 0 0 0"></TextBlock>
    </Border>
    <ListBox x:Name="Posts" Grid.Row="1" Margin="40 10 10 10">
        <ListBox.ItemTemplate>
            <DataTemplate>
                <StackPanel Orientation="Horizontal">
                    <TextBlock Text="{Binding Id}" Height="40" Foreground="Red"></TextBlock>
                    <TextBlock Text="{Binding Title}" Height="40"></TextBlock>
                    <TextBlock Text="{Binding Author}" Height="40" Foreground="Orange"></TextBlock>
                </StackPanel>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>
</Grid>

在Silverlight專案中新增服務引用,輸入地址http://localhost:52424/Blog.svc,輸入名稱空間BlogService。

TerryLee_Silverlight2_0066

新增完成後,我們可以在物件瀏覽器中瀏覽一下生成的客戶端物件:

TerryLee_Silverlight2_0067

當然大家也可以手工去編寫客戶端的程式碼,請參考WCF的相關內容,這裡不再贅述。下面編寫呼叫服務並獲取資料,這裡仍然是採用非同步模式,由於在WCF服務的配置中我們採取了BasicHttpBinding,客戶端也要採用BasicHttpBinding。我們需要註冊GetPostsCompleted事件處理方法,以便完成後回撥,同時呼叫GetPostsAsync()方法獲取資料。完整的程式碼如下所示:

public partial class Page : UserControl
{
    public Page()
    {
        InitializeComponent();
    }

    private void UserControl_Loaded(object sender, RoutedEventArgs e)
    {
        Binding binding = new BasicHttpBinding();
        EndpointAddress endPoint = new EndpointAddress(
                "http://localhost:52424/Blog.svc");

        BlogClient client = new BlogClient(binding, endPoint);
        client.GetPostsCompleted += new EventHandler<GetPostsCompletedEventArgs>(client_GetPostsCompleted);
        client.GetPostsAsync();
    }

    void client_GetPostsCompleted(object sender, GetPostsCompletedEventArgs e)
    {
        if (e.Error == null)
        {
            Posts.ItemsSource = e.Result;
        }
    }
}

至此,一個完整的在Silverlight 2中呼叫WCF的示例就完成了,執行後效果如下:

TerryLee_Silverlight2_0065 

結束語

本文簡單演示了在Silverlight 2中如何與WCF進行通訊,你可以從這裡下載示例程式碼。

相關文章