go to post Oliver Wilms · Oct 4, 2021 The problem is only happening with quote-style escaping checkbox checked and it appears to be fixed in IRIS 2021.1
go to post Oliver Wilms · Sep 2, 2021 In my experience, this version of docker did not work properly with IRIS. Can you try to get on current Docker version?
go to post Oliver Wilms · Aug 23, 2021 By default, only clients local to the Web Gateway’s hosting computer are allowed access to the Web Gateway Management pages. The browser through which the management forms are accessed must be running on the same machine as the web server and Web Gateway. For example: http://localhost:<port_no>/csp/bin/Systems/Module.cxw You can add additional clients to the list of authorized administrators by adding the client IP addresses to the System_Manager parameter in the SYSTEM section in CSP.ini (in install-dir\CSP\bin). The System_Manager parameter represents a comma- or plus-separated list of clients (by IP address) who may access the Web Gateway Management pages. The directive shown below grants access to three remote clients in addition to the default local access. [SYSTEM] System_Manager=190.8.7.6, 190.8.7.5, 190.8.7.4
go to post Oliver Wilms · Aug 9, 2021 Hi Muhammad, You need to have a Message Bank Operation to send messages to the Message Bank and you need a Message Bank Production with a TCP Service to receive the messages. I have written an article about my experience with Message Bank and I have a GitHub repo with Message Bank code: IRIS Interoperability Message Bank | InterSystems Developer Community | AWS
go to post Oliver Wilms · Mar 10, 2021 Can you create your own class that extends the class you want to update? Which class? What kind of operation you want to do?
go to post Oliver Wilms · Feb 3, 2021 I created a new class (User.OperationSQL) which extends Ens.BusinessOperation and uses { Parameter ADAPTER = "EnsLib.SQL.OutboundAdapter"; Property Adapter As EnsLib.SQL.OutboundAdapter; ... Do you see Ens.BusinessOperation and EnsLib.SQL.OutboundAdapter?
go to post Oliver Wilms · Feb 3, 2021 Hello Jack, I have done this previously in this class: Class User.OperationSQL Extends Ens.BusinessOperation { Parameter ADAPTER = "EnsLib.SQL.OutboundAdapter"; Property Adapter As EnsLib.SQL.OutboundAdapter; ... I have this code to begin transaction: set tSC = ..Adapter.SetAutoCommit(0) I have this code to commit transaction: set tSC = ..Adapter.Commit() In case of rollback I use this code: Set rollbackSt = ..Adapter.Rollback()
go to post Oliver Wilms · Nov 16, 2020 Mark, I cloned the csv repository, added an interoperability production with a file service and a process that imports the file using csvgen code. Please take a look at this repo and let me know if you have any comments or questions: https://github.com/oliverwilms/csvgen
go to post Oliver Wilms · Jun 29, 2020 To force text to stay inside the width of a rectangle, use this: text-anchor="start" textLength="#(wbw-1)#" lengthAdjust="spacingAndGlyphs"