0

これは非常に単純でなければなりません。サーバー上のファイルを処理する Web ページがあります。私はそれを呼び出して、単に URL にファイル名を送信して開始しようとしていますが、通知 URL を呼び出しているだけで、パラメーターを呼び出していません。私は何を間違っていますか?

    private void Notify(IDictionary config, String fn)
    {

        //check to see if a notification url was specified
        if (string.IsNullOrEmpty((String)config["notificationUrl"]))
        {
            log.Warn("No 'notificationUrl' specified. No notification generated.");
        }
        else
        {

            WebRequest wr = WebRequest.Create(string.Format(config["notificationUrl"].ToString() + "?file=" + fn));
            wr.Method="GET";

            HttpWebResponse hwr = (HttpWebResponse)wr.GetResponse();
            if (hwr.StatusCode != HttpStatusCode.OK)
                throw new Exception("Upload File created, but HTTP notification url returned status code: " + hwr.StatusCode.ToString());
        }
    }
4

0 に答える 0