HttpWebRequest GetResponse。如何等待回复?

时间:2012-05-23 20:42:18

标签: c# httpwebrequest

我使用HttpWebRequest发送一些短信。但有时候这些消息似乎发送了两次,三次以及更多的审查所有过程看起来都没问题。

我认为唯一的问题是HttpWebRequest正在运行异步。

这是我的代码,

    public bool sendSmsGateway(string tcDestino, string tcMensaje, string tcTitulo = "")
    {
        bool lReturn = false;
        string contenido = HttpUtility.UrlEncode(tcMensaje);
        string lcTitulo = "SMS Sender";
        if (!String.IsNullOrEmpty(tcTitulo))
        {
            lcTitulo = tcTitulo;
        }
        lcTitulo = HttpUtility.UrlEncode(lcTitulo);
        string fechaEnvio = DateTime.Now.ToString("s"); 
        string url = string.Format(StrSMSGatewayURL, StrSMSGatewayUsuario, StrSMSGatewayPassword, tcDestino, contenido, lcTitulo, fechaEnvio);
        HttpWebRequest enviar = (HttpWebRequest)WebRequest.Create(url);
        string respuesta = new StreamReader(enviar.GetResponse().GetResponseStream()).ReadToEnd();

        StrSMSGatewayRespuesta = respuesta.Trim();
        if (StrSMSGatewayRespuesta  == StrSMSGatewayRespuestaOk.Trim())
        {
            lReturn = true;
        }
        return lReturn;
    }

此代码在循环例程中运行,该例程发送消息并将其标记为在以下时间发送:

string respuesta = new StreamReader(enviar.GetResponse().GetResponseStream()).ReadToEnd();

返回专业代码。

我的问题是..有办法停止进程,或强制代码等到(httpWebRequest send the message and get the response)(timeout succeed)

1 个答案:

答案 0 :(得分:1)

HttpWebRequest.GetResponse() is a synchronous call,因此您不需要使用不同的机制来阻止当前线程。如果您使用异步方法HttpWebRequest.BeginGetResponse(),那么您需要有另一种机制来等待异步接收响应。

如果您要发送多条短信,则可能是因为您收到StrSMSGatewayRespuesta时没有收到正确的响应代码。如果您收到错误的代码,但邮件实际上已发送,则可能会再次发送该邮件,因为您将其标记为未发送。