1

データ ユーザー ID とユーザー コードを別のサーバーに渡し、ネットワークを使用して応答を取得したいと考えています。

だから、私はこのコードを作成しました

var webRequest = WebRequest.Create(@"http://10.2.1.85/");

正常に動作していますが、ユーザー ID とユーザー コードを渡す方法がわかりません。
オブジェクトか何かを作成する必要がありますか?

どうすればいいですか?

4

1 に答える 1

0

これは、Web サービスにデータを投稿する方法です。

WebService Post 関数

public static string JsonPost(string url, string method, string postData)
{

    Uri address = new Uri(url + method);

    //Get User current network credential
    ICredentials credentials = CredentialCache.DefaultCredentials;
    NetworkCredential credential = credentials.GetCredential(address, "Basic");

    HttpWebRequest request = WebRequest.Create(address) as HttpWebRequest;
    request.Method = "POST";
    request.ContentType = "application/json";

    //Network Credential should be included on the request to avoid network issues when requesting to the web service
    request.Proxy = WebRequest.DefaultWebProxy;
    request.Credentials = new NetworkCredential(credential.UserName, credential.Password, credential.Domain);
    request.Proxy.Credentials = new NetworkCredential(credential.UserName, credential.Password, credential.Domain);

    byte[] byteData = UTF8Encoding.UTF8.GetBytes(postData);
    request.ContentLength = byteData.Length;
    using (Stream postStream = request.GetRequestStream())
    {
        postStream.Write(byteData, 0, byteData.Length);
    }

    using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
    {
        StreamReader reader = new StreamReader(response.GetResponseStream());

        string JsonResponse = reader.ReadToEnd();

        return JsonResponse;
    }
}

ログイン機能

public static string Login(string Email, string Password)
{

    try
    {
        string postData = "{" + "\"Email\":\"" + Email + "\"," +
        "\"Password\":\"" + Password + "\"" +
        "}";

        string JsonResult = JsonPost("Your Web Service URL", "Login", postData);
        return JsonResult;
    }
    catch (Exception ex)
    {

        return "";
    }

}

例 使用方法:

public void LoginUser()
{
    string Email = "me@example.com";
    string Password = "password";
    string JsonUserAccount = Login(Email, Password);

    if(!string.IsNullOrEmpty(JsonUserAccount))
    {
        Debug.Print("User logged in");
    }
    else
    {
        Debug.Print("Failed to logged in");
    }

}
于 2012-10-31T23:33:10.750 に答える