如何在没有Restlet框架的情况下在Android上访问WCF数据服务?

发布于 2025-01-08 20:55:46 字数 222 浏览 0 评论 0原文

我目前正在使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一身骄傲 2025-01-15 20:55:46

这是我所做的对我有用的事情。在WCF Service接口中:

    [OperationContract,WebGet]    
    string Operation1();

WCF Service实现类

    string Operation1()
    {
     return "Some text";    
    }

在Java Android客户端中

    URL url = new URL("http://xx.xx.xx/xxService.svc/Operation1");
    HttpURLConnection conn =(HttpURLConnection) url.openConnection();
    if (conn.getResponseCode() != 200) 
    throw new IOException(conn.getResponseMessage();
    }

Here is what I did that worked for me. In the WCF Service interface:

    [OperationContract,WebGet]    
    string Operation1();

WCF Service implementation class

    string Operation1()
    {
     return "Some text";    
    }

In the Java Android client

    URL url = new URL("http://xx.xx.xx/xxService.svc/Operation1");
    HttpURLConnection conn =(HttpURLConnection) url.openConnection();
    if (conn.getResponseCode() != 200) 
    throw new IOException(conn.getResponseMessage();
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文