Android Question Upload bytearray with HttpJob to Webservice

Cadenzo

Active Member
Licensed User
Longtime User
I want to upload a recorded Video with a ASP.NET Webservice. The Webservice method is like
B4X:
Public Function DataUpload(buffer() As Byte, offset As Integer, typ As Integer, ByVal filename As String) As String

So the parameters are bytearray, int and string. With HttpJob I can use .PostFile, .PostBytes, .PostString, but I have no idea, how to call a service with this several parameters. Could, please, anyone give me a hint?
 
Top