I'm trying to use fileuplad together with form fields in one endpoint. My
smallest use case that demonstrates failure
request is 'multipart/form-data' with fields as in example:
if "image" uploaded is large enough (about 1MB) I got error:
MalformedFormFieldRejection(sizes,Substream Source cannot be materialized
more than once,None)
with smaller upload sizes it works fine.
probably multipart/form-data must be handle in one run, so this construct
is illegal.
val routes = {
(path("resize") & post) {
formFields('imageId, 'sizes, 'rotate ? "normal") { (imageId,
sizesStr, rotateStr) =>
uploadedFile("image") {
case (meta, file) => {
complete {
// do something with file, sizes, rotate ...
}
}
}
}
}
--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ:
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.