go to post Eduard Lebedyuk · Oct 14, 2022 I do see Database class in intersystems-binding-3.2.1. Update to 2022.1?
go to post Eduard Lebedyuk · Oct 13, 2022 Not sure about the last one: { "StartDate": "2022-12-01T00:00:00", "EndDate": "2022-11-30T23:59:59" } Anyways, I usually use this logic: Get 1st day of month DATEADD 1 Month DATEADD -1 Day Accounts for year breaks, leap months, everything.
go to post Eduard Lebedyuk · Oct 13, 2022 Use LibreOffice from IRIS or (if you only need the data) Apache POI.
go to post Eduard Lebedyuk · Oct 12, 2022 Awesome news! How does: As of now, ARM and Intel platform containers are published under the same name. So on an Intel machine "docker pull containers.intersystems.com/intersystems/iris:1111.2.3.456.0" will return the intel image, on an ARM machine that same pull will return the ARM image automatically, without needing to have a special .../iris-arm image. relate to docker pull containers.intersystems.com/intersystems/iris-arm64:2022.2.0.356.0 docker pull containers.intersystems.com/intersystems/irishealth-arm64:2022.2.0.356.0 ?
go to post Eduard Lebedyuk · Oct 11, 2022 You need to call ReturnFault method with your Fault object and pass the fault as an arg to this method. Check the docs.
go to post Eduard Lebedyuk · Oct 11, 2022 CSP supports client-side javascript only. Node is server-side javascript.
go to post Eduard Lebedyuk · Oct 11, 2022 Test is a Get method arg: Set tSc=Httprequest.Get(, 1) Try this and compare the output to a successful request. It's very likely your issue relates to mac, so you can also try: Do Httprequest.InsertParam("mac", $zcvt("CC:1B:E0:E1:A6:44", "O", "URI"))
go to post Eduard Lebedyuk · Oct 11, 2022 User should be not <myemail>, but your wrc login. You can also download images from docker hub.
go to post Eduard Lebedyuk · Oct 11, 2022 Try to define your parameters in a structured way: Set Httprequest.Location="api/gap/nodes" Do Httprequest.InsertParam("filter_rssi", -75) Do Httprequest.InsertParam("chip", 1) Do Httprequest.InsertParam("mac", "CC:1B:E0:E2:3C:10") Do Httprequest.InsertParam("active", 1) Do Httprequest.InsertParam("event", 1) Set tSc=Httprequest.Get() Also Get has a test parameter, try setting it to 1 to see what's being sent and compare to a successful request.
go to post Eduard Lebedyuk · Oct 7, 2022 Is <mypassword> your actual WRC password? You need to obtain token from here.
go to post Eduard Lebedyuk · Oct 7, 2022 There are four entry points: CanNodeStartToBecomePrimary CheckBecomePrimaryOK NotifyBecomePrimary NotifyBecomePrimaryFailed None of these entrypoints are related to DR promotion, so the answer is no. UPD: to clarify none of these entrypoints are related to DR promotion to backup. Becoming primary event would work.
go to post Eduard Lebedyuk · Oct 5, 2022 Aren't zpm installs idempotent dy default @Dmitry Maslennikov?
go to post Eduard Lebedyuk · Oct 3, 2022 HS.SDA3.Container is a registered, not persistent object so you can't pass it between business hosts. Pass xml stream instead.