1

PHP Web サービスにファイルをアップロードするために使用される ac# 関数があります。PHP Web サービスは、次のことを期待しています。

  • 一部の XML データを含む UploadFileRequestDto という POST パラメーター
  • ファイル ストリーム

奇妙な理由で、$_POST パラメーターに UploadFileRequestDto が含まれている場合があります。の内容を見てみると

file_get_contents("php://input"))

UploadFileRequestDto が含まれているため、リクエストが期待どおりに行われていることがわかります。

する

print_r($_REQUEST)

空の配列を返しています。

誰でもこの問題の解決策を手伝ってもらえますか、私のC#関数は以下に規定されています

public string UploadFile(UploadFileRequestDto uploadFileRequestDto,string fileToUpload, string fileUploadEndpoint)
    {
        try
        {
            var request = (HttpWebRequest)WebRequest.Create(fileUploadEndpoint);
            request.ReadWriteTimeout = 1000 * 60 * 10;
            request.Timeout = 1000 * 60 * 10;
            request.KeepAlive = false;

            var boundary = "B0unD-Ary";

            request.ContentType = "multipart/form-data; boundary=" + boundary;
            request.Method = "POST";

            var postData = "--" + boundary + "\r\nContent-Disposition: form-data;";
            postData += "name=\"UploadFileRequestDto\"\r\n\r\n";
            postData += string.Format("{0}\r\n", SerializeUploadfileRequestDto(uploadFileRequestDto));
            postData += "--" + boundary + "\r\n";

            postData += "--" + boundary + "\r\nContent-Disposition: form-data;name=\"file\";filename=\"" + Path.GetFileName(fileToUpload) + "\"\r\n";
            postData += "Content-Type: multipart/form-data\r\n\r\n";

            var byteArray = Encoding.UTF8.GetBytes(postData);

            byte[] boundaryBytes = Encoding.ASCII.GetBytes("\r\n--" + boundary + "\r\n");

            byte[] filedata = null;
            using (var reader = new BinaryReader(File.OpenRead(fileToUpload)))
            {
                filedata = reader.ReadBytes((int)reader.BaseStream.Length);
            }

            request.ContentLength = byteArray.Length + filedata.Length + boundaryBytes.Length;
            request.GetRequestStream().Write(byteArray, 0, byteArray.Length);
            request.GetRequestStream().Write(filedata, 0, filedata.Length);
            request.GetRequestStream().Write(boundaryBytes, 0, boundaryBytes.Length);

            var response = request.GetResponse();
            var data = response.GetResponseStream();
            var sReader = new StreamReader(data);
            var sResponse = sReader.ReadToEnd();
            response.Close();

            return sResponse.TrimStart(new char[] { '\r', '\n' });
        }
        catch (Exception ex)
        {
            LogProvider.Error(string.Format("OzLib.Infrastructure : WebHelper : public string UploadFile(UploadFileRequestDto uploadFileRequestDto, string fileUploadEndpoint) : Exception = {0}", ex.ToString()));
        }
4

1 に答える 1

1

OK、問題が見つかりました

post_max_size

php.ini の設定が 8M に設定されていて、アップロードしようとしていたファイルの一部が 8M を超えていました。この設定を 16M に変更し、PHP サービスを再起動しました。

ファイル サイズが設定された制限を超えると、$_POST グローバルは空になります。

于 2013-05-30T11:02:47.810 に答える