これらの Cookie のドメインを設定していないため、CometD .NET でsetCookie(string, string)
メソッドを呼び出すと例外がスローされますが、ドメインを設定するためのプロパティまたはメソッドが表示されず、オーバーロードのいずれもドメインをパラメータ。BayeuxClient
setCookie(...)
コード:
this._bayeuxClient = new BayeuxClient(
"https://***.salesforce.com/cometd/24.0", //instance omitted
new List<ClientTransport> { new LongPollingTransport(null) });
this._bayeuxClient.setCookie("com.salesforce.LocaleInfo", "us");
//...
this._bayeuxClient.handshake(); //Exception is thrown here.
this._bayeuxClient.waitFor(1000,
new List<BayeuxClient.State> { BayeuxClient.State.CONNECTED });