B4J Question PostMultipart - Handle on B4J Server - Harris    Mar 6, 2019 or wifi).
Now I am trying to test speed difference with PostMultipart - get nothing but failure....PostMultipart(Starter.srvlinkins, CreateMap("name": filename), Array(fd))
Wait For (j... B4J Question PostMultipart: upload file with some POST parameters - peacemaker    Feb 10, 2022   (3 reactions) , timestamp)
job.PostMultipart(apif_HTTPURL, m, L)
Wait For (job) JobDone(job...
by MultiPart POST.
Debugging by the https://web.postman.co/
Private Sub UploadHTTP_File(remoteFolder... | E_PARSE | E_NOTICE); //
require_once 'lib/funcs.php';
if (!isset($_POST) || $_POST...'No APIkey'), JSON_UNESCAPED_UNICODE);
exit;
}
if (!isset($_POST) || $_POST... B4A Question How send header parameters in PostMultipart - scsjc    Aug 6, 2019 "
fd.ContentType = "image/jpg"
j.PostMultipart(posturl, CreateMap...I need send a image with a Post
In a Headers need put a Parameters HASH & USER
i try this code... B4A Example Image upload with PHP and PostMultipart - Douglas Farias    Oct 18, 2018   (2 reactions) Hi all.
I found this example in some old folders on my pc and decided to share here.
it is a simple ... B4A Question HttpJob Postmultipart with JSON and Image files - jobykpaul    Feb 19, 2020 ("application/json")
j.PostMultipart("http://154.15.225.11/api/add_dev"...Hi
I want to upload data to the server using HttpJob Postmultipart method. My data include... B4A Example Upload image to server, PostMultipart and PHP - rscheel    Aug 10, 2017   (4 reactions) A small example like loading an image with PostMultipart and PHP, I have been useful, you can adapt it needs. Code B4A Sub CargaImagen Dim j As HttpJob Dim img As String = "IMG_20178108230.jpg" j.Initialize("", Me) Dim mp As MultipartFileData mp.Initialize mp.Dir = File.DirRootExternal & "/Image/" mp.FileName = img mp.KeyName = "file" mp.ContentType = "image/jpg" j.PostMultipart("http://192.168.0... B4i Question postmultipart and chmod - tufanv    May 28, 2018 Hello ,
I use the below code to upload files:
Dim MFD As MultipartFileData
MFD.Initialize
MFD.Dir = File.DirDocuments
MFD.FileName = sen
MFD.KeyName = "userfile"
H.PostMultipart("",Null,Array(MFD))
H.PostMultipart("server",CreateMap("username":"b4x","password":"supersafe"),Array(MFD))
and php side... Bug? PostMultipart adds an CRLF to the post-parameters - DonManfred    Mar 9, 2017 @rossati started a thread here: https://www.b4x.com/android/forum/threads/postmultipart-error.77120/ It happens with my setup and my webserver too. See my comments for test-Code (B4A and PHP)... B4i Question httpjob postmultipart for uploading audio file - tufanv    Apr 30, 2018 postmultipart for this. Postmultipart requires:
job.PostMultipart(link As String , namevalues As Map... B4A Question Help!!! PostMultipart Video Files to server using WaitFor and Php - Mashiane    Sep 1, 2017 Hi there.. I'm trying to no avail to use PostMultipart to upload video files to the server. This works well for my images, but now for my mp4 files at all, these are not fully uploaded. I'm calling this from a class... Sub UploadFilePhp(frm As Object, pQuery As Map, dir As String, fil...-stream" End If ' execute the script to upload the file job.PostMultipart(Starter...") Dim job As HttpJob Dim fd As MultipartFileData ' initialize the job job... Page: 1   2   3   4   |