Category: WINDEV

Creating a RESTful API to accept a Multipart Form Post

Creating a RESTful API to accept a Multipart Form Post

Today, we encountered an unusual requirement. Someone needed to send a file via API using Multipart Form Data, rather than Base64 encoding the file and submitting it as JSON data. I have experience sending files using Multipart Form Data, both via the HTTPSendForm function and by manually encoding the data using our wxHTTP class. I've … Continue reading Creating a RESTful API to accept a Multipart Form Post

Assisted Input + wxFileManager = The predictive input you have been looking for?

Assisted Input + wxFileManager = The predictive input you have been looking for?

Predictive Input, Type Ahead Lookup, or whatever you want to call it, it is one of the holy grails of a good User experience. Over the years I have used several approaches to achieve it. Today we will look at using the Assisted Input functions of WL along with the wxFileManager. BTW, There is also … Continue reading Assisted Input + wxFileManager = The predictive input you have been looking for?