PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WEBDEV 2024 → Receive files with a webservice
Receive files with a webservice
Started by trap, Sep., 11 2019 1:41 PM - 4 replies
Posted on September, 11 2019 - 1:41 PM
How to save files sent via HTTPSendForm on a Web service developed with WEBDEV or WINDEV?
I send my data with multipart/form-data

thanks in advance
Posted on September, 11 2019 - 3:02 PM
you need to use MTOM in your webservice and send the file using that standard
Posted on September, 11 2019 - 4:58 PM
Thanks, and with a REST Webservice?
Posted on September, 11 2019 - 5:10 PM
NO for that (use MTOM) you need to use SOAP, i would not recommend to use REST specially when you are transferring Binary Data. there are 1000 reasons for that.
Posted on October, 11 2019 - 5:10 PM
Hi!!!


For the sending of files, either rest or soap, if you are sending images it would be better if you sent it as jpg with 80% quality that greatly reduces the size of the file, you have to encode or serialize.

And in the webservices deserialize or decode.

https://help.windev.com/en-US/index.awp…


/// Webservices ////
bufPhoto is Buffer = Decode (vMyjson.fotos [idx2] .photo, encodeBASE64URL)
fSaveBuffer (sPathfoto, bufPhoto)


/// Image Encoding ///
image is Image
image = fLoadBuffer (qry_fotos.PathFoto)
// sFilenamedest =
bufPhoto is Buffer = dSaveImageJPEG (image, inMemory, 50)
sPhoto = Encode (bufPhoto, encodeBASE64URL)

Regards,