轴 POJO 客户端
我正在学习使用 Apache Axis Library
在文档中展示了如何从 POJO 类创建 Web 服务。
但对于客户端,它只提到 Axis2 DataBinding Framework、XMLBeans 和 JiBX 数据绑定
那么,有没有办法使用 POJO 类作为 SOAP 客户端。
就性能和可用性而言,这 4 者中哪一个更好。
I am learning to use Apache Axis Library
In the documentation it is shown how to create a web service from a POJO class.
But for clients it mentions only Axis2 DataBinding Framework, XMLBeans, and JiBX databinding
So, is there any way to use POJO classes as SOAP clients.
and which is better of the 4 in terms of performance and usability.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此链接可以帮助您决定所需的数据绑定。 Axis2 数据绑定
我个人使用 ADB 和 XMLBeans 的经验是,这两个 ADB 的实现非常简单明了,但是当您的 wsdl 很复杂时,您需要进行大量的手动编码。另一方面,XMLBeans 看起来很复杂,但它生成的类很容易使用。
This link may help you to decide upon the data binding that you need. Axis2 Data Binding
My personal experience with ADB and XMLBeans is that, out of these two ADB is pretty simple and straightforward, but when your wsdl is complex then you need to do a hell lot of manual coding. On the other hand, XMLBeans looks complex but the classes that it generates is easy to use.