Consuming a multipart/form-data via RESTful CXF

后端 未结 3 469
再見小時候
再見小時候 2021-01-05 04:59

I\'ve been working in a webservice that consumes and produces JSON files using Apache CXF in conjuction with Jackson.
However, one of the service\'s methods should be

3条回答
  •  礼貌的吻别
    2021-01-05 05:35

    It seems we found the problem, and it was related to the format of the request. The correct format should have been:

    Content-type: multipart/form-data, boundary=AaB03x
    
    --AaB03x
    content-disposition: form-data; name="mode"
    
    T--AaB03x
    
    content-disposition: form-data; name="type"
    
    M--AaB03x
    
    content-disposition: form-data; name="path"
    
    c:/img/--AaB03x
    
    content-disposition: form-data; name="image"; filename="image.jpg"
    Content-Type: image/jpeg
    Content-Transfer-Encoding: binary
    
    imgdata--AaB03x--
    

    Changing to this format allowed me to consume the other parameters.

提交回复
热议问题