将应用程序服务包装在 ASMX 中还是直接通过 WCF 公开?
我有一个应用程序服务层(全部返回可序列化的视图模型)。其中一些应用程序服务需要可由 Web UI 中的客户端代码通过 AJAX 进行调用。我目前将它们包装在 ASMX 文件中,这些文件除了规定响应格式之外什么也不做,因为 JSON 委托每个调用具有相同的签名的应用程序服务类。
通过将适当的应用程序服务类公开为 WCF 服务来尝试节省几行代码是否明智?有人可以给我举个例子吗?在 WebForms 客户端代码中使用有任何潜在的陷阱吗?
I have an application service layer (which all return serializable viewmodels). Some of these app services need to be callable via AJAX by client code in the Web UI. I'm currently wrapping them in ASMX files that do nothing but dictate the response format as JSON delegate each call to the application service class with the same signature.
Is it advisable to try to save a few lines of code by exposing the appropriate application service classes as WCF services? Can someone point me to an example? Any potential pitfalls for usage in WebForms client code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Microsoft 现在将 ASMX 服务视为“遗留技术”。您不应该将它们用于任何新的开发。它们已被 WCF 完全取代。例如,请参阅本文顶部:http://msdn.microsoft.com /en-us/library/bb885203.aspx:
Microsoft now considers ASMX services to be "legacy technology". You should not use them for any new development. They have been completely replaced by WCF. For instance, see the top of this article: http://msdn.microsoft.com/en-us/library/bb885203.aspx: