0

最近、ways2sms ゲートウェイを使用して SMS を送信する方法を学ぼうとしていました。

ユーザー名 (つまり、携帯電話番号) と携帯電話番号を介して SMS を送信するための認証に必要なパスワードを正常に入力した後。次のエラーが表示されます: サーバーへの接続中にエラーが発生しました。問題の可能性:

エラーに直面しています: 行

{ this.response = (HttpWebResponse)this.req.GetResponse(); }

try
        {
            this.req = (HttpWebRequest)WebRequest.Create("http://wwwd.way2sms.com/auth.cl");

        this.req.CookieContainer = new CookieContainer();
        this.req.AllowAutoRedirect = false;
        this.req.Method = "POST";
        this.req.ContentType = "application/x-www-form-urlencoded";
        this.strNewValue = "username=" + ckuser + "&password=" + ckpass;
        this.req.ContentLength = this.strNewValue.Length;
        StreamWriter writer = new StreamWriter(this.req.GetRequestStream(), Encoding.ASCII);
        writer.Write(this.strNewValue);
        writer.Close();
        this.response = (HttpWebResponse)this.req.GetResponse();
        this.cookieCntr = this.req.CookieContainer;
        this.response.Close();
        this.req = (HttpWebRequest)WebRequest.Create("http://wwwd.way2sms.com//jsp/InstantSMS.jsp?val=0");
        this.req.CookieContainer = this.cookieCntr;
        this.req.Method = "GET";
        this.response = (HttpWebResponse)this.req.GetResponse();
        responseee = new StreamReader(this.response.GetResponseStream()).ReadToEnd();
        int index = Regex.Match(responseee, "custf").Index;
        responseee = responseee.Substring(index, 0x12);
        responseee = responseee.Replace("\"", "").Replace(">", "").Trim();
        this.response.Close();

        pnlsend.Visible = true;
        lblErrormsg.Text = "connected";
    }
    catch (Exception)
    {
        lblErrormsg.Text = "Error connecting to the server...";
        Session["error"] = "Error connecting to the server...";
        Server.Transfer("login.aspx");


    }
4

0 に答える 0