解析 wsdl 和 xsd

发布于 2024-10-31 18:47:26 字数 125 浏览 1 评论 0原文

我一直在寻找一种以编程方式解析 WSDL 和关联的 XSD 文件以从注释/文档标记获取值的方法。我设法使用 wsdl4j 从 wsdl 获取值,但如何对 XSD 文件执行此操作?我尝试使用 XSOM,但由于某种原因我总是得到 null。

I've been looking for a way to programmatically parse WSDL and associated XSD files to get values from annotation / documentation tags. I managed to get values from wsdl using wsdl4j, but how do i do this for XSD files? I tried to use XSOM but for some reason i always get null.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

暗喜 2024-11-07 18:47:26

您可以使用任何 XML 解析器(或 jdom、dom4j 等)攻击这些文件。只需选择所有文档和注释节点即可获取文本(使用 XPath 表达式)并检查父节点以查看记录或注释的内容。

You can attack the files with any XML parser (or jdom, dom4j, etc.). Simply select all documentation and annotations nodes to get the text (using XPath expressions) and inspect the parent nodes to see, what's documented or annotated.

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