如何解析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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1)。希望此链接对您选择最佳解析器有用,
有效解析 WSDL
。我尝试过使用
Apache Woden
,WSDL4J
和膜 SOA
。其中,Membrane SOA 似乎对开发人员更友好。2). 将依赖的 XSD 放入放置 WSDL 的文件夹中。然后尝试解析您的 WSDL,它应该可以正常工作。
1). Hope this link will be useful for you to choose the best parser,
Parse WSDL Effectively
.I have tried using
Apache Woden
,WSDL4J
andMembrane SOA
. Among these, Membrane SOA seems to be developer friendly.2). Place the dependent XSD's in the folder where you have placed the WSDL. Then try parsing your WSDL, it should work fine.
也许 JWSDL 帮助会有用。它还会调用服务。
这里有关于该主题的讨论
Maybe the JWSDL help will be of service. It also makes calls to the services.
Here a discussion on the subject