HttpWebRequestを使用してフォームデータを投稿する
自分のWebアプリケーション内にない指定のURLにフォームデータを投稿したい。「domain.client.nl」などの同じドメインがあります。WebアプリケーションのURLは「web.domain.client.nl」で、投稿先のURLは「idp.domain.client.nl」です。しかし、私のコードは何もしません.....誰かが私が間違っていることを知っていますか? Wouter StringBuilder postData = new StringBuilder(); postData.Append(HttpUtility.UrlEncode(String.Format("username={0}&", uname))); postData.Append(HttpUtility.UrlEncode(String.Format("password={0}&", pword))); postData.Append(HttpUtility.UrlEncode(String.Format("url_success={0}&", urlSuccess))); postData.Append(HttpUtility.UrlEncode(String.Format("url_failed={0}", urlFailed))); ASCIIEncoding ascii = new ASCIIEncoding(); byte[] postBytes = ascii.GetBytes(postData.ToString()); // set up request object HttpWebRequest request; try { request = (HttpWebRequest)HttpWebRequest.Create(WebSiteConstants.UrlIdp); } catch (UriFormatException) { request = null; } if (request == null) throw new …