2

私は間違っているかもしれませんが、ASP.NET 2.0でSmtpClient.SendAsyncを使用していて、例外がスローされた場合、要求を処理するスレッドは、操作が完了するまで無期限に待機します。

この問題を再現するには、電子メールの送信時に解決できなかったホストの無効なSMTPアドレスを使用するだけです。

SendAsyncを使用するには、Page.Async=trueを設定する必要があることに注意してください。

Page.Asyncがfalseに設定されていて、Sendが例外をスローした場合、スレッドはブロックされず、ページは正しく処理されます。

TIA。

4

3 に答える 3

2

SendAsync を使用するには、Page.Async = true を設定する必要があることに注意してください。

この理由を説明してください。Page.Async の機能を誤解していることが、問題の原因である可能性があります。

申し訳ありませんが、問題を再現する例を取得できませんでした。

http://msdn.microsoft.com/en-us/magazine/cc163725.aspx (WICKED CODE: ASP.NET 2.0 の非同期ページ)を参照してください。

編集:コード例を見るRegisterAsyncTask()と、PageAsyncTaskクラスを使用していないことがわかります。@Asyncがtrueに設定されているページで非同期タスクを実行するときは、これを行う必要があると思います。MSDN マガジンの例は次のようになります。

protected void Page_Load(object sender, EventArgs e)
{
    PageAsyncTask task = new PageAsyncTask(
        new BeginEventHandler(BeginAsyncOperation),
        new EndEventHandler(EndAsyncOperation),
        new EndEventHandler(TimeoutAsyncOperation),
        null
        );
    RegisterAsyncTask(task);
}

ではBeginAsyncOperation、メールを非同期で送信する必要があります。

于 2008-09-17T07:45:02.780 に答える
1

RegisterAsyncTask を使用できませんでした。BeginEventHandler デリゲートを見てください。

public delegate IAsyncResult BeginEventHandler( Object sender, EventArgs e, AsyncCallback cb, Object extraData )

IAsyncResult を返す必要があります。次に、SmtpClient.SendAsync 関数を見てください。

public void SendAsync( MailMessage メッセージ、オブジェクト userToken )

戻り値はありません。

とにかく、SmtpClient.SendAsync が例外をスローしない限り、これは正常に機能しています。

于 2008-10-14T15:14:31.710 に答える
0

これが私のものです。試してみる。

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        // Using an incorrect SMTP server
        SmtpClient client = new SmtpClient(@"smtp.nowhere.private");
        // Specify the e-mail sender.
        // Create a mailing address that includes a UTF8 character
        // in the display name.
        MailAddress from = new MailAddress("someone@somewhere.com",
           "SOMEONE" + (char)0xD8 + " SOMEWHERE",
        System.Text.Encoding.UTF8);
        // Set destinations for the e-mail message.
        MailAddress to = new MailAddress("someone@somewhere.com");
        // Specify the message content.
        MailMessage message = new MailMessage(from, to);
        message.Body = "This is a test e-mail message sent by an application. ";
        // Include some non-ASCII characters in body and subject.
        string someArrows = new string(new char[] { '\u2190', '\u2191', '\u2192', '\u2193' });
        message.Body += Environment.NewLine + someArrows;
        message.BodyEncoding = System.Text.Encoding.UTF8;
        message.Subject = "test message 1" + someArrows;
        message.SubjectEncoding = System.Text.Encoding.UTF8;
        // Set the method that is called back when the send operation ends.
        client.SendCompleted += new
        SendCompletedEventHandler(SendCompletedCallback);
        // The userState can be any object that allows your callback 
        // method to identify this send operation.
        // For this example, the userToken is a string constant.
        string userState = "test message1";
        try
        {
            client.SendAsync(message, userState);
        }
        catch (System.Net.Mail.SmtpException ex)
        {
            Response.Write(string.Format("Send Error [{0}].", ex.InnerException.Message));
        }
        finally
        {
        }
    }
    private void SendCompletedCallback(object sender, AsyncCompletedEventArgs e)
    {
        // Get the unique identifier for this asynchronous operation.
        String token = (string)e.UserState;

        if (e.Cancelled)
        {
            Response.Write(string.Format("[{0}] Send canceled.", token));
        }
        if (e.Error != null)
        {
            Response.Write(string.Format("[{0}] {1}", token, e.Error.ToString()));
        }
        else
        {
            Response.Write("Message sent.");
        }
    }

}
于 2008-09-17T14:04:43.103 に答える