不使用 KSOAP 的 Blackberry SOAP Web 服务调用
我在使用声称可以简化 SOAP Web 服务的使用的库时遇到了问题。我一直在 Blackberry 上使用 KSoap2 来完成此任务,但我根本不喜欢这个过程。
在 Android 上,我手动创建了信封,非常成功,但在使用 SudzC 感到非常失望后,我最终在 iPhone 上做了同样的事情。
我也想为黑莓做这个。我应该使用哪些类以及如何构建信封?
多谢。
I've had nothing but problems using libraries that claim to simplify consuming SOAP Web Services. I've been using KSoap2 on the Blackberry to accomplish this, but I'm not liking the process at all.
On Android I manually created my envelopes with much success, I ended up doing the same on iPhone after much disappointment using SudzC.
I would like to do this for Blackberry as well. What classes should I use and how should I structure the envelope?
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在使用输出 XML 文档的 REST 服务,并且我们正在使用 RIM 提供的 DOM 库(使用 net.rim.device.api.xml.parsers.DocumentBuilder 和 net.rim.device 等类)进行所有 XML 处理。 api.xml.parsers.DocumentBuilderFactory)。
HTTP 部分可以通过 Java ME IO 支持(使用 javax.microedition.io.HttpConnection)来完成。制作您自己的 SOAP WS 客户端听起来工作量很大,但确实可以完成。
I'm consuming REST services that output XML documents, and we're doing all XML processing with the DOM libraries provided by RIM (using classes like net.rim.device.api.xml.parsers.DocumentBuilder and net.rim.device.api.xml.parsers.DocumentBuilderFactory).
The HTTP part can be done Java ME IO support (with javax.microedition.io.HttpConnection). Making your own SOAP WS client sounds like a lot of work, but it can certainly be done.