在 Android 上使用 ksoap2-android 太慢?
我有一个 Android 应用程序访问一个返回大结果的网络服务。 我使用ksoap2-android 2.5.4来调用soap webservice(wsdl)。
我的问题是,当我在android应用程序上使用ksoap2调用它时,需要花费很多时间来处理结果。由于结果是 xml,我如何强制 ksoap 给我一个 String 结果而不将其处理为 SoapObject?或者还有另一种方法可以更快地处理结果?
谢谢您的宝贵时间!
I have an android application acessing an webservice that returns a big result.
I use ksoap2-android 2.5.4 to make a call soap webservice (wsdl).
My problem is, when I call it using ksoap2 on the android app, it takes a lot of time to process the result. As the result is a xml, how can I force the ksoap to give me an String result without process it into a SoapObject? Or there is another way to process the result more quickly?
Thank you for your time!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果性能是一个问题,我会使用 AMF3 或 ASN.1 等二进制格式,或者如果服务也是 Java 格式,那么无论 DataOutputStream 为您提供什么...
If performance is an issue I would go with a binary format like AMF3 or ASN.1 or if the service is in Java too then just whatever DataOutputStream gives you...