MarcE85

Results 4 comments of MarcE85

> Hi! I made a script to start a zoned cleanup from a Domoticz dzVents script. Unfortunately, it is not yet working as it should.. > If I start the...

> May be, it has something to do with this: > > https://www.kauffmann.nl/2024/12/02/httpclient-and-certificate-validation-in-business-central-v25/ > > Kind regards I don't know because it started with that update, but in that post,...

Hi, here is an example: ``` local procedure GenXMLTest() var xmlDoc: XmlDocument; TempBlob: Codeunit "Temp Blob"; OStream: OutStream; Istream: Instream; XmlDec: XmlDeclaration; xmlEle: XmlElement; begin XmlDec := XmlDeclaration.Create('1.0', 'utf-8', 'yes');...

> What if you will do ? > > ``` > TempBlob.CreateOutStream(OStream); > xmlDoc.WriteTo(OStream) > ``` > > It may just be an encoding problem. If I do that without...