如何控制 WCF 4 REST 服务的帮助文件生成?
我编写了一个使用 XmlSerializer 的 WCF Rest 服务。 我还在我接受作为服务参数的类型上实现了 IXmlSerialized。 序列化效果很好。 但是,WCF 默认生成的帮助文件不起作用。当我导航到:myservice/help 时,我只看到这个:
无法生成架构文档。
那么是否可以控制生成的内容呢?也许我缺少一些东西来使帮助文件正确生成。
I have written a WCF Rest Service that uses XmlSerializer.
I have also implemented IXmlSerializable on the type I am accepting as a service parameter.
The serialization works great.
However the help files that WCF generates by default do not work. when i navigate to : myservice/help i only see this:
Could not generate schema document.
So is it possible to control what gets generated ? Perhaps there is something I'm missing to make the help files generate correctly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道如何控制帮助文件的生成。最有可能的是,没有办法。但是您可以在配置中禁用默认帮助文件生成,并将自定义逻辑映射到 /help 路径。它可能使用一些反射或硬编码,但你会得到你想要的 - 控制帮助页面的生成
I do not know how to control help files generation. Most likely, there is no way. But you can disable default help files generation in configs and map to /help paths your custom logic. It may use some reflection or be hard-coded, but you will get what you want - control over help pages generation