从 asmx webmethod 调用返回 xml?
是否可以使用 asmx 文件返回普通的旧 xml?没有 SOAP 东西吗?
Is it possible to return plain old xml using an asmx file? Without the SOAP stuff?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的目标是避免 SOAP,我建议您考虑通用处理程序。从此处开始获取有关使用通用处理程序的一些信息,也称为ASHX 处理程序。
从通用处理程序中,您可以返回任何您喜欢的数据。将 asmx 文件用于此类目的会让未来的开发人员感到困惑,并且它会增加您可能不需要的复杂性。
I would recommend you look into a generic handler if your goal is to avoid SOAP. Start here to for some info on using generic handlers, also called ASHX handlers.
From a generic handler, you can return whatever data you like. Using an asmx file for such purposes would be confusing for future developers and it adds complexity that you likely don't need.