无法找到MIME边界

时间:2017-06-19 05:15:50

标签: java web-services cxf mime-types mime

我使用Postman调用我的多部分方法。它通过说

给我错误
org.apache.cxf.interceptor.Fault: 
Couldn't find MIME boundary: ------WebKitFormBoundary1wc6YPPaUQ5m6L5g

我的服务类是:

@POST
    @Path("/saveDocumentDetails")
    @Produces(MediaType.APPLICATION_JSON)
    @Consumes({MediaType.MULTIPART_FORM_DATA})
    public Response saveDocumentDetails(@FormDataParam("file") InputStream icomingFile,@FormDataParam("file") FormDataContentDisposition fileDetails) throws JcmsSystemException, JcmsDataException, ParseException, ApplicationException, IOException;

我的ServiceImpl方法是: -

public Response saveDocumentDetails(@FormDataParam("file") InputStream icomingFile,
                @FormDataParam("file") FormDataContentDisposition fileDetails) throws JcmsSystemException, JcmsDataException, ParseException, ApplicationException, IOException {
            System.out.println("in Save Documents Details---------");
            try{


            }catch(Exception e){
                e.printStackTrace();
            }
            return null;
        }

以下是邮递员请求的情景。

Screenshot

不使用任何内容类型。 我使用的是CXF 2.7.10 jar。

任何人都可以帮我弄清楚我在做错的地方

0 个答案:

没有答案