[Error] Exception in filter Request processing failed; nested exception is org.springframework.web.multipart.MultipartException: Failed to parse multipart servlet request; nested exception is org.apache.commons.fileupload.FileUploadException: Stream end..
2022. 8. 27. 22:18ㆍ개발자료/iOS
반응형
현상
iOS NSURLSession 파일 업로드중 서버 오류 발생.
PHP 서버에서는 정상적으로 동작하는 코드가 SpringFramework 에서 오류 발생
원인
multipart/form-data 전송 데이터 생성시 Boundary 마지막에. --가 붙지 않아 발생한 오류
해결 방법
마지막 Boundary 뒤에 -- 추가
------WebKitFormBoundaryuggrEmcb3XoH6hwM--
------WebKitFormBoundaryuggrEmcb3XoH6hwM
Content-Disposition: form-data; name="preImage"; filename="IMG_0043.JPG"
Content-Type: image/jpeg
------WebKitFormBoundaryuggrEmcb3XoH6hwM--
반응형
'개발자료 > iOS' 카테고리의 다른 글
WKWebView (0) | 2022.09.15 |
---|---|
앱 설정 화면 이동 (0) | 2022.08.29 |
Xcode13 iOS15 이상에서 StatusBar 색이 나오지 않을때 (0) | 2022.05.24 |
[Error] Building for iOS, but the embedded framework 'NaverThirdPartyLogin.framework' was built for iOS + iOS Simulator. (0) | 2022.04.27 |
UIModalPresentationStyle (0) | 2022.04.07 |