この問題を解決するには、Android からのマルチパート アップロードとマルチパート パーサーを使用してストリームを使用する必要がありました。私は Apache mime ライブラリを使用してファイルをアップロードし、次のようなパラメーターを送信しました。
HttpPost postRequest = new HttpPost(
context.getString(R.string.url_service_fbpost));
MultipartEntity reqEntity = new MultipartEntity(
HttpMultipartMode.BROWSER_COMPATIBLE);
if(postData.data != null && !"".equals(postData.fileName)){
ByteArrayBody bab = new ByteArrayBody(postData.data, postData.fileName);
reqEntity.addPart("uploaded", bab);
}
reqEntity.addPart("scheduleDate", new StringBody(postData.scheduleDate));
reqEntity.addPart("userId", new StringBody(postData.userId));
reqEntity.addPart("groupIds",
new StringBody(postData.groupIds.toString()));
reqEntity.addPart("postText", new StringBody(postData.postText));
reqEntity.addPart("postType", new StringBody(postData.postType));
reqEntity.addPart("accessToken", new StringBody(postData.accessToken));
if(postData.postId != null && postData.postId.length() > 0) {
reqEntity.addPart("postId", new StringBody(postData.postId));
}
postRequest.setEntity(reqEntity);
その後、C# マルチパート パーサーを使用してファイルとパラメーターを取得しました。サービスのコードは次のとおりです。
[OperationContract]
[WebInvoke(Method = "POST",
UriTemplate = "UploadFBPost",
BodyStyle = WebMessageBodyStyle.WrappedRequest)]
void UploadFBPost(Stream stream);
public void UploadFBPost(Stream stream)
{
MultipartParser parser = new MultipartParser(stream);
// Saves post data in database
if (parser.Success)
{
string fileName = null, userId = null, postText = null, postType = null, accessToken = null;
DateTime scheduleDate = DateTime.Now;
string[] groupIds = null;
int postId = 0;
// Other contents
foreach (MyContent content in parser.MyContents)
{
switch (content.PropertyName)
{
case "scheduleDate":
if (string.IsNullOrEmpty(content.StringData.Trim()))
scheduleDate = DateTime.Now;
else
scheduleDate = DateTime.ParseExact(content.StringData.Trim(), "M-d-yyyy H:m:s", CultureInfo.InvariantCulture);
break;
case "fileName":
fileName = content.StringData.Trim();
break;
case "userId":
userId = content.StringData.Trim();
break;
case "postText":
postText = content.StringData.Trim();
break;
case "accessToken":
accessToken = content.StringData.Trim();
break;
case "groupIds":
groupIds = content.StringData.Trim().Split(new char[] { ',' });
break;
case "postType":
postType = content.StringData.Trim();
break;
case "postId":
postId = Convert.ToInt32(content.StringData.Trim());
break;
}
}
string videoFile = null, imageFile = null;
if (parser.FileContents != null)
{
string filePath = GetUniqueUploadFileName(parser.Filename);
File.WriteAllBytes(filePath, parser.FileContents);
if (postType == "photo")
imageFile = Path.GetFileName(filePath);
else
videoFile = Path.GetFileName(filePath);
}
}
}
送信するデータに応じてマルチパート パーサーを変更する必要があります。これが少数の時間を節約することを願っています。
助けてくれてありがとうレイ。
もう一つ。これらの行を Web 構成に追加する必要がありました。
<httpRuntime maxRequestLength="2000000"/>
<bindings>
<webHttpBinding>
<binding maxBufferSize="65536"
maxReceivedMessageSize="2000000000"
transferMode="Streamed">
</binding>
</webHttpBinding>
</bindings>