我有一个简单的 WCF 数据服务,我通过 restlet odata 扩展在 Android 上连接到它。我正在尝试将表单身份验证与我的 WCF 数据服务一起使用,这意味着包括身份验证 cookie,但我似乎看不到如何将 cookie 添加到 org.restlet.ext.odata.Service。在我的 resetlet 客户端服务代理构造函数中,我尝试添加:
Request.getCurrent().getCookies().add("test","test");
我也尝试过我的服务代理实例:
*myserviceinstance*.getLatestRequest().getCookies().add("test","test");
但什么都没有。我通过在我的 WCF 数据服务中向“OnStartProcessingRequest”添加一个断点来进行检查,但我从来没有得到 cookie。
任何帮助或方向表示赞赏。