I am a software developer and I want to create a project client-server.
The client is wrote in c# with xamarine and the server on py4web.
The client create request with some parameters and the server reply with a data in json form.
I use celery for scheduling the request and I create a task for each type of requests.
When with the client application I create a request [like the example below], the function await.response.Content.ReadAsStringAsync create an exception: unexpected end of stream
Server side the situation is that I create for each request a DAL and I define a table where I took the date to send to the client.
Thanks for the help.