Mule / Jersey在文件上传请求时返回400

时间:2011-06-27 19:19:58

标签: jersey mule

我正在编写一个使用Jersey实现一些Web服务的mule应用程序。我想上传一个文件。我写了以下骨架

@POST
@Path("/getHtml")
@Consumes("multipart/form-data")
@Produces("text/plain")
public String getSummaryHtml(
        @FormDataParam("payload") String junk,
        @FormDataParam("x12file") InputStream file
        ) {
    LOG.info("called getSummaryHtml");

    return "got";
}

如果两个FormDataParam参数被注释掉,我可以卷曲到服务器并获得预期的响应。在取消注释参数的情况下,以下curl(之前工作的相同)会在响应中出现400错误。

curl -v -X POST --form x12file=@MULE-README.txt --form payload=junk http://localhost:8080/jersey/X12ToSummaryHtml/getHtml/

* About to connect() to localhost port 8080 (#0)
*   Trying 127.0.0.1... connected
* Connected to localhost (127.0.0.1) port 8080 (#0)
> POST /jersey/X12ToSummaryHtml/getHtml/ HTTP/1.1
> User-Agent: curl/7.21.3 (i386-redhat-linux-gnu) libcurl/7.21.3 NSS/3.12.10.0 zlib/1.2.5 libidn/1.19 libssh2/1.2.7
> Host: localhost:8080
> Accept: */*
> Content-Length: 2706
> Expect: 100-continue
> Content-Type: multipart/form-data; boundary=----------------------------55b24ac88245
> 
< HTTP/1.1 100 Continue
< Content-Type: text/plain
< Content-Length: 0
< Connection: close
< HTTP/1.1 400 Bad Request
< Content-Type: multipart/form-data; boundary=----------------------------55b24ac88245
< Date: Sat, 25 Jun 2011 01:29:10 MDT
< Server: Mule Core/3.1.1
< Expires: Sat, 25 Jun 2011 01:29:10 MDT
< http.status: 400
< MULE_ENCODING: UTF-8
< Transfer-Encoding: chunked
< Connection: close
< 
* Closing connection #0

如何将文件成功发布到此代码并进行处理,我需要做什么?

1 个答案:

答案 0 :(得分:0)