https://youtu.be/cda50UabyEo
Esse Video vai estrear as 20:45 do dia 26/03/2021
Esse Video vai estrear as 20:45 do dia 26/03/2021
Lembrando : Quando vai gerar o Primeiro Aplicativo no Windev Mobile 26 , Ele
faz todo download Android Sdk automaticamente
DICAS 3290 - WINDEV WEBDEV MOBILE - WEBSERVICE - 31- Otimizando o uso de memória ao transferir dados para uma Api Rest
meu_http_request is httpRequest
meu_http_request.Method = httpPost
meu_http_request.URL = "http://ServeurDestination/UrlWebServiceRest/.../FinURL"
meu_http_request.Content = fLoadBuffer("C:\...\FichieraUploade.bin")
RESTSend(meu_http_request)
ApiRest is httpRequest
HTTPCreateForm("FORM")
HTTPAddParameter("FORM", "parametres","3400")
HTTPAddFile("FORM", "fichier_upload","C:\FichieraUploade.bin")
ApiRest.URL = "http://ServeurDestination/UrlWebServiceRest/.../FinURL"
ApiRest.Method = httpPost
ApiRest.ContentType = typeMimeMultiPartForm
RETORNO_API_REST is boolean = HTTPSendForm("FORM", ApiRest)
|
|
DICAS 3289 - WINDEV WEBDEV MOBILE - Onde eu configo o tamanho da tela no windev mobile - Pergunas e Respostas - 43