WCF: myservice.svc?wsdl 显示“您已创建服务。”,而不是 WSDL?
我使用 wsHttpBinding 和 mexHttpBinding 创建了一个 WCF 服务。当在 IIS6 中的 http 上运行时,myservice.svc 显示通常的“您已创建服务”。页。 myservice.svc?wsdl 显示包含 WSDL 的 XML。
我从
更改为
,现在我尝试使用 https 访问相同的服务。 myservice.svc 仍然显示“您已创建服务。”但 myservice.svc?wsdl 还显示“您已创建服务”。
我做错了什么?
服务仍然有效(使用http时做了客户端,后来改为https)。但是 VS 无法使用 https 生成新客户端,可能是因为 ?wsdl 页面已损坏。
I've created a WCF service with a wsHttpBinding and a mexHttpBinding. When running on http in IIS6, the myservice.svc shows the usual "You have created a service." page. myservice.svc?wsdl shows XML containing WSDL.
I changed from <security mode="None">
to <security mode="Transport">
and now I try reaching the same service using https. myservice.svc still shows "You have created a service." But myservice.svc?wsdl also shows "You have created a service."
What am I doing wrong?
The service still works (made a client when using http, and changed to https afterwards). But VS cannot generate a new client using https, probably because the ?wsdl page is broken.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 serviceMetadata 行为中,您必须将 httpsGetEnabled 设置为 true。
In serviceMetadata behavior you must set httpsGetEnabled to true.