go to post Alexander Koblov · Jul 22 You should follow the steps in the "Concurrent External Backup" section of the documentation https://docs.intersystems.com/iris20241/csp/docbook/DocBook.UI.Page.cls?... The three steps that you posted are subset of the steps recommended there
go to post Alexander Koblov · Jul 19 /api is active in the Web Gateway Does Apache forward /api to the Web Gateway? Do you have something like the following in httpd.conf <Location /api/> CSP On </Location>
go to post Alexander Koblov · Jul 17 There is a $System.Encryption.MD5HashStream() that does not read whole stream into the memory
go to post Alexander Koblov · Jul 10 Please double-check that you enabled Audit itself, and these events particularly
go to post Alexander Koblov · Jul 10 Cachè 2017.2 supports SQL Audit. There are three audit events: - %System/%SQL/DynamicStatement — for Dynamic SQL Queries - %System/%SQL/EmbeddedStatement — for Embedded SQL Queries - %System/%SQL/XDBCStatement - for ODBC/JDBC Queries https://docs.intersystems.com/ens201817/csp/docbook/DocBook.UI.Page.cls?...
go to post Alexander Koblov · Jul 3 (Usually the best way to get an answer on the Internet is not to ask a question, but post an incorrect statement. So hoping that someone would correct me, I would say that) This is not possible -- if there is not process attached, then there is no input for READ to read the value from
go to post Alexander Koblov · Jul 2 Only one small addition -- use DependsOn, not CompileAfter. Then ObjectScript compiler makes sure that Foo.Bar.1 is runnable when the Foo.Bar.2 is compiled https://docs.intersystems.com/iris20241/csp/docbook/Doc.View.cls?KEY=ROB...
go to post Alexander Koblov · May 8 Idea -- set Web Gateway event level log to pp0 and see what times it logs. That would help to identify if indeed the issue is witht the web server itself, or perhaps in some Web Gateway configuration I wonder if this is caused sometimes by establishing a new connection between Web Gateway and IRIS
go to post Alexander Koblov · Apr 22 Good catch! I would agree, that the documentation is wrong here. Please use "Feedback" button on the right border of the documtation page to report this, so that this is fixed.
go to post Alexander Koblov · Apr 22 Generally, on start you should have at least one workspace -- Default If you don't have it -- check with browser web developers tools if there are any CORS errors. If there are errors -- adjust KONG_ADMIN_GUI_URL See IAM Management Portal or Developer Portal Is Empty
go to post Alexander Koblov · Apr 15 Hm, check also Protect event in the Audit -- ensure that the Audit and logging of Protect events are enabled, then reproduce the problem and see if anything is logged in the Audit
go to post Alexander Koblov · Apr 11 Scott, take a look inside iam-setup.sh Based on the inputs it constructs a URL and then tries to 'curl' it. And fails for some reason. Check which URL it constructs and check if curl indeed works fine for that URL The URL should look like: https://IAM: @xxx.xxx.xxx.xxx:443/api/iam/license Check if you can access it from the bash
go to post Alexander Koblov · Feb 27 Can you provide small test case. It works fine for me. dc.demo is the same as HS.Local.CZ.OR.ROUTER.Service.Data.KeyProperty dc.demoser is: Class dc.demoser Extends %SerialObject { Property A As %String; } Test program: set p = ##class(dc.demo).%New() set x = ##class(dc.demoser).%New() set x.A = "a1" set p.Serial = x set y= ##class(dc.demoser).%New() set y.A = "a2" do p.SerialList.Insert(y) set ec= p.%Save() zw ec And then runnning: USER>do ##class(dc.demo).test() ec=1 USER>zw ^dc.demoD ^dc.demoD=1 ^dc.demoD(1)=$lb("",$lb("a1"),$lb($lb($lb("a2"))),"",0,0,"","","","","","",0) I never saw such direct of %SerialObject. Why do you need it? I wonder if %DynamicAbstractObject and JSON representation suits you here better
go to post Alexander Koblov · Feb 15 Hi Virat See methods %ExportExcelToFile, %ExportPDFToFile in the class %DeepSee.Utils. Perhaps they help
go to post Alexander Koblov · Jan 22 Class EnsLib.SOAP.Service inherits from class %SOAP.WebService that has the following parameter: /// Response is always encoded in UTF-8. /// Should not be overridden. Parameter CHARSET As STRING [ Internal ] = "UTF-8"; So the answer is yes. A SOAP Service has UTF-8 as the default charset.
go to post Alexander Koblov · Jan 17 I don't know the reasons for this not to work, given that there is a network connectivity between mirror nodes in the cluster and async member. I did not try this myself
go to post Alexander Koblov · Jan 16 You can try to use merge.cpf to define async member as part of the mirror See "Deploy the Mirror Using Separate Merge Files" https://docs.intersystems.com/iris20233/csp/docbook/DocBook.UI.Page.cls?...
go to post Alexander Koblov · Jan 16 Virat, can you please provide more details on how DeepSee is related to this task? There are PDF files. You need to display them? Why do you think DeepSee is the tool to do it?