go to post Marc Mundt · Jun 24, 2020 It's possible for methods to accept a variable number of arguments. More details here.
go to post Marc Mundt · Jun 24, 2020 SoapUI and Postman use HTTP to send requests. HL7 over TCP (MLLP) is not an HTTP-based protocol. You can use a business operation as you mentioned, or there are some commonly used third-party tools for testing HL7 interfaces, such as Interface Explorer.
go to post Marc Mundt · Jun 22, 2020 There's also a convenience function for this: set origTime=$hset newTime=$$HorologAddSecs^EnsUtil(origTime,60) The first parameter is the time in $horolog format, the second parameter is the number of seconds to add. It returns the new time in $horolog format.
go to post Marc Mundt · Jun 12, 2020 Have you tried exporting the DTL classes from System Management Portal >> System Explorer >> Classes?
go to post Marc Mundt · Jun 12, 2020 You can get a list of DTLs with a query like this: SELECT Name FROM %Dictionary.CompiledClass WHERE Super = 'Ens.DataTransformDTL' And then you can iterate through the list and use $System.OBJ.Export() to export them to files.
go to post Marc Mundt · Jun 10, 2020 I think you just need to change your business rule so the first parameter you pass to CacheExists is wrapped in quotes: CacheExists("osuwmc_Tecsys...",...)
go to post Marc Mundt · May 28, 2020 There are several utilities available for converting XLSX to CSV. You could run the conversion using $ZF(-100) and then read the CSV using a RecordMap.Here's one example:https://csvkit.readthedocs.io/en/1.0.2/scripts/in2csv.html
go to post Marc Mundt · May 21, 2020 In current IRIS versions, it's named intersystems-jdbc-3.0.0.jar In current Caché versions it's named cache-jdbc-2.0.0.jar In both, you'll find it under: [INSTALL DIR]/dev/java/lib/JDK18 It's also worth noting that under IRIS the JDBC URL and the driver classname have changed. See this doc for details. com.intersystems.jdbc.IRISDriver jdbc:IRIS://127.0.0.1:51773/USER
go to post Marc Mundt · May 7, 2020 Can you paste in the full class definition for ORMFARM.amplitudeHTTPRequest?
go to post Marc Mundt · May 7, 2020 I want to get message body to parse it before insert What kind of parsing and changes do you need to make to the message?
go to post Marc Mundt · May 6, 2020 Can you provide some more details about what you're trying to do and what the process that you're trying to change looks like? Here's an overview of productions and message flows. In most cases, you would add business logic using a Business Process. Here's a nice online course about developing Business Processes.
go to post Marc Mundt · May 6, 2020 Sure. You're already extending %XML.Adaptor, which includes the methods XMLExportToStream and XMLExportToString.
go to post Marc Mundt · Apr 21, 2020 The wkhtmltopdf website has an example of the command-line usage -- looks fairly simple. And have a look at our product documentation for $ZF(-100) on how to execute an external program from ObjectScript.
go to post Marc Mundt · Apr 20, 2020 There are some open source tools available that convert HTML to PDF: https://wkhtmltopdf.org/
go to post Marc Mundt · Apr 8, 2020 I'd recommend capturing the status value returned by FileInfo() -- it's possible that the call is failing. set tSC=..%sftpSession.FileInfo(pFilename,.tFileInfoList) if $$$ISERR(tSC) { // There was an error, do something }
go to post Marc Mundt · Apr 7, 2020 这三个参数有什么用途?^PAADMi("No") 是医院episode号码的指数。空字符串的参数会不会需要episode号? 最好要修改stored procedure先检查需要的参数。
go to post Marc Mundt · Mar 31, 2020 Cache Terminal doesn't have a setting similar to Putty. Windows has methods for finding a specific window that belongs to another app and bringing it to the foreground. You could write a C++ or C# program to do that: https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-se...https://stackoverflow.com/questions/11512373/findwindow-and-setforegroun... Or many scripting languages have libraries that use those Windows methods: https://www.autoitscript.com/forum/topic/113390-bring-application-or-pro...https://www.programcreek.com/python/example/89828/win32gui.SetForeground...https://metacpan.org/pod/Win32::GuiTest