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?
One way to find the request structure is to make such request with a .Net client and monitor the network traffic. Once you see how it is built it should be simple to do it yourself from B4A.