I have a next form:
<form action="/upload" method="POST" enctype="multipart/form-data">
<input type="text" name="name">
<input type="file" name="file">
<input type="submit" value="Upload image">
</form>
I want to send request with name
and with file
I use spray-client
for this, when i send only file this work fine:
val file = "my-image.png"
val bis = new BufferedInputStream(new FileInputStream(file))
val bArray = Stream.continually(bis.read).takeWhile(-1 !=).map(_.toByte).toArray
val url = "http://example.com/upload"
val httpData = HttpData(bArray)
val httpEntity = HttpEntity(ContentTypes.`image/png`, httpData).asInstanceOf[HttpEntity.NonEmpty]
val formFile = FormFile("my-image", httpEntity)
val bodyPart = BodyPart(formFile, "my-image")
val req = Post(url, MultipartFormData(Map("spray-file" -> bodyPart)))
val pipeline = (addHeader("Content-Type", "multipart/form-data")
~> sendReceive
)
pipeline(req)
But how to send at the same time file and fields?