如何在没有Restlet框架的情况下在Android上访问WCF数据服务?
我目前正在使用restlet fw访问WCF数据服务。 我已经从 Restlet 支持网站复制了代码,但它不起作用并给我错误 " 无法获取 http://xx.xx.xx/xxService.svc/$metadata--通信错误[1001]...!
如果有任何帮助,我将不胜感激。 提前致谢!
I am currently using restlet fw to access WCF Data Service.
I have copied code from restlet support sites but it is not working and giving me error
" Can't get metadata for http://xx.xx.xx/xxService.svc/$metadata--Communication Error[1001]...!
I will appreciate any help with this.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我所做的对我有用的事情。在WCF Service接口中:
WCF Service实现类
在Java Android客户端中
Here is what I did that worked for me. In the WCF Service interface:
WCF Service implementation class
In the Java Android client