I wanted to ask again my Question.
I’m developing a restful web service that can be accessed from Android but I have a problem since 2 Weeks.
I want to write a service that takes some byte array from Database and write this ones to a file so that I can use this service from android.
With Android I want to get this File and then use this bytes to plot a graph.
Can you give me some Tips please!!
Thank you
Web API is a good option in your case, cause is very straightforward to use it and you only need to send a simple stream.Then create your own RestClient in your app for consuming the web service, here you have some code using HttpClient for doing this:
With this you can pass a GET request in order to get the data you need, if you need to add some extra parameters to the querystring this should be good too: