如何在 gwt 客户端中设置 Cookie?
Posted
技术标签:
【中文标题】如何在 gwt 客户端中设置 Cookie?【英文标题】:how to setCookie in gwt client? 【发布时间】:2009-06-29 14:13:16 【问题描述】:在我的 servlet 中,我有这一行
CookieManager.getRequestCookieValue(request, "app-openid-identifier"); CookieManager.getRequestCookieValue(request, "app-openid-uniqueid");
在我的 gwt 客户端复合文件中,我如何为“app-openid-identifier”设置 cookie 并执行“get”来调用 servlet?
【问题讨论】:
【参考方案1】:在您的 GWT 应用程序中,您可以使用:
com.google.gwt.user.client.Cookies.setCookie("app-openid-identifier","some value");
对于 GET 请求,请使用:
com.google.gwt.http.client.RequestBuilder
或者如果可能,尝试使用 RPC 调用。
【讨论】:
以上是关于如何在 gwt 客户端中设置 Cookie?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 WPF 应用程序中 SOAP 客户端的“Set-Cookie”标头响应的新请求中设置“Cookie”标头
如何在WPF应用程序中的SOAP客户端的“Set-Cookie”标头响应的新请求中设置“Cookie”标头
如何在 ApplicationController 中设置 cookie?