go to post Eduard Lebedyuk · Oct 16, 2018 There are far more efficient ways to do that.Move tables you want shared into a separate Namespace with separate Code/Data databases.Map your data and code into original namespace.Verify that it all works as expected. So far it should work as before.Create a mirroring configuration.Add 2 created databases to the mirror configuration.Add second server as a DR mirror.Move databases to a DR mirror and mount them there.(Optional) Create a namespace with 2 mirrored databases.Add desired mappings on a second system.Docs.
go to post Eduard Lebedyuk · Oct 16, 2018 Check your BO message map. There's no entry for Test.SubscriberX class there.
go to post Eduard Lebedyuk · Oct 16, 2018 Why is it going to intersystems-community on F5?To check for updates.
go to post Eduard Lebedyuk · Oct 15, 2018 InterSystems Caché supports passwords with Unicode characters for basic authentication starting 2018.1.Earlier versions should require ascii-compliant passwords.You can use PasswordValidationRoutine to enforce that.
go to post Eduard Lebedyuk · Oct 15, 2018 Just installed Webterminal 4.8 on Cache for UNIX (SUSE Linux Enterprise Server for x86-64) 2015.2.1 (Build 705U) Mon Aug 31 2015 16:58:02 EDT [HealthShare Modules:Core:14.01.7952 + Linkage Engine:14.0.7952] and it seems to work.Do you see /terminal web app in SMP? If it's not a production system try to give %ALL role to check if it helps.The link should be: http://host:port/terminal/
go to post Eduard Lebedyuk · Oct 13, 2018 Right.@Alexey Maslov does exactly that at the beginning of his code sample: new $namespace set $namespace="%SYS"
go to post Eduard Lebedyuk · Oct 13, 2018 Here's it in class doc. You can only see it in class explorer for %SYS namespace.
go to post Eduard Lebedyuk · Oct 9, 2018 Do you have IMAP available?If not you can use DavMail to convert exchange to POP3 and that's easily consumable from InterSystems IRIS.
go to post Eduard Lebedyuk · Oct 2, 2018 Instead of $zutil(96,39) you can use $$$MaxStringLength for the same effect, but greater readability.
go to post Eduard Lebedyuk · Sep 28, 2018 I completely agree with you.Objects should be instantiated only when they are relevant.Calling object methods where it's possible to call class methods makes code harder to read.