go to post water huang · Dec 3 Ashok,thank you,this is what i asked,in fact ,i should change %Library.DateTime to and %Library.TimeStamp
go to post water huang · Jul 27 i would like to use JAVA to open service for iris,so i don·t care if iris not support any java version
go to post water huang · Mar 21 thank you,because of most cases use old version cache,it don't support %Studio.SourceControl. do you know why Projections is a bad way? what disaster does it will cause? one side is backup local code,i backup it to local,and then upload to gitee, i tried to used gitee’s callback function to autobackup,but failed。and the second side is to make backuping and updating code being simplly.Implementation Engineers want a simple way.
go to post water huang · Mar 21 at present situation,i work with ensemble2016 more than iris,and it seems doesn‘t support plug-in. I actually prefer to use dot syntax ,i think it shows much clearly levels。
go to post water huang · Mar 21 thks, local code can use git,but in production environment,there is no git,and usually,i have the code,but not include data.
go to post water huang · Feb 17 you can test this code,it will work s B64S=##class(%GlobalCharacterStream).%New()i '$IsObject(file) d.s fileName=file.s file=##class(%FileBinaryStream).%New().d file.LinkToFile(fileName).d file.Rewind()s len=513 ; text must be divisible by 3 and 57While 'file.AtEnd {s text=file.Read(.len)q:len'>0d B64S.Write($tr($system.Encryption.Base64Encode(text),$c(10,13),""))}q B64S
go to post water huang · Aug 1, 2022 dom,did you find a good way to work out?i meet the same trouble!
go to post water huang · Jan 23, 2021 thanks,%XML.TextReader could read the xml,but what i want to know is, xml 2 obj and i can reset some element`s value ,and then output the xml with new data
go to post water huang · Jan 23, 2021 <?xml version="1.0" encoding="UTF-8"?><ClinicalDocument xmlns="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:hl7-org:v3 ../sdschemas/SDA.xsd" classCode="DOCCLIN" moodCode="EVN"> <observation> <value xsi:type="ST">xxxx</value> </observation></ClinicalDocument>
go to post water huang · Apr 7, 2019 s PublicKeyFile="c:/key/pem/certself.pem"Set filestream=##class(%FileCharacterStream).%New()Set filestream.Filename=PublicKeyFileSet PublicKeyStr=filestream.Read(.len)s Plaintext="1"Set Ciphertext=##class(%SYSTEM.Encryption).RSAEncrypt(Plaintext,PublicKeyStr)w ##class(%SYSTEM.Encryption).RSAGetLastError(),!Set Ciphertext=##class(%SYSTEM.Encryption).Base64Encode(Ciphertext)w Ciphertext,!