在浏览器中读取wsdl文件

发布于 2024-10-25 07:25:38 字数 122 浏览 4 评论 0原文

当我尝试在浏览器中打开 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

子栖 2024-11-01 07:25:38

如果您的服务器未发送 WSDL 文件的正确内容类型,则可能会发生这种情况。

请求 WSDL 时,响应上应该有一个 HTTP 标头,如下所示:

Content-type: text/xml

如果您看到下载弹出窗口,则可能已将其设置为其他内容,或者完全丢失。

如果您还将 Tomcat 与 Apache 一起使用,则可以在 web.xml 文件中设置类似的内容:

<mime-mapping>
  <extension>wsdl</extension>
  <mime-type>text/xml</mime-type>
</mime-mapping>

对于 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:

Content-type: text/xml

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:

<mime-mapping>
  <extension>wsdl</extension>
  <mime-type>text/xml</mime-type>
</mime-mapping>

For Apache, have a look at the mod_mime module.

戴着白色围巾的女孩 2024-11-01 07:25:38

这完全取决于您使用的浏览器。尝试与您的主浏览器不同的浏览器。当您在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文