Hello,
I'm currently struggeling with a HTTP request to a URL, which contains an jpeg image file.
Testing the request with a browser or Postman results in the image being shown normally.
Using a %Net.HttpRequest with different configurations has resulted in a corrupted file.
My code works for some URLs from other servers perfectly fine, but with some it produces corrupted file contents which do not represent a jpeg.
N REQ,STATUS,RET
Set REQ=##class(%Net.HttpRequest).%New()
Set REQ.Server="www.distrelec.de"
set REQ.SSLConfiguration="agimero.quwiki.de"
SET REQ.FollowRedirect=1
SET RE

