Android:关于ksoap2和webservice
我得到了wsdl和URL,服务器是用C++编写的; 我在android中使用KSoap2来访问该方法,但它总是 打印出:“方法'methodname'未实现”!!! 有人可以帮我吗? 提前致谢!
I get the wsdl and the URL,and the server is written in C++;
I use KSoap2 in android to access the method ,but it always
prints out :"Method 'methodname' not implemented"!!!
Can anyone help me out?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否正确创建了请求和
SoapAction
?尝试下面的示例(它是一个带有 0 个参数的公共 Web 服务),看看它是否适合您。
看看这个详细的教程,解释 的基础知识在 Android 中使用 kSOAP2
Are you creating your request and the
SoapAction
properly?Try the example below (it is a public web service with 0 arguments) and see if it works for you.
Have a look at this detailed tutorial explaining the basics of using kSOAP2 with Android
请参阅此处 ksoap 的简单示例可能会有所帮助 http://vimeo.com/9633556
see here the simple example of ksoap may help http://vimeo.com/9633556
您应该如上所述指定必要的字段。
you should specify necessary field as above.
看看这是我的代码。我得到了完整的结果。这只是 ksoap2 的测试程序。
see this is my code. and m getting full result. This is just test program for ksoap2.