原文:MVC应用程序使用Wcf Service

前一篇Insus.NET有演示过MVC应用程序使用Web Service, 此篇Insus.NET想继续演示Service,不过是WCF Service。

两者实施起来,多少有些不一样。

在Services目录下,创建一个Calculator.svc 服务。创建成功之后,它会生生成一个接口以及一个svc的文件:

MVC应用程序使用Wcf Service-LMLPHP

在Calculator.svc中,它是实作上面的接口,而且均实现了四个方法:

MVC应用程序使用Wcf Service-LMLPHP

WCF Service创建好之后,正常的话,它能浏览:
MVC应用程序使用Wcf Service-LMLPHP

下面是为MVC应用程序添加参考Wcf Service:

MVC应用程序使用Wcf Service-LMLPHP

引用完了,在Web.config会看到如下信息:

MVC应用程序使用Wcf Service-LMLPHP

找到并打开ExerciseController.cs,创建视图ActionResult WcfServiceDemo()和ContentResult GetCalcResult():

MVC应用程序使用Wcf Service-LMLPHP

在Views\Exercise下创建WcfServiceDemo.cshtml视图,如下三个步骤:
MVC应用程序使用Wcf Service-LMLPHP

第三步,是jQuery代码:
MVC应用程序使用Wcf Service-LMLPHP

实时演示:

MVC应用程序使用Wcf Service-LMLPHP

05-07 12:04