HttpWebClientProtocol.CookieContainer プロパティ

定義

クッキーのコレクションを取得または設定します。

public:
 property System::Net::CookieContainer ^ CookieContainer { System::Net::CookieContainer ^ get(); void set(System::Net::CookieContainer ^ value); };
public System.Net.CookieContainer CookieContainer { get; set; }
member this.CookieContainer : System.Net.CookieContainer with get, set
Public Property CookieContainer As CookieContainer

プロパティ値

CookieContainer

Web サービス クライアントのクッキーを表す CookieContainer

次のコード例は、セッション状態を使用する XML Web サービスのWeb Forms クライアントです。 クライアントは、セッションをクライアントのセッション状態に格納することで、セッションを一意に識別する HTTP Cookie を格納します。

<%@ Page Language="C#" %>
<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="System.Net" %>

<html>

    <script runat="server">

        void EnterBtn_Click(Object Src, EventArgs E) 
    {
      // Create a new instance of a proxy class for your XML Web service.
      ServerUsage su = new ServerUsage();
          CookieContainer cookieJar;

      // Check to see if the cookies have already been saved for this session.
      if (Session["CookieJar"] == null) 
        cookieJar= new CookieContainer();
          else
       cookieJar = (CookieContainer) Session["CookieJar"];

        // Assign the CookieContainer to the proxy class.
        su.CookieContainer = cookieJar;

      // Invoke an XML Web service method that uses session state and thus cookies.
      int count = su.PerSessionServiceUsage();         

      // Store the cookies received in the session state for future retrieval by this session.
      Session["CookieJar"] = cookieJar;

          // Populate the text box with the results from the call to the XML Web service method.
          SessionCount.Text = count.ToString();  
        }
         
    </script>
    <body>
       <form runat=server ID="Form1">
           
             Click to bump up the Session Counter.
             <p>
             <asp:button text="Bump Up Counter" Onclick="EnterBtn_Click" runat=server ID="Button1" NAME="Button1"/>
             <p>
             <asp:label id="SessionCount"  runat=server/>
          
       </form>
    </body>
</html>
<%@ Page Language="VB" %>
<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="System.Net" %>

<html>

    <script runat=server>

        Public Sub EnterBtn_Click(src As Object, E As EventArgs) 

      ' Create a new instance of a proxy class for your XML Web service.
      Dim su As ServerUsage = new ServerUsage()
          Dim cookieJar As CookieContainer

      ' Check to see if the cookies have already been saved for this session.
      If (Session("CookieJar") Is Nothing) 
        cookieJar= new CookieContainer()
          Else
       cookieJar = Session("CookieJar")
      End If
   

        ' Assign the CookieContainer to the proxy class.
        su.CookieContainer = cookieJar

      ' Invoke an XML Web service method that uses session state and thus cookies.
      Dim count As Integer = su.PerSessionServiceUsage()         

      ' Store the cookies received in the session state for future retrieval by this session.
      Session("CookieJar") = cookieJar

          ' Populate the text box with the results from the call to the XML Web service method.
          SessionCount.Text = count.ToString()  
    End Sub
         
    </script>
    <body>
       <form runat=server ID="Form1">
           
             Click to bump up the Session Counter.
             <p>
             <asp:button text="Bump Up Counter" Onclick="EnterBtn_Click" runat=server ID="Button1" NAME="Button1"/>
             <p>
             <asp:label id="SessionCount"  runat=server/>
          
       </form>
    </body>
</html>

注釈

XML Web サービス メソッドがセッション状態を使用する場合、その XML Web サービス クライアントのセッションを一意に識別する COOKIE が応答ヘッダーで XML Web サービス クライアントに返されます。 XML Web サービスがクライアントのセッション状態を維持するには、クライアントが Cookie を格納する必要があります。 クライアントは、新しいインスタンスを作成し、そのインスタンスをプロキシ クラスの CookieContainer プロパティに CookieContainer 割り当ててから、XML Web サービス メソッドを呼び出すことによって HTTP Cookie を受け取ります。 プロキシ クラス インスタンスがスコープ外になったとき以外にセッション状態を維持する必要がある場合、クライアントは XML Web サービスへの呼び出しの間に HTTP Cookie を格納する必要があります。 たとえば、Web Forms クライアントは、独自のセッション状態で保存することで HTTP Cookie をCookieContainer格納できます。 すべての XML Web サービスがセッション状態を使用するわけではないため、クライアントはクライアント プロキシのプロパティを CookieContainer 使用する必要がないため、XML Web サービスのドキュメントではセッション状態が使用されるかどうかを示す必要があります。

適用対象

こちらもご覧ください