go to post Scott Roth · Oct 3, 2019 From what I read is the basic purge does not take care of the orphaned messages. That's why there is this manual step we have to configure.
go to post Scott Roth · Sep 19, 2019 Not sure if this will answer your question or not, but we had to move to the jTDS JDBC driver in order to pass an AD account through a connection. jdbc:jtds:sqlserver://(server name/port) ;instance=tp;domain=osumc;useNTLMv2=true;cacheMetaData=true;prepareSQL=2;
go to post Scott Roth · Sep 9, 2019 When I feed a lab result through with OBX:3.1 valued, it is not being identified in this WHEN statement. Any other suggestions?
go to post Scott Roth · Sep 5, 2019 I should of explained this a bit better.We have 3 servers, 2 (A,B) Locally, 1 (C) offsite.Currently we are running on Server B. If I do a backup of Server B on 2015.2.2, can I restore it on Server C after it has been upgraded to 2019.1. I was wondering if the Full System Backups were compatible across versions of Health Share/Health Connect, since 2019.1 everything changed from ccontrol to iris.I thought I would give this a shot before bugging WRC, but I'll go ahead and ask them.ThanksScott
go to post Scott Roth · Aug 29, 2019 https://www.amazon.com/Cach%C3%A9-ObjectScript-MUMPS-Technical-Learning/dp/1466499087/ref=sr_1_fkmr0_1?keywords=Cache%60+object+script+and+mumps&qid=1567084211&s=gateway&sr=8-1-fkmr0
go to post Scott Roth · Apr 16, 2019 so how would the code block look like for the following... How do I return the EnsLib.SQL.Snapshot?ThanksScott
go to post Scott Roth · Apr 10, 2019 What do you mean by "After that you need to create an instance of this class and add it to HeaderOut property of your WS client."I created the custom header as suggested above Class osuwmc.Epic.CustomHeader Extends %SOAP.Header{Parameter XMLFORMAT = "literal";Parameter XMLIGNORENULL = "RUNTIME";Parameter NAMESPACE = "urn:epic-com.2013.Interconnect.Headers";Parameter XMLTYPE = "Epic-Client-ID";Property Value As %String(MAXLEN = 36, XMLPROJECTION = "CONTENT") [ InitialExpression = "12349fe5-2ff8-4b79-b723-e69efbabcdef" ];} then in my operation I did the following... Method AddCustomHeaderElement(mustUnderstand = 0){set h=##class(osuwmc.Epic.CustomHeader).%New()if mustUnderstand{set h.mustUnderstand = 1}Do ..HeadersOut.SetAt(h,"osuwmc.Epic.CustomHeader")} but still got an error on HeadersOut.What is HeadersOut and where do I set it?
go to post Scott Roth · Apr 10, 2019 When I add my method to my operation I am getting an error on ..HeadersOut . I am running 2015.2.2Method AddCustomHeaderElement(mustUnderstand = 0){set h=##class(osuwmc.Epic.CustomHeader).%New()set h."Epic-Client-ID" = "Test"if mustUnderstand{set h.mustUnderstand = 1}Do ..HeadersOut.SetAt(h,"osuwmc.Epic.CustomHeader")}
go to post Scott Roth · Apr 10, 2019 I read the instructions on how to create a custom header, however how do I specify the sub element of Epic-Client-ID, if we aren't allowed to use "-" Parameter, Property names?
go to post Scott Roth · Mar 7, 2019 With a little help I have built the following Method to Decode and save off the Encoded pdf but return me the directory that I saved the PDF under....ClassMethod DecodeBase64HL7ToFile(base64 As %Stream.GlobalBinary, Ancillary As %String, FileName As %String) As %String{set ArchDir = "/ensemble/data/transfer/AncillaryPDF/"set ArchAncDir = ArchDir_Ancillary_"/"set FaxDateDir = ArchAncDir_$PIECE($ZDATE($HOROLOG,7)," ",1)_"-"_$PIECE($ZDATE($HOROLOG,7)," ",2)_"-1/"if '##class(%Library.File).DirectoryExists(ArchDir){do ##class(%Library.File).CreateDirectory(ArchDir) }if '##class(%Library.File).DirectoryExists(ArchAncDir){do ##class(%Library.File).CreateDirectory(ArchAncDir) }if '##class(%Library.File).DirectoryExists(FaxDateDir){do ##class(%Library.File).CreateDirectory(FaxDateDir) }set Oref = ##class(%FileBinaryStream).%New()///$$$LOGINFO(FaxDateDir_FileName)set Oref.Filename = FaxDateDir_FileNameDo base64.Rewind()While 'base64.AtEnd { set ln = base64.ReadLine() set lnDecoded = $system.Encryption.Base64Decode(ln)do Oref.Write(lnDecoded)}Do Oref.%Save()set PDFFilePath = FaxDateDir_FileNamereturn PDFFilePath}
go to post Scott Roth · Feb 20, 2019 I have Field Test 2019.1 loaded on another PC. If I export 2.8.HL7 from it, can I, or will it work in version 2015.2.2??Are schemas backwards compatible within Ensemble?
go to post Scott Roth · Feb 19, 2019 I do something simular to what you asking. But my AD Group matches a Role that I had built within Ensemble. I give certain users access to modify their own data lookup tables, by creating individual pages for them and locking it down so they can not access the rest of Ensemble. It works pretty well.
go to post Scott Roth · Feb 13, 2019 the Syntax for MAXLEN was wrong. Instead of MAXLEN(5000) it should of been MAXLEN = 5000
go to post Scott Roth · Feb 6, 2019 We are still somewhat old school eGate folks in this sense. We send all of our transactions to flat files, then we can use those files to feed in data into the test system if needed. We did this when we moved from eGate to Ensemble to make sure we were getting the same transactions and counts.
go to post Scott Roth · Feb 6, 2019 Suggest that WRC is probably the best option to help you troubleshoot this issue. It can be numerous things from Security, or the system not running like it should.