Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のサーブレットには、この行があります
CookieManager.getRequestCookieValue(request, "app-openid-identifier"); CookieManager.getRequestCookieValue(request, "app-openid-uniqueid");
私のgwtクライアント複合ファイルで、「app-openid-identifier」のCookieを設定し、「get」してサーブレットを呼び出すにはどうすればよいですか?
GWT アプリケーションでは、以下を使用できます。
com.google.gwt.user.client.Cookies.setCookie("app-openid-identifier","some value");
GET リクエストの場合:
com.google.gwt.http.client.RequestBuilder
または、可能であれば、代わりに RPC 呼び出しを使用してみてください。