解析 wsdl 和 xsd
我一直在寻找一种以编程方式解析 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用任何 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.