B4J Question CKVS w/ASP.Net (Server Side)

pesquera

Active Member
Licensed User
Longtime User
Hi, I'm trying to make this functionality with ASP.Net so it can run over a hosted web server insted of a VPS

Playing with string type data, I can communicate between CloudKVS_Client (B4J) and my CloudKVS_Server (Asp.Net) perfectly

on the client side I do this:
B4X:
Private Sub HandleQueue
..
        Job.PostString(url,"key=number")
..
B4X:
Private Sub JobDone(job As HttpJob)
..
    If job.Success Then
Log($"GetString: ${job.GetString}"$)
...

getting the response from the server is Ok

Now, I have no idea about how can I Implement another types of data.. like blob with Serializator
Should that be possible to do?

Thanks for any help
 
Top