Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WCF 服务正在运行wsHttpBinding。是否可以使用 Web 参考而不是服务参考来使用此服务?
wsHttpBinding
提前致谢
web reference是旧式的、已弃用的 ASP.NET webservices ( ASMX) 技术(仅使用 XmlSerializer)
web reference
ASMX
您不能使用wsHttpBindingold 使用默认配置公开的服务ASMX。默认配置wsHttpBinding使用高级安全性并且ASMX不支持它。
您必须add service reference/svcutil或将您的绑定更改为basicHttpBinding.
add service reference
svcutil
basicHttpBinding