我想从桌面应用导航到 Web 应用中的页面。“没问题”,我听到你说,“只需使用正确的 URL 启动默认浏览器”。但是,Web 应用程序使用 ASP.NET 表单身份验证,用户不想看到登录页面,因为他们已经在桌面应用程序中使用相同的凭据进行了身份验证。
这听起来很简单,我所要做的就是从桌面应用程序发出一个 HTTP POST 来伪造来自 Web 应用程序登录页面的回发。然后,Web 应用程序将设置其身份验证票证和会话状态 cookie,将它们返回给我,我会将它们存储在 IE cookie 存储中。然后我可以导航到所需的页面,Web 应用程序会认为它已经过身份验证。
我有一些构建 HTTP POST 的工作代码,将其发送出去,并获得包含正确 cookie 的有效响应。但是,我看不到如何将它们写入 IE cookie 存储。谁能指出我正确的方向?
示例代码:
var requestUrl = Properties.Settings.Default.WebsiteLoginPageUrl;
var requestEncoding = Encoding.GetEncoding(1252);
// Simulated login postdata
var requestText = string.Format(
"__VIEWSTATE={2}&__EVENTTARGET={3}&__EVENTARGUMENT={4}&__EVENTVALIDATION={5}&userNameText={0}&passwordText={1}&submitButton=Log+In",
HttpUtility.UrlEncode(Properties.Settings.Default.UserName),
HttpUtility.UrlEncode(Properties.Settings.Default.Password),
Properties.Settings.Default.FakeViewState,
Properties.Settings.Default.FakeEventTarget,
Properties.Settings.Default.FakeEventArgument,
Properties.Settings.Default.FakeEventValidation);
var request = (HttpWebRequest) WebRequest.Create(requestUrl);
request.Method = "POST";
request.Accept = "*/*";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = requestEncoding.GetByteCount(requestText);
request.Headers.Add(HttpRequestHeader.CacheControl, "no-cache");
request.AllowAutoRedirect = false;
request.KeepAlive = false;
request.CookieContainer = new CookieContainer();
using(var writer = new StreamWriter(request.GetRequestStream(), requestEncoding)) {
writer.Write(requestText);
}
var response = (HttpWebResponse) request.GetResponse();
// TODO: Grab the response cookies and save them to the interactive desktop user's cookie store.
Process.Start(new ProcessStartInfo {
FileName = Properties.Settings.Default.WebsiteTargetPageUrl,
UseShellExecute = true,
});