如何在ASP.Net MVC应用程序中访问WCF服务?

前端之家收集整理的这篇文章主要介绍了如何在ASP.Net MVC应用程序中访问WCF服务?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我对访问WCF的方式有疑问.我构建了一个安全的WCF服务,从数据库返回数据,它工作正常.现在我需要通过MVC访问这个Web服务(我对它没有足够的了解).

我在Stack Overflow上查了类似的问题,但是我找不到我需要的东西.我跟着这个link,但正如我所说,WCF从sql返回数据,我用sql连接我的WCF,当我使用这个例子时,我没有得到预期的结果.

我在MVC中调用的操作,它从sql返回数据集类型

  1. [OperationContract]
  2. DataSet GetAllbooks(string Title)

在Homecontrller的MVC我写道

  1. ServiceReference1.Service1Client obj = new ServiceReference1.Service1Client();
  2. public ActionResult Index()
  3. {
  4. DataSet ds = obj.GetAllbooks();
  5. ViewBag.AuthorList = ds.Tables[0];
  6. return View();
  7. }

在我看来,我写道

  1. @{
  2. ViewBag.Title = "AuthorList";
  3. }
  4. <table>
  5. <tr><td>ISBN</td><td>Author</td><td>Price</td></tr>
  6. <%foreach (System.Data.DataRow dr in ViewBag.AuthorList.Rows)
  7. {%>
  8. <tr>
  9. <td><%=dr["ISBN"].ToString()%></td>
  10. <td><%=dr["Author"].ToString() %></td>
  11. <td><%=dr["Price"].ToString() %></td>
  12. </tr>
  13. <% } %>
  14. </table>

我没有得到任何结果

此外,WCF提供的一些服务需要接受来自用户的输入我如何能够做到这一点

谢谢.

解决方法

这是一个非常基本的问题,但一般来说,您可以在主Web.Config文件添加Web服务引用和端点信息,但我怀疑您在调用WCF服务URL时遇到问题,如果是这样,我发布了一个泛型类的示例/ wrapper用于在MVC应用程序中调用WCF Web服务.

将Web引用添加到Visual Studio 2012:

>在解决方案资源管理器中右键单击项目
>选择添加 – >;服务参考 – >然后单击高级按钮… – >
>然后单击“添加Web引用…”按钮 – >然后在URL框中键入Web服务的地址.然后单击绿色箭头,Visual Studio将发现您的Web服务并显示它们.

您可能已经知道上述内容,可能只需要一个通用的包装类,这使得在MVC中轻松调用WCF Web服务.我发现使用泛型类效果很好.我不能相信它;在互联网上找到它并且没有归属.在http://www.displacedguy.com/tech/powerbuilder-125-wcf-web-services-asp-net-p3有一个完整的可下载源代码示例,它调用使用PowerBuilder 12.5.Net创建的WCF Web服务,但无论是在Visual Studio中创建还是在Visual Studio中创建的,在MVC中调用WCF Web服务的过程都是相同的. PowerBuilder的.

下面是在ASP.NET MVC中调用WCF Web服务的通用包装类的代码

当然,在我的不完整的例子后,不要模拟你的错误处理…

  1. using System;
  2. using System.ServiceModel;
  3. namespace LinkDBMvc.Controllers
  4. {
  5. public class WebService<T>
  6. {
  7. public static void Use(Action<T> action)
  8. {
  9. ChannelFactory<T> factory = new ChannelFactory<T>("*");
  10. T client = factory.CreateChannel();
  11. bool success = false;
  12. try
  13. {
  14. action(client);
  15. ((IClientChannel)client).Close();
  16. factory.Close();
  17. success = true;
  18. }
  19. catch (EndpointNotFoundException e)
  20. {
  21. LinkDBMvc.AppViewPage.apperror.LogError("WebService",e,"Check that the Web Service is running");
  22. }
  23. catch (CommunicationException e)
  24. {
  25. LinkDBMvc.AppViewPage.apperror.LogError("WebService","Check that the Web Service is running");
  26. }
  27. catch (TimeoutException e)
  28. {
  29. LinkDBMvc.AppViewPage.apperror.LogError("WebService","Check that the Web Service is running");
  30. }
  31. catch (Exception e)
  32. {
  33. LinkDBMvc.AppViewPage.apperror.LogError("WebService","Check that the Web Service is running");
  34. }
  35. finally
  36. {
  37. if (!success)
  38. {
  39. // abort the channel
  40. ((IClientChannel)client).Abort();
  41. factory.Abort();
  42. }
  43. }
  44. }
  45. }
  46. }

猜你在找的asp.Net相关文章