I am trying to store a picture made with the mobile camera in a SQL Server database connected via API Express.
The image is transferred through the body of the restservice.
I found, that the REST Service response can’t exceed the limit of 10241000B which equals roughly 10MB.
The image base64 string that I want to pass through is much smaller than that.
Setting the camera quality and the image size extremely low I can pass about 4000 characters without any problems. So technically it works.
Looking at the size of the pictures I made with "normal" quality settings I measure about 2 MB.
I know that response time according to what plan you have was a topic before.
But passing through a little over 4000 characters seems truly not enough to break the 3 seconds barrier of the plan I am in.
Especially knowing that it worked with bigger images last week.
I do have the feeling the API Express response time is sort of fluctuating.
If that is the case it is not acceptable at all.
I do need to know fast how to handle this since my customers are waiting for a solution for this issues.
Thanks and thank you for your help in advance.