文/Terrylee 出处/博客园
概述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中显示出来,最终完后效果如下所示。

附件:
您所在的用户组无法下载或查看附件先定义一个数据契约:
[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

附件:
您所在的用户组无法下载或查看附件定义服务契约:
[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 includeExcepti />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service behaviorC
name="TerryLee.SilverlightDemo27Web.Blog">
<endpoint address="" binding="basicHttpBinding" c>
</endpoint>
</service>
</services>
</system.serviceModel>
| 感谢原创者的辛勤劳动,希望对您有所帮助,转载请注明原出处。 |