If you are a supported customer (with the license under support - SUTA), please contact WRC. More details you can find at https://www.intersystems.com/support/
Please, what is definition of your stream property and how do you create its data?
If the stream is type of %Library.GlobalCharacterStream or %Library.GlobalBinaryStream, the location of the streams depends if you write data directly to the stream property or if you created the stream first and assign it to stream property:
{
Property MyStream As %GlobalCharacterStream;
}
USER>s x=##class(tv.test).%New()
USER>w x.MyStream.%Location
^tv.testS
USER>w x.MyStream.Write("My Data")
1
USER>w x.%Save()
1
USER>zw x.MyStream.GetStreamId()
$lb($c(0,16,1,11,1)_"^tv.testS"_$c(3,4,4,2,1),"%GlobalCharacterStream"
BUT:
USER>s x=##class(tv.test).%New()
USER>s str=##class(%GlobalCharacterStream).%New()
USER>w str.%Location
^CacheStream
USER>s x.MyStream=str
USER>w x.MyStream.%Location
^CacheStream
USER>w x.MyStream.Write("My Data")
1
USER>w x.%Save()
1
USER>zw x.MyStream.GetStreamId()
$lb($c(0,19,1,14,1)_"^CacheStream"_$c(3,4,2,2,1),"%GlobalCharacterStream")
Therefore if you do not want to change the location of the stream, is better to use CopyFrom method insterad:
USER>s x=##class(tv.test).%New()
USER>s str=##class(%GlobalCharacterStream).%New()
USER>w str.Write("My Data")
1
USER>w x.MyStream.CopyFrom(str)
1
USER>w x.%Save()
1
USER>zw x.MyStream.GetStreamId()
$lb($c(0,16,1,11,1)_"^tv.testS"_$c(3,4,5,2,1),"%GlobalCharacterStream")
Please, let us know if it corresponds to your findings.
Yone, try to set ContentCharset AFTER setting of ContentType:
set httpRequest.ContentType = "application/json"
set httpRequest.ContentCharset = "UTF-8"
This is from %Net.HttpRequest class documentation:
property ContentCharset as %String [ Calculated ];
This is the charset to encode the contents with. This is actually specified in the HTTP Content-Type header with something like:Content-Type: text/html; charset=UTF-8
You must set this property after you set the ContentType or it will overwrite this value.
Will it change anything?