在浏览器中读取wsdl文件
当我尝试在浏览器中打开 WSDL 文件(http://localhost/something/file.wsdl)时, 我被提议下载该文件。 但我希望能够在浏览器中以 XML(字符串)形式查看,而不是下载?
谢谢
When i try to open WSDL file in browser (http://localhost/something/file.wsdl),
i am offered to download that file.
But i want instead of downloading to be able view as XML(string) in browser?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的服务器未发送 WSDL 文件的正确内容类型,则可能会发生这种情况。
请求 WSDL 时,响应上应该有一个 HTTP 标头,如下所示:
如果您看到下载弹出窗口,则可能已将其设置为其他内容,或者完全丢失。
如果您还将 Tomcat 与 Apache 一起使用,则可以在 web.xml 文件中设置类似的内容:
对于 Apache,请查看 mod_mime 模块。
This might happen if your server is not sending the correct content type for the WSDL file.
There should be a HTTP header on the response when requesting the WSDL, something like this:
If you see a download popup then maybe this is set to something else, or it is missing altogether.
If you are also using Tomcat with Apache, you could set something like this in the web.xml file:
For Apache, have a look at the mod_mime module.
这完全取决于您使用的浏览器。尝试与您的主浏览器不同的浏览器。当您在
Internet Explorer 8
中打开它时,您应该会看到 XML 视图。It all depend on what browser your using. Try different than your main browser. When you open it in
Internet Explorer 8
you should have XML view.