带有可选文件上传的REST post请求
本文关键字:REST post 请求 文件 | 更新日期: 2023-09-27 18:12:47
在创建WCF REST服务时,我正在接收json中的数据并能够保存在数据库中。现在我需要给选项上传文件(可选的,图像或视频)与相同的服务。我尝试发送字节数组,但它给出了糟糕的请求错误,可能是因为这样一个长数组的序列化。我读到要上传大文件我需要使用流。如何在发送其他参数时做到这一点呢?我正在创建这个服务来接收来自移动设备的数据。这是我的服务接口
[WebInvoke(UriTemplate = "SaveFBPost",
Method = "POST",
BodyStyle = WebMessageBodyStyle.Wrapped,
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json)]
[OperationContract]
void SaveFacebookPost(FBPostData fbPostData);
公共类FBPostData:
[DataMember]
public string scheduleDate { get; set; }
[DataMember]
public string userId { get; set; }
[DataMember]
public string groupId { get; set; }
[DataMember]
public string postText { get; set; }
[DataMember]
public byte[] file { get; set; }
[DataMember]
public string fileType { get; set; }
[DataMember]
public string accessToken { get; set; }
我将开始增加maxBufferSize和maxArrayLength为特定的绑定在web中。配置,看看这是否解决了问题。
你应该能够拉出更多关于错误的细节,这样你就可以确切地看到为什么你会得到你的400错误。
这篇博客文章过去对我也很有用——底部也有一些很好的链接。
还要看看Stream类。不确定你所说的"发送其他参数"是什么意思-如果你能澄清这一点,我们可以给你更多的指导。
我不得不使用流使用多部分上传从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);
}
}
}
你确实需要根据你发送的数据修改多部分解析器。希望这将节省一些时间。
谢谢ray的帮助。
还有一件事。我必须在web config中添加这些行:<httpRuntime maxRequestLength="2000000"/>
<bindings>
<webHttpBinding>
<binding maxBufferSize="65536"
maxReceivedMessageSize="2000000000"
transferMode="Streamed">
</binding>
</webHttpBinding>
</bindings>